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 kickstartsystem-config-kickstart-2.6.19.9-2.el5pykickstart-0.43.9-1.el5#使用yum安裝 kickstart[root@lovelace ~]# yum install system-config-kickstart -yLoaded plugins: katello, securityRepository rhel-debuginfo is listed more than once in the configurationUnable to read consumer identitySetting up Install ProcessPackage system-config-kickstart-2.6.19.9-2.el5.noarch already installed and latest versionNothing 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 informationauth --useshadow --enablemd5# System bootloader configurationbootloader --append="rhgb quiet" --location=mbr --driveorder=sda# Partition clearing informationclearpart --none# Use text mode installtext# Firewall configurationfirewall --disabled# Run the Setup Agent on first bootfirstboot --disablekey --skip# System keyboardkeyboard us# System languagelang en_US# Installation logging levellogging --level=info# Use CDROM installation mediacdrom# Network informationnetwork --bootproto=dhcp --device=eth0 --onboot=on# Reboot after installationreboot#Root passwordrootpw --iscrypted $1$/3RmiuX/$ZqpoSJEqBLYu93wL6a60R1# SELinux configurationselinux --enforcing# System timezonetimezone --isUtc Asia/Shanghai# Install OS instead of upgradeinstall# X Window System configuration informationxconfig --defaultdesktop=GNOME --depth=8 --resolution=640x480# Disk partitioning informationpart / --bytes-per-inode=4096 --fstype="ext3" --size=6000part /boot --bytes-per-inode=4096 --fstype="ext3" --size=200part 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@gameskexec-toolsiscsi-initiator-utilsfipscheckdevice-mapper-multipathsgpiopython-dmidecodeimakeemacslibsane-hpaiomesa-libGLU-develxorg-x11-utilsxorg-x11-server-Xnestxorg-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.cfgdefault ksprompt 1timeout 60display boot.msgF1 boot.msgF2 options.msgF3 general.msgF4 param.msgF5 rescue.msglabel linuxkernel vmlinuzappend initrd=initrd.imglabel textkernel vmlinuzappend initrd=initrd.img textlabel kskernel vmlinuzappend ks=cdrom:/ks.cfg initrd=initrd.imglabel locallocalboot 1label memtest86kernel memtestappend - |
第三步:重新封裝iso鏡像文件(win下操作)
1、打開原版iso鏡像文件(刪除自動的isolinux.cfg文件,然后把我們重新編輯過的文件添加進去)

2、添加我們制作的ks.cfg文件到光盤根目錄下,然后進行iso文件生成即可

第四步:測試安裝(這里截兩張圖驗證下)


后記:其實做這個也沒有多大意義,因為生產環境中都是批量部署的,這里希望大家能夠了解下關于ks.cfg文件的編輯方法,如果你很熟悉的話,也可以脫離圖形編輯,直接命令行進行設置。
看過“ linux系統怎么封裝 ”的人還看了:
