主頁(yè) > 知識(shí)庫(kù) > Kickstart無(wú)人職守安裝RHEL5過(guò)程分享(詳細(xì)圖解版)

Kickstart無(wú)人職守安裝RHEL5過(guò)程分享(詳細(xì)圖解版)

熱門(mén)標(biāo)簽:哪個(gè)地圖標(biāo)注更清晰 曲阜地圖標(biāo)注app 4s店如何在百度地圖標(biāo)注 天津人工電銷(xiāo)機(jī)器人費(fèi)用 開(kāi)封400電話辦理價(jià)格 地圖標(biāo)注小區(qū)項(xiàng)目入駐 內(nèi)蒙古電信外呼系統(tǒng) 凱立德劇院地圖標(biāo)注 漳州外呼系統(tǒng)怎么樣
之前,發(fā)的一個(gè)文字版本,現(xiàn)在整理一個(gè)圖解詳細(xì)版,讓每個(gè)人都可以實(shí)現(xiàn)Rhel5的無(wú)人值守安裝。
視頻也配置好了!只是沒(méi)地方發(fā),發(fā)個(gè)PDF的給大家,大家照著做就沒(méi)問(wèn)題了!

測(cè)試環(huán)境:Redhat 5.3 關(guān)閉iptables 和Selinux
所需服務(wù):Dhcp Vsftp Tftp Xinted

一、搭建好Yum源:

詳細(xì)方法見(jiàn):https://www.jb51.net/os/RedHat/80116.html (使用第二種方法,光盤(pán)映像搭建YUM)

二、安裝Vsftp服務(wù):
----------------------------------------------
[root@rhce ~]# yum install vsftpd* -y
[root@rhce ~]# chkconfig vsftpd on
[root@rhce ~]# service vsftpd restart
關(guān)閉 vsftpd:            [失敗]
為 vsftpd 啟動(dòng) vsftpd:  [確定]
-----------------------------------------------
三、復(fù)制PXE啟動(dòng)時(shí)需要的文件資料:

1、復(fù)制必要的文件:
----------------------------------------------
[root@rhce ~]# cp /usr/lib/syslinux/pxelinux.0 /tftpboot/
[root@rhce ~]# mkdir /tftpboot/pxelinux.cfg
[root@rhce ~]# cp /cdrom/isolinux/isolinux.cfg /tftpboot/pxelinux.cfg/default
[root@rhce ~]# cp /cdrom/images/pxeboot/initrd.img /tftpboot/
[root@rhce ~]# cp /cdrom/images/pxeboot/vmlinuz /tftpboot/
----------------------------------------------
2、修改/tftpboot/pxelinux.cfg/default文件
----------------------------------------------
[root@rhce ~]# chmod u+w /tftpboot/pxelinux.cfg/default //文件默認(rèn)只讀
[root@rhce ~]# vim /tftpboot/pxelinux.cfg/default
default linux
prompt 1
timeout 6 //超時(shí)時(shí)間,默認(rèn)600,可以不改。
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 ks=ftp://192.168.1.8/ks.cfg //ks.cfg是kickstart安裝配置文件,系統(tǒng)就是按照ks.cfg來(lái)安裝的。我們將在后面配置他
......下面省略
------------------------------------------------

四、安裝配置DHCP服務(wù):

1、安裝DHCP服務(wù):
------------------------------------------------
[root@rhce ~]# yum list dhcp*
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Installed Packages
dhcpv6-client.i386 1.0.10-16.el5  installed
Available Packages
dhcp.i386 12:3.0.5-18.el5         cdrom
dhcp-devel.i386 12:3.0.5-18.el5   cdrom
dhcpv6.i386 1.0.10-16.el5         cdrom
[root@rhce ~]# yum install dhcp.i386 dhcp-devel.i386 -y
--------------------------------------------------
2、生成主配置文件dhcpd.conf:
--------------------------------------------------
[root@rhce ~]# rpm -ql dhcp | more
......前面省略
/usr/share/doc/dhcp-3.0.5/api+protocol
/usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample
......后面省略
[root@rhce ~]# cp /usr/share/doc/dhcp-3.0.5/dhcpd.conf.sample /etc/dhcpd.conf
cp:是否覆蓋“/etc/dhcpd.conf”? y
--------------------------------------------------
3、修改主配置文件dhcpd.conf
--------------------------------------------------
[root@rhce ~]# vim /etc/dhcpd.conf
ddns-update-style interim;
ignore client-updates;
subnet 192.168.1.0 netmask 255.255.255.0 { //所屬網(wǎng)段及掩碼。
# --- default gateway
option routers 192.168.1.8; //路由器IP,可以寫(xiě)網(wǎng)關(guān)IP
option subnet-mask 255.255.255.0;
filename "pxelinux.0"; //PXE得到IP以后的引導(dǎo)文件
next-server 192.168.1.8; //服務(wù)器IP地址。
# option nis-domain "domain.org";    //注銷(xiāo)
# option domain-name "domain.org";   //注銷(xiāo)
option domain-name-servers 192.168.1.8; //DNS服務(wù)器IP
option time-offset -18000; # Eastern Standard Time
# option netbios-node-type 2;
range dynamic-bootp 192.168.1.100 192.168.1.200; //IP地址池范圍。
default-lease-time 21600;
......后面省略 //寫(xiě)配置文件的時(shí)候注意每句后面的分號(hào)(;)不要丟了。
---------------------------------------------------
4、啟動(dòng)DHCP服務(wù):如果啟動(dòng)錯(cuò)誤檢查/var/log/message
---------------------------------------------------
[root@rhce ~]# service dhcpd restart
啟動(dòng) dhcpd: [確定]
---------------------------------------------------
五、kickstart配置文件的生成:
1、安裝kickstart包:
---------------------------------------------------
[root@rhce ~]# yum list *kic*
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Available Packages
pykickstart.noarch 0.43.3-1.el5 cdrom
system-config-kickstart.noarch 2.6.19.8-2.el5 cdrom
[root@rhce ~]# yum install system-config-kickstart.noarch
---------------------------------------------------
2、生成ks.cfg安裝配置文件:
1)圖形化界面配置:(終端中運(yùn)行system-config-kickstart命令)

圖一:基本配置里要修改的項(xiàng)目

圖二:安裝方法里要修改的項(xiàng)目

圖三:分區(qū)信息,創(chuàng)建目標(biāo)工作站的分區(qū)表

圖四:網(wǎng)絡(luò)配置,點(diǎn)“添加網(wǎng)絡(luò)設(shè)備”——“確定”

圖五:?jiǎn)螕?ldquo;文件——保存文件”單擊“保存”
2)修改新生成的ks.cfg文件:我們沒(méi)有配置安裝的軟件包,因?yàn)橄到y(tǒng)沒(méi)有這部分服務(wù)。
----------------------------------------------------
[root@rhce ~]# cat /root/anaconda-ks.cfg //安裝系統(tǒng)時(shí)自動(dòng)記錄的安裝信息
......前面省略
%packages
@office
@editors
@text-internet
@gnome-desktop
@dialup
......后面省略 //%pachages 后的部分記錄系統(tǒng)安裝時(shí)的軟件包的安裝情況,復(fù)制下來(lái)全部復(fù)制到ks.cfg文件后面。
[root@rhce ~]# vim ks.cfg
......前面省略
# Partition clearing information
clearpart --none
key --skip //跳過(guò)輸入序列號(hào)環(huán)節(jié)
...... 中間省略
%packages //這里及以后的內(nèi)容是從/root/anaconda-ks.cfg 復(fù)制來(lái)的
@office
@editors
@text-internet
@gnome-desktop
@dialup
......下面省略
----------------------------------------------------
3、將配置文件復(fù)制到制定位置:
我們?cè)?tftpboot/pxelinux.cfg/default文件中曾設(shè)置ks=ftp://192.168.1.8/ks.cfg
將文件復(fù)制到該位置:
----------------------------------------------------
[root@rhce ~]# cp ks.cfg /var/ftp/ // /var/ftp 目錄是VSFTP服務(wù)的根目錄
----------------------------------------------------
六、復(fù)制Linux系統(tǒng)安裝文件:
在配置ks.cfg文件時(shí),我們?cè)O(shè)置的路徑為/pub,如圖:

------------------------------------------------------
[root@rhce ~]# umount /dev/hdc
[root@rhce ~]# mount /dev/hdc /var/ftp/pub/
mount: block device /dev/hdc is write-protected, mounting read-only
------------------------------------------------------
七、確定相關(guān)服務(wù)的狀態(tài):
------------------------------------------------------
[root@rhce ~]# service iptables stop
清除防火墻規(guī)則: [確定]
把 chains 設(shè)置為 ACCEPT 策略:filter [確定]
正在卸載 Iiptables 模塊: [確定]
[root@rhce ~]# setenforce 0 //關(guān)閉selinux
[root@rhce ~]# chkconfig tftp on //TFTP 服務(wù)開(kāi)啟命令
[root@rhce ~]# chkconfig dhcpd on
[root@rhce ~]# chkconfig vsftpd on
[root@rhce ~]# service xinetd restart //TFTP服務(wù)屬于他的子服務(wù)
停止 xinetd: [確定]
啟動(dòng) xinetd: [確定]
[root@rhce ~]# service dhcpd restart
關(guān)閉 dhcpd: [確定]
啟動(dòng) dhcpd: [確定]
[root@rhce ~]# service vsftpd restart
關(guān)閉 vsftpd: [確定]
為 vsftpd 啟動(dòng) vsftpd: [確定]
------------------------------------------------------
八、測(cè)試工作站:

跳過(guò)DHCP,通過(guò)TFTP 開(kāi)始啟動(dòng)計(jì)算機(jī)

下面就讓他自己?jiǎn)?dòng)就好了!出去轉(zhuǎn)一圈回來(lái)就 OK了!
配置文件?? 自己配置不就好了!教程里寫(xiě)了......

完整的pdf版下載閱讀

標(biāo)簽:莆田 陽(yáng)泉 武漢 南陽(yáng) 綿陽(yáng) 南京 開(kāi)封 黔南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Kickstart無(wú)人職守安裝RHEL5過(guò)程分享(詳細(xì)圖解版)》,本文關(guān)鍵詞  Kickstart,無(wú)人,職守,安裝,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Kickstart無(wú)人職守安裝RHEL5過(guò)程分享(詳細(xì)圖解版)》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于Kickstart無(wú)人職守安裝RHEL5過(guò)程分享(詳細(xì)圖解版)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章