Kickstart+tftp自动部署Ubuntu 14.04

简介:

Kickstart+tftp自动部署Ubuntu 14.04:

mkdir /root/iso

mount -t iso9660 -r -o ro,loop ubuntu-14.04.3-server-amd64.iso /root/iso/

mkdir /var/www/html/ks/ubt14043

rsync -av --proagress /root/iso/* /var/www/html/ks/ubt14043/

rm -rf /var/www/html/index.html

vi /var/www/html/ks/preseed/ubuntu-server.seed (在base-installer行的下一行添加,preseed目录下的几个文件都需要添加)

d-i live-installer/net-image string http://10.0.0.2/ks/ubt14043/install/filesystem.squashfs
:wq

rsync -av --progress /root/iso/install/netboot/* /var/lib/tftpboot/

vi /var/lib/tftpboot/ubuntu-installer/amd64/boot-screens/txt.cfg (label cli的上一行,改掉)

append ks=http://10.0.0.2/ks/ksubt14043.cfg vga=788 initrd=ubuntu-installer/amd64/initrd.gz live-installer/net-image=http://10.0.0.2/ks/ubt14043/install/filesystem.squashfs

:wq

到已有Ubuntu vnc图形界面(apt-get install system-config-kickstart)

system-config-kickstart

installation Method——HTTP——HTTP Server:10.0.0.2 HTTP Directory:/ks/ubt14043

Partition Information 设置/分区和swap分区 (均为P主分区)

Network Configuration——Add Network Device—— eth0 DHCP

File——Save File (默认为/root/ks.cfg)

cp -rv /root/ks.cfg /var/www/html/ks/ksubt14043.cfg

vi /var/www/html/ks/ksubt14043.cfg

timezone Asia/Shanghai (默认为美国时区)

part /boot/efi --fstype vfat --size 1000 --asprimary --ondisk sda(手动添加efi分区)

network --bootproto=dhcp --device=em1 (将eth0改为em1)

:wq

cat /var/www/html/ks/ksubt14043.cfg

#Generated by Kickstart Configurator
#platform=x86

#System language
lang en_US
#Language modules to install
langsupport en_US
#System keyboard
keyboard us
#System mouse
mouse
#System timezone
timezone Asia/Shanghai
#Root password
rootpw --disabled
#Initial user
user super --fullname "super" --iscrypted --password $1$.ljIjOMi$vFieciSvR.iGv3uyiVV9D1
#Reboot after installation
reboot
#Use text mode install
text
#Install OS instead of upgrade
install
#Use Web installation
url --url http://10.0.0.2/ks/ubt14043
#System bootloader configuration
bootloader --location=mbr 
#bootloader --driveorder=partition
#Clear the Master Boot Record
zerombr yes
#Partition clearing information
#clearpart --all --initlabel 
clearpart --drives=sda --all
ignoredisk --only-use=sda
#Disk partitioning information
part / --fstype ext4 --size=100000 --asprimary
part /boot/efi --fstype ext4 --size 1000 --asprimary
part biosboot --fstype=biosboot --size=1
part swap --size=10000 --grow
#System authorization infomation
auth --useshadow --enablemd5 
#Network information
network --bootproto=dhcp --device=em1
#Firewall configuration
firewall --disabled 
#Do not configure the X Window System
skipx
%post
mkdir /root/sh
wget -P /root/sh -c -r -np -nd -R index.html http://10.0.0.2/ks/ubt14043/sh/
chmod +x /root/sh/
.sh
sh /root/sh/tftp.sh
%end

本文转自linux博客51CTO博客,原文链接http://blog.51cto.com/yangzhiming/2047323如需转载请自行联系原作者


yangzhimingg

相关文章
|
Ubuntu
​ubuntu下nfs,ftp,tftp服务器搭建
​ubuntu下nfs,ftp,tftp服务器搭建
170 0
|
Linux 开发工具
嵌入式Linux开发环境搭建之八---Ubuntu16.04 tftp环境搭建
嵌入式Linux开发环境搭建之八---Ubuntu16.04 tftp环境搭建
178 0
|
Ubuntu 开发工具 虚拟化
开发板ping通Ubuntu,并且执行tftp远程烧录镜像到开发板
开发板ping通Ubuntu,并且执行tftp远程烧录镜像到开发板
191 0
|
Ubuntu
Ubuntu 20.04 TFTP服务器搭建
Ubuntu 20.04 TFTP服务器搭建
794 0
|
Ubuntu Linux 开发工具
ubuntu简单搭建nfs tftp服务器
ubuntu简单搭建nfs tftp服务器
ubuntu简单搭建nfs tftp服务器
|
Ubuntu 测试技术
【嵌入式开发技术之环境配置】Ubuntu下 TFTP服务的配置
作者:gnuhpc  出处:http://www.cnblogs.com/gnuhpc/   本文参考自http://daili.s314.xrea.com/11/browse.php?u=Oi8vd3d3LmRhdmlkc3VkamltYW4uaW5mby8yMDA2LzAzLzI3L2luc3RhbGxpbmctYW5kLXNldHRpbmctdGZ0cGQtaW4tdWJ1bnR1Lw%3D%3D&b=5 在Ubuntu8.04下测试通过。
805 0
|
19天前
|
JSON Ubuntu 开发者
ubuntu 22安装lua环境&&编译lua cjson模块
通过上述步骤,可以在 Ubuntu 22.04 系统上成功安装 Lua 环境,并使用 LuaRocks 或手动编译的方式安装 lua-cjson 模块。本文详细介绍了每一步的命令和操作,确保每一步都能顺利完成,适合需要在 Ubuntu 系统上配置 Lua 开发环境的开发者参考和使用。
84 13
|
15天前
|
监控 关系型数据库 MySQL
Ubuntu24.04安装Librenms
此指南介绍了在Linux系统上安装和配置LibreNMS网络监控系统的步骤。主要内容包括:安装所需软件包、创建用户、克隆LibreNMS仓库、设置文件权限、安装PHP依赖、配置时区、设置MariaDB数据库、调整PHP-FPM与Nginx配置、配置SNMP及防火墙、启用命令补全、设置Cron任务和日志配置,最后通过网页完成安装。整个过程确保LibreNMS能稳定运行并提供有效的网络监控功能。