您好,登錄后才能下訂單哦!
這篇文章主要講解了“配置Kickstart腳本以便更好的安裝系統的方法”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“配置Kickstart腳本以便更好的安裝系統的方法”吧!
配置kickstart腳本的方法
###############################################################
#
# Sample Kickstart Configuration File
#
###############################################################
###############################################################
#
# point to a local installation server, or use “cdrom”
#
###############################################################
url --url http://rha-server/pub/rhel5/
#cdrom
rootpw RedHat
bootloader --location=mbr --password=redhat
###############################################################
#
# partitioning
#
###############################################################
zerombr yes
clearpart --all --initlabel
part /boot --fstype ext3 --size 128
part / --fstype ext3 --size 1 --grow
part swap --recommended
###############################################################
#
# network configuration
# - the following is for the “recommended solution” outlined
# in the Red Hat Academy Instructor‘s Guide
#
###############################################################
network --bootproto=dhcp --device=eth0
firewall --disabled
#network --bootproto=static --ip=192.168.0.254 --netmask=255.255.255.0
--device=eth0
#firewall --medium --http --port=https:tcp
###############################################################
#
# environment
#
###############################################################
lang zh_CN.UTF-8
timezone Asia/Shanghai
###############################################################
#
# hardware
#
###############################################################
keyboard us
xconfig --startxonboot
###############################################################
# misc
###############################################################
key --skip # skip install number
authconfig --enableshadow --enablemd5
reboot # reboot automatically when done
install # instead of “upgrade”
###############################################################
#
# Software
#
###############################################################
%packages --resolvedeps
@admin-tools
@editors
@text-internet
@gnome-desktop
@core
@base
@base-x
@chinese-support
@sound-and-video
@graphical-internet
emacs
kexec-tools
device-mapper-multipath
xorg-x11-utils
xorg-x11-server-Xnest
-sysreport
%post
###############################################################
#
# Post Script - the following script runs on the newly
# installed machine, immediately after installation
#
###############################################################
echo “nameserver 192.168.0.254” 》》 /etc/resolv.conf
rpm -ivh ftp://rha-server/rha/autoupdate/rha-base*.rpm
#rpm -Fvh ftp://Kickstart.example.com/pub/9/i386/updates/*.rpm
#curl http://rha-server/rha/xorg.conf 》 /etc/X11/xorg.conf
#curl http://rha-server/rha/station.cfg | tar xvzf -
for i in elvis blondie prince madonna; do
useradd $i
echo redhat | passwd --stdin $i
done
Kickstart 腳本設計
Kickstart 腳本通常有三個不同的部分。
: 命令部分
: 軟件包部分
: 安裝后腳本部分
Anaconda 會忽略Kickstart 腳本中所有以“#”開始的行和空行。
命令部分
從文件的最開始直到出現以%packages 開始的行,這一部分都屬于命令部分。命令行必須以可識別的關鍵字開始,并且所有與該關鍵字有關的參數都必須出現在同一行中。命令部分是用來指定安裝程序需要的除軟件選項外的所有標準信息。關鍵字在命令部分可以以任意次序出現。
軟件包部分(%packages)
軟件包部分是用來指定需要安裝的軟件。這部分從以%packages 開頭的行開始,直到下
一個以“%”字符開始的行為止。這一部分通常采用以下兩種格式之一。
: @Component Name
: package-name
第一種格式是用軟件組來指定軟件,在這里一定要注意正確拼寫軟件組名稱,并注意大小寫。
第二種格式是用來指定要安裝的軟件包的具體名稱。如果%packages 行包含額外的--resolvedeps 參數,那么也會安裝解決相依性的軟件包。
安裝后腳本部分(%post)
后處理部分是在沒有 Anaconda 安裝程序參與下,執行所有新安裝系統的機器的自定義過程。執行這部分內容與在新安裝系統的機器的環境下運行 Bash Shell 腳本的效果是一樣的。如果是網絡安裝,那么執行前面提到作為實例的腳本也可以激活網絡配置。
感謝各位的閱讀,以上就是“配置Kickstart腳本以便更好的安裝系統的方法”的內容了,經過本文的學習后,相信大家對配置Kickstart腳本以便更好的安裝系統的方法這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。