作成uuntu 16.04(12.04)自動インストールiso鏡像(マニュアルパーティションのみ、他の自動)


背景:
Ubuntuミラーのインストールをダウンロードして、インタラクティブモードはマニュアルで多くのものを配置する必要があります.
以下の方法は、すでに作成された12.04を参照して、ミラー修正16.04の鏡像を自動的にインストールし、最終的に成功しました.
作り方:
下载官方网站镜像isoファイル:uuntu-16.044-server-amd 64.isohttp://mirrors.zju.edu.cn/ubuntu-releases/16.04/ubuntu-16.04.4-server-amd64.iso)
cd /root/
wget http://mirrors.zju.edu.cn/ubuntu-releases/16.04/ubuntu-16.04.4-server-amd64.iso
mkdir mnt
mount ubuntu-16.04.4-server-amd64.iso  mnt/
cp -rf ./mnt/* ./mnt/.disk/ ./ubuntu/  #        copy ubuntu   
イメージファイルをコピーした後、以下のリンクに従って関連配置ファイルを修正します.
http://www.linuxdiyf.com/linux/16044.html
1.以下の内容でisolinux.cfgファイルの内容を置換する(関連説明は上のリンクを参照)
cp  uuntu/isolinux/isolinux.cfg{.bak}
default autoinstall
prompt 0
timeout 100

menu title Custom Live CD
menu background splash.png
menu color title 1;37;44 #c0ffffff #00000000 std

label autoinstall
menu label autoinstall - auto install ubuntu
kernel /install/vmlinuz
append initrd=/install/initrd.gz file=/cdrom/preseed/ubuntu-server.seed boot=install debian-installer/locale=en_US console-setup/ask_detect=false keyboard-configuration/layoutcode=us automatic-ubiquity quiet splash --
 
2.以下の内容でuuntu-server.seedファイルの内容を置換する(関連説明は上のリンクを参照)
 
cp  uuntu/preseed/uuntu-server.seed{.bak}
#locate
d-i debian-installer/locale string en_US
d-i console-tools/archs select true
d-i debian-installer/language string en
d-i debian-installer/country string us
d-i localechooser/supported-locales multiselect en_US.UTF-8, zh_CN.UTF-8

#keyboard
d-i console-setup/ask_detect boolean false
d-i console-configuration/layoutcode string us
d-i keyboard-configuration/modelcode string SKIP

#clock
d-i clock-setup/utc boolean false
d-i time/zone string Asia/Shanghai

#network
d-i netcfg/choose_interface select auto
d-i netcfg/dhcp_failed note
d-i netcfg/dhcp_options select Do not configure the network at this time
d-i netcfg/get_hostname string cc
d-i netcfg/get_domain string cc-domain
d-i netcfg/wireless_wep string

# Mirror

d-i pkgsel/language-pack-patterns	string
d-i pkgsel/install-language-support	boolean false
d-i apt-setup/partner boolean true
d-i debian-installer/splash	boolean false
d-i oem-config-udeb/frontend	string debconf
d-i mirror/http/proxy string

# clock
d-i clock-setup/ntp boolean true

#user
d-i passwd/root-login boolean false
#d-i passwd/root-password password 123
#d-i passwd/root-password-again password 123
d-i passwd/make-user boolean true
d-i passwd/user-fullname string leo    ##   
d-i passwd/username string leo   ##   
d-i passwd/user-password password 123    ##  
d-i passwd/user-password-again password 123
d-i user-setup/allow-password-weak boolean true
d-i user-setup/encrypt-home boolean false

#basic system
#d-i base-installer/kernel/linux/initramfs-generators string yaird

#package
tasksel tasksel/first multiselect ubuntu-desktop
d-i pkgsel/include string openssh-server	build-essential vim landscape-common
d-i pkgsel/update-policy select none

#grub
d-i grub-installer/only_debian boolean true
d-i grub-installer/with_other_os boolean true

# Finish
d-i finish-install/reboot_in_progress note
oem-config	oem-config/steps	multiselect language, timezone, keyboard, user, network, tasksroot
修正後、uuntuディレクトリをisoミラーに再包装します.
mkioffコマンドはここを参照してください.http://man.linuxde.net/mkisofs)
mkisofs -R -J -T -v -no-emul-boot -boot-load-size 4 -boot-info-table -b isolinux/isolinux.bin -c isolinux/boot.cat -o auto-ubuntu-16.04.4-server-amd64.iso  ubuntu/
自動的にインストールできるisoミラーは、aut-uuntu-16.04-server-amd 64.isoです.
 
終了します
 
なお、実際には、vmwareのEsxiにuuntu 16.04を設置し、このミラーを使用して正常にインストールして起動することができることがわかった.
しかし、Dellサーバにインストールします.   起動後、正常に起動項目を選択した後、ハードディスクを見つけたら、直接に暗い画面になり、起動時の情報が表示されません.システムが正しくインストールされていないようです.
解決方法は:  Ctrl+Alt+F 1   キティちゃんのように進む   .システムの後に進む   etc/default/grubの中のGRUB_をCMDLINE_LINUX_DEFAULT=「quiet」の中のquietを削除すればいいです.