制作ubuntu16.04 自动安装iso镜像

官网下载Ubuntu镜像安装,交互模式需要手动配置很多东西,为了快速安装,特制作自动安装镜像,方便安装系统。

制作方法:

下载官网镜像iso文件:ubuntu-16.04.4-server-amd64.iso (http://mirrors.zju.edu.cn/ubuntu-releases/16.04/ubuntu-16.04.4-server-amd64.iso)

  1. cd /root/
  2. wget http://mirrors.zju.edu.cn/ubuntu-releases/16.04/ubuntu-16.04.4-server-amd64.iso
  3. mkdir mnt
  4. mount ubuntu-16.04.4-server-amd64.iso mnt/
  5. cp -rf ./mnt/* ./mnt/.disk/ ./ubuntu/ #将挂载的镜像目录copy到ubuntu目录中

将镜像文件拷贝出来后,根据以下链接修改相关配置文件:

http://www.linuxdiyf.com/linux/16044.html

1.用以下内容替换isolinux.cfg文件内容(相关说明见上面链接)

cp  ubuntu/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.用以下内容替换ubuntu-server.seed文件内容(相关说明见上面链接)

cp  ubuntu/preseed/ubuntu-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
     
    ## set root password

d-i passwd/root-login boolean root
d-i passwd/root-password password root
d-i passwd/root-password-again password root
d-i user-setup/allow-password-weak 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

## Disk usage

d-i partman-auto/disk string /dev/sda
#d-i partman-auto/method string lvm
#d-i partman-auto-lvm/guided_size string max
d-i partman-auto/method string regular
d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-lvm/confirm boolean true
d-i partman-lvm/confirm_nooverwrite boolean true
d-i partman-auto/choose_recipe select atomic
d-i partman-partitioning/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
#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

---------------------------------------------------------------------------------------------

修改完毕后,将ubuntu目录重新打包成iso镜像

mkisofs 命令使用参考这里(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镜像为:auto-ubuntu-16.04.4-server-amd64.iso

https://blog.csdn.net/Frank_Abagnale/article/details/78963876

https://blog.csdn.net/jinyuxiaoqiang/article/details/80827497

完毕。

补充,实践发现,在vmware 的Esxi 上安装ubuntu16.04 使用该镜像可以正常安装启动。

但是在dell服务器上安装   开机后,正常到选择启动项后,找到硬盘后直接黑屏,不显示启动时的那些信息。好像系统没有正确安装一样。

解决方法是 :  Ctrl +Alt +F1   进如tty1   。进如系统后   把/etc/default/grub 里面的GRUB_CMDLINE_LINUX_DEFAULT="quiet" 里面的quiet删掉即可。

原文地址:https://www.cnblogs.com/wuchangsoft/p/9610869.html

时间: 2024-10-12 08:03:52

制作ubuntu16.04 自动安装iso镜像的相关文章

Centos 6.5 mkisofs kickstart 制作自动安装iso镜像 光盘

使用kickstart制作一个自动化安装的ISO盘 1. 挂载CentOS光盘,然后复制光盘内容到一个指定文件夹 mount /dev/sr1 /media/cdrom/ -t iso9660 #注意我用的是虚拟机, 注意使用你的光驱设备 mkdir -p /root/auto_install cp -arf /media/cdrom /root/auto_install/ # 在cp的时候一定要注意, 本人在这块耽误了1个下午时间,  # 因为我一开使用 cp -r /cdrom/* 来复制的

VMware下Ubuntu16.04的安装、可能出现的问题的解决办法及基本配置

安装VMware 1.下载VMware Workstation Pro 12.1.0 for Windows,安装. 2.VMware永久证书秘钥:5A02H-AU243-TZJ49-GTC7K-3C61N 添加新磁盘分区 1.磁盘管理 -> 选择剩余空间较大的磁盘(D) -> 压缩卷(40960M ≈ 39.9G,最好大于20G) 2.新建简单卷 -> 更改盘符(E, up2u)和名称(Ubuntu,up2u) 创建虚拟机 1.创建虚拟机 -> 自定义(高级) 2.稍后安装操作系

ubuntu16.04 ,安装最新版本docker

环境:ubuntu16.04 ,安装最新版本docker 1.  添加GPG key: sudo apt-key adv--keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys58118E89F3A912897C070ADBF76221572C52609D 2. 添加源 新建文件:/etc/apt/sources.list.d/docker.list, 在里面添加内容: debhttps://apt.dockerproject.or

Ubuntu16.04 Caffe 安装步骤记录(超详尽)

"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> Ubuntu16.04 Caffe 安装步骤记录(超详尽) - yhao的博客 - 博客频道 - CSDN.NET yhao的博客 最怕庸碌无为,还安慰自己平凡可贵 目录视图 摘要视图 订阅 [活动]2017 CSDN博客专栏评选 &nbsp [5月书讯]流畅的Pyt

Docker在Ubuntu16.04上安装和部署Apache Storm

Docker在Ubuntu16.04上安装和部署Apache Storm 1.添加Docker源 sudo apt-get update 2.增加CA证书 sudo apt-get install apt-transport-https ca-certificates 3.添加GPG Key(一种加密手段) sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897

在ubuntu16.04上安装有道词典

参考来源:http://www.cnblogs.com/scplee/archive/2016/05/13/5489024.html 在ubuntu16.04上安装有道词典主要是解决依赖问题,我们在配置文件中把依赖文件删除,就行了 第一步:下载有道词典的.deb包 第二步:创建youdao文件,然后把有道的源文件解压到这个包里 sudo dpkg -X sudo dpkg -X ./youdao-dict_1.1.0-0-ubuntu_amd64.deb youdao 第二步:解压deb包中的c

Windows Server 2012 R2 -(1)下载安装ISO镜像文件

(一)下载安装ISO镜像文件 Windows Server 2012 R2 VL with Update (x64) - DVD (Chinese-Simplified) 文件名:cn_windows_server_2012_r2_vl_with_update_x64_dvd_6052729.iso SHA1:5E88BF62773D4867CF904AF94F66EEA2062E35E4 文件大小:5.16GB 发布时间:2014-12-15 下载地址(复制到迅雷): ed2k://|file

ubuntu16.04 lts 安装freeswitch

ubuntu16.04 lts 安装freeswitch: 0.安装一堆依赖包. 1.使用root权限  su root , FSfile=$(curl -s https://files.freeswitch.org/releases/freeswitch/ | sed -n 's/.*"\(freeswitch\-[0-9]*\.[0-9]*\.[0-9]*\.tar\.gz\)".*/\1 /p' | tail -n 1) && echo Downloading $

ubuntu16.04 python3 安装selenium及环境配置

环境 ubuntu16.04 python3 安装selenium sudo pip3 install seleium 默认安装完是支持firefox,但是更新得太慢对于较新的firefox已经不支持了,需要安装geckodriver,地址 https://github.com/mozilla/geckodriver/releases/ 下载完后解压然后在终端中cd到下载文件路径下,下面以路径为下载为例 依次执行以下命令: 安装xvfb sudo apt-get install xvfb 安装p