linux系统怎么封装
学习啦在线学习网linux系统怎么封装
window xp通过相关的工具软件,进行封装后,可以GHOST到其他计算机上,那LINUX系统可否也实现。如何操作?下面大家与学习啦小编一起来学习一下吧。
linux系统怎么封装
学习啦在线学习网 第一步生成ks.cfg文件
学习啦在线学习网 我这里使用的远程连接工具是Xmanager Enterprise 4,可以支持在当前系统上打开远程主机的图形软件界面。
学习啦在线学习网 1、首先确认kickstart是否安装,没有安装的话使用yum进行安装
1 2 3 4 5 6 7 8 9 10 11 12 | #检查 kickstart是否安装 [root@lovelace ~] # rpm -qa | grep kickstart system-config-kickstart-2.6.19.9-2.el5 pykickstart-0.43.9-1.el5 #使用yum安装 kickstart [root@lovelace ~] # yum install system-config-kickstart -y Loaded plugins: katello, security Repository rhel-debuginfo is listed more than once in the configuration Unable to read consumer identity Setting up Install Process Package system-config-kickstart-2.6.19.9-2.el5.noarch already installed and latest version Nothing to do |
2、启动Xmanager - Passive服务,然后在终端上输入命令system-config-kickstart &
学习啦在线学习网 如果执行上面的命令弹出错误,请在终端输入以下两条命令
3、再次进行测试,如果还不成功,请查看服务是否开启,上面两条命令执行是否成功
学习啦在线学习网 注:这里为了方便大家进行配置,直接在现有系统的基础上进行编辑。
学习啦在线学习网 4、在弹出的图形界面点击文件---->打开文件---->root目录下---->anaconda-ks.cfg文件---->确定。
5、开始我们的ks.cfg文件编辑过程(选择语言,键盘类型,时区,设置根口令,安装后是否重启引导系统,在文本模式下进行安装)
6、安装方法的选择(这里我们是对磁盘进行全新封装的,选择执行新安装,安装方法为光盘驱动器)
7、引导装载程序选项,(给内核传递参数rhgb quiet ,其他默认即可)
学习啦在线学习网 8、分区信息设置,这里我们新建三个分区(/分区:5G, /boot:200M, swap分区:1G)
9、网络配置(这里选择添加eth0网卡,IP为dhcp自动分配)
10、验证方式默认即可
11、防火墙配置(这里选择禁用)
学习啦在线学习网 12、显示配置(这里我们选择安装X界面,色彩深度调整为16,RHEL上默认安装的是gnome)
学习啦在线学习网 13、软件包安装选择(按需自定义选择)
14、预安装脚本(按需进行设置)
15、安装后脚本(按需进行设置)
14、保存配置好的文件(可自定义存放路径,这里我们存放到/home目录下)
查看生成的ks.cfg配置文件
1 2 3 4 | #验证ks.cfg文件是否存在 [root@lovelace home] # pwd;ll ks.cfg /home -rw-r--r-- 1 root root 1649 05-27 04:20 ks.cfg |
查看ks.cfg文件 具体参数请查看kickstart文档
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | [root@lovelace home] # cat ks.cfg #platform=x86, AMD64, 或 Intel EM64T # System authorization information auth --useshadow --enablemd5 # System bootloader configuration bootloader --append= "rhgb quiet" --location=mbr --driveorder=sda # Partition clearing information clearpart --none # Use text mode install text # Firewall configuration firewall --disabled # Run the Setup Agent on first boot firstboot --disable key --skip # System keyboard keyboard us # System language lang en_US # Installation logging level logging --level=info # Use CDROM installation media cdrom # Network information network --bootproto=dhcp --device=eth0 --onboot=on # Reboot after installation reboot #Root password rootpw --iscrypted $1$ /3RmiuX/ $ZqpoSJEqBLYu93wL6a60R1 # SELinux configuration selinux --enforcing # System timezone timezone --isUtc Asia /Shanghai # Install OS instead of upgrade install # X Window System configuration information xconfig --defaultdesktop=GNOME --depth=8 --resolution=640x480 # Disk partitioning information part / --bytes-per-inode=4096 --fstype= "ext3" --size=6000 part /boot --bytes-per-inode=4096 --fstype= "ext3" --size=200 part swap --bytes-per-inode=4096 --fstype= "swap" --size=1024 %packages @base @development-libs @core @development-tools @sound-and-video @x-software-development @gnome-desktop @base-x @printing @gnome-software-development @admin-tools @legacy-software-support @editors @text-internet @dialup @graphics @office @java @graphical-internet @games kexec-tools iscsi-initiator-utils fipscheck device-mapper-multipath sgpio python-dmidecode imake emacs libsane-hpaio mesa-libGLU-devel xorg-x11-utils xorg-x11-server-Xnest xorg-x11-server-Xvfb |
第二步:修改isolinux.cfg配置文件(有多种方向进行选择,这里不再演示)
学习啦在线学习网 修改后内容为(Note:网上好多关于这个配置文件各不相同,只要能够实验成功就行)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [root@lovelace home] # cat isolinux.cfg default ks prompt 1 timeout 60 display boot.msg F1 boot.msg F2 options.msg F3 general.msg F4 param.msg F5 rescue.msg label linux kernel vmlinuz append initrd=initrd.img label text kernel vmlinuz append initrd=initrd.img text label ks kernel vmlinuz append ks=cdrom: /ks .cfg initrd=initrd.img label local localboot 1 label memtest86 kernel memtest append - |
学习啦在线学习网 第三步:重新封装iso镜像文件(win下操作)
1、打开原版iso镜像文件(删除自动的isolinux.cfg文件,然后把我们重新编辑过的文件添加进去)
2、添加我们制作的ks.cfg文件到光盘根目录下,然后进行iso文件生成即可
第四步:测试安装(这里截两张图验证下)
学习啦在线学习网 后记:其实做这个也没有多大意义,因为生产环境中都是批量部署的,这里希望大家能够了解下关于ks.cfg文件的编辑方法,如果你很熟悉的话,也可以脱离图形编辑,直接命令行进行设置。
学习啦在线学习网 看过“ linux系统怎么封装 ”的人还看了: