以下は、変更されたブートイメージを作成します。それをCDに書き込むか、ISOをVMに挿入してテストします。cpio
and が必要になりますgenisoimage
(これはパッケージと実行可能ファイルの名前です)。
以下はMakefileの形式ですが、対話形式で入力できます。${IN_ISO}
元のISOイメージ(-alternative
バージョンを使用しました。同じようにすることをお勧めします)${OUT_ISO}
を目的のISO名で参照します。
# Extract the ISO image to mount/ and copy it to cdroot/
cdroot:
mkdir -p mount
sudo mount -o loop ${IN_ISO} mount
mkdir cdroot
cd cdroot && tar cf - ../mount --transform 's,^mount/,,' | tar xf -
sudo umount mount && rm -r mount
chmod -R a+rw cdroot
# Copy new files to the disk. Content of those files is posted below
prepare: cdroot
cp isolinux.cfg cdroot/isolinux/isolinux.cfg
test -e ./initrd.orig.gz || cp cdroot/install/initrd.gz ./initrd.orig.gz
mkdir -p initrd
cd initrd && gunzip <../initrd.orig.gz | sudo cpio -i && cd ..
cp preseed.cfg initrd/preseed.cfg
cd initrd && find . | cpio -o --format=newc | gzip -9 > ../cdroot/install/initrd.gz && cd ..
sudo rm -rf initrd
# Create the ISO image. Make sure to use extensions for lower-case filenames
iso: cdroot prepare
genisoimage -o ${OUT_ISO} \
-force-rr -J \
-b isolinux/isolinux.bin -c isolinux/boot.cat \
-no-emul-boot -boot-load-size 4 -boot-info-table \
cdroot
追加のファイルが必要です。
isolinux.cfg
ブートローダーを設定します。起動して、自動的にインストールプロセスを実行する必要があります。次のようになります。
default install
label install
menu label ^Install my custom Ubuntu
kernel /install/vmlinuz
append auto initrd=/install/initrd.gz --
# Leave 2 seconds to abort or debug
prompt 1
timeout 20
インストールを実際に構成する前に必要な準備はこれだけです。preseedの例をダウンロードして、 preseed.cfgという名前を付けます。それに目を通し、好きなように編集してください。重要なオプションは次のとおりです。
# Locale
d-i debian-installer/locale string en_US
d-i time/zone string US/Eastern
# Partitioning. The following settings WILL OVERWRITE ANYTHING
# Don't insert the CD into your boss' computer ...
d-i partman-auto/method string regular
d-i partman/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
# To create a normal user account.
d-i passwd/user-fullname string Ubuntu User
d-i passwd/username string ubuntu
d-i passwd/user-password password insecure
d-i passwd/user-password-again password insecure
d-i user-setup/allow-password-weak boolean true
# Package selection. Don't include ubuntu-desktop to significantly reduce the content
tasksel tasksel/first multiselect standard
#d-i preseed/early_command string driver installation commands (stuff needed to boot)
#d-i preseed/late_command string driver installation commands, custom software, etc.
しかし、上記を例として使用するのではなく、Ubuntuの例をダウンロードしてでニーズに合わせて構成することをおlate_command
勧めします。カスタムソフトウェアをインストールして構成するスクリプトをダウンロードして実行するなど、シェルから何でも実行できます。たとえば、これをlate_command
次のように使用します。
d-i preseed/late_command string in-target sh -c 'wget https://example.com/my/install.sh && sh install.sh'
または、install.sh
上記のinitrdに配置して直接実行することもできます。その内容は次のようになります。
#!/bin/sh
aptitude install -y x11-apps any-package-you-want-installed
wget http://proprietary.com/drivers/for/ubuntu.tar.gz -O- | tar xf - && sh drivers/instal.sh
独自のドライバーインストールルーチンがどのように機能するかによります。