다음은 수정 된 부팅 이미지를 만듭니다. CD에 굽거나 ISO를 VM에 삽입하여 테스트하십시오. 당신은해야 cpio
하고 genisoimage
(패키지와 실행 파일의 이름을의 그).
다음은 Makefile 형식이지만 대화식으로 입력 할 수 있습니다. 원하는 ISO 이름 ${IN_ISO}
에 대한 원본 ISO 이미지 ( -alternative
버전을 사용 했으며 같은 작업을 제안합니다) ${OUT_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.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.
그러나 위의 예제를 사용하지 말고 우분투의 예제를 다운로드하여 필요에 맞게 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
독점 드라이버 설치 루틴의 작동 방식에 따라 다릅니다.