Changes between Version 17 and Version 18 of jazz/preseed_ubuntu


Ignore:
Timestamp:
Oct 27, 2011, 3:25:50 PM (13 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/preseed_ubuntu

    v17 v18  
    8484└── sbm.bin                          ### Smart Boot Manager image (sbm.bin: DOS floppy 1440k, x86 hard disk boot sector)
    8585}}}
    86  * Ubuntu 的圖形選單是透過 [http://en.opensuse.org/Gfxboot SuSE 的 Gfxboot] 來達成。
    87  * 底下是 isolinux 目錄裡面的檔案關聯圖:
     86 * <備註二> Ubuntu 的圖形選單是透過 [http://en.opensuse.org/Gfxboot SuSE 的 Gfxboot] 來達成。
     87 * <備註三> 底下是 isolinux 目錄裡面的檔案關聯圖:
    8888
    8989{{{
     
    130130  "isolinux.cfg" -> "gfxboot.c32";
    131131}
     132}}}
     133 * <備註四> ubuntu 光碟的 preseed 其實蠻單純的
     134{{{
     135~$ cat /opt/cd-image/preseed/ubuntu.seed
     136# Enable extras.ubuntu.com.
     137d-i     apt-setup/extras        boolean true
     138# Install the Ubuntu desktop.
     139tasksel tasksel/first   multiselect ubuntu-desktop
     140d-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.
     145ubiquity        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.
     148tasksel tasksel/first   multiselect
     149d-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
     150d-i     pkgsel/language-pack-patterns   string
     151# No language support packages.
     152d-i     pkgsel/install-language-support boolean false
    132153}}}
    133154