| 132 | }}} |
| 133 | * <備註四> ubuntu 光碟的 preseed 其實蠻單純的 |
| 134 | {{{ |
| 135 | ~$ cat /opt/cd-image/preseed/ubuntu.seed |
| 136 | # Enable extras.ubuntu.com. |
| 137 | d-i apt-setup/extras boolean true |
| 138 | # Install the Ubuntu desktop. |
| 139 | tasksel tasksel/first multiselect ubuntu-desktop |
| 140 | d-i preseed/early_command string . /usr/share/debconf/confmodule; db_get debconf/priority; case $RET in low|medium) db_fset tasksel/first seen false ;; esac |
| 141 | # On live DVDs, don't spend huge amounts of time removing substantial |
| 142 | # application packages pulled in by language packs. Given that we clearly |
| 143 | # have the space to include them on the DVD, they're useful and we might as |
| 144 | # well keep them installed. |
| 145 | ubiquity ubiquity/keep-installed string icedtea6-plugin openoffice.org |
| 146 | ~$ cat /opt/cd-image/preseed/cli.seed |
| 147 | # Only install the standard system and language packs. |
| 148 | tasksel tasksel/first multiselect |
| 149 | d-i preseed/early_command string . /usr/share/debconf/confmodule; db_get debconf/priority; case $RET in low|medium) db_fset tasksel/first seen false ;; esac |
| 150 | d-i pkgsel/language-pack-patterns string |
| 151 | # No language support packages. |
| 152 | d-i pkgsel/install-language-support boolean false |