您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何實現半自動化安裝CentOS系統,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
先看一下拓撲圖吧!
簡單的解釋一下拓撲圖,先在服務器端開啟http服務,在http默認目錄下創建兩個目錄分別是ks、x86_64,并把光盤鏡像掛載至/var/www/html/x86_64目錄下,把已經制作好的ks.cfg文件復制至/var/www/html/ks目錄中;在服務器端制作isolinux用于引導啟動客戶端(其實就是把光盤鏡像中的isolinux目錄給抽取出來,并重新用命令生成一個iso的文件)。在客戶端在掛載isolinux,通過局域網進行安裝CentOS 6.6 x86_64.
(1)首先制作ks.cfg文件
在CentOS 6安裝完成后會在/root下生成一個anaconda-ks.cfg文件,這個是由CentOS 6安裝程序anaconda根據你在系統安裝過程中所有的鍵盤類型、語言、時區、分區、程序包的選擇而生成的一個文件。
如果我們要制作一個anaconda-ks.cfg文件,可以參考這個文件在些基礎上進行修改,可以使用system-config-kickstart程序生成相關的文件。
安裝system-config-kickstart程序
[root@node-2 ~]# yum install -ysystem-config-kickstart
啟動system-config-kickstart程序
使用xshell 4遠程連接終端啟動system-config-kickstart,建議安裝XmanagerEnterprise 4軟件,這樣可以在本地終端中打開Linux系統中的軟件。在命令行中輸入system-config-kickstart命令即可。
修改完之后在File菜單中選擇Save保存,在最上面輸入ks.cfg名字,選擇保存位置,點擊Save按鈕即可。
查看剛剛生成的文件并進行添加一些內容,因為有些命令是需要手動添加的,相關的請參考REHL官方的資料。
[root@node-2 ~]# cat /var/www/html/ks/ks.cfg
#platform=x86, AMD64, or IntelEM64T
#version=DEVEL
# Firewall configuration
firewall --disabled #安裝后重啟初始化系統時選擇關防火墻
# Install OS instead of upgrade
install #安裝類型選擇為安裝
# Use network installation
url --url="http://172.16.9.21/x86_64/" #通過網絡安裝,使用的Http服務
repo --name="CentOS"--baseurl=http://172.16.9.21/x86_64/ --cost=100
#repo --name="FedoraEPEL" --baseurl=http://172.16.0.1/fedora-epel/6/x86_64/ --cost=1000
# Root password
rootpw --iscrypted $1$jLn8z9P1$ff07gV9CfXmz1Q0NEOmAw/ #管理員root的密碼,使用加密存放
# System authorizationinformation
auth --useshadow --passalgo=sha512 #認證方法,使用的sha512的加密方式
# Use graphical install
graphical #使用圖形界面進行安裝
firstboot --disable
# System keyboard
keyboard us #選擇的鍵盤類型為us
# System language
lang en_US #語言為英文
# SELinux configuration
selinux --disabled #關閉selinux
# Do not configure the X WindowSystem
skipx #忽略X Window System的配置
# Installation logging level
logging --level=info #啟動的級別為文本
# Reboot after installation
reboot #安裝完之后重啟系統
# System timezone
timezone Asia/Shanghai #系統時區為亞洲/上海
# Network information
#network --bootproto=dhcp --device=eth0 --onboot=on
# System bootloaderconfiguration #表示傳遞能內核的參數
bootloader--append="crashkernel=auto crashkernel=auto rhgb quiet"--location=mbr --driveorder="sda
# Partition clearinginformation
clearpart --all #以下都是對磁盤進行分區操作的,這里使用的LVM
zerombr #磁盤沒有分區,對磁盤進行分區
part /boot --fstype=ext4--size=200
part pv.008002 --size=61440
volgroup vg0 --pesize=8192pv.008002
logvol / --fstype=ext4--name=root --vgname=vg0 --size=20480
logvol swap --name=swap--vgname=vg0 --size=2048
logvol /usr --fstype=ext4--name=usr --vgname=vg0 --size=10240
logvol /var --fstype=ext4--name=var --vgname=vg0 --size=20480
%post #安裝完之后需要執行的腳本
%end #腳本結束符
%packages #在安裝過程中需要安裝的程序包及程序包組
@base
@basic-desktop
@chinese-support
@client-mgmt-tools
@core
@desktop-platform
@fonts
@general-desktop
@graphical-admin-tools
@legacy-x
@network-file-system-client
@perl-runtime
@remote-desktop-clients
@x11
-ibus-table-cangjie
-ibus-table-erbi
-ibus-table-wubi
%end #程序包及程序包組結束符
(2) 安裝http服務與啟動
[root@node-2 ~]# yum installhttpd -y #安裝httpd服務
[root@node-2 ~]# service httpdstart #啟動http服務
Starting httpd: [ OK ]
[root@node-2 ~]# netstat-ntlp|grep 80 #查看啟動狀態,http的端口為tcp的80端口
tcp 0 0 :::80 :::* LISTEN 2008/httpd
(3) 掛載光盤鏡像
把光盤鏡像放入光驅,如果使用的是虛擬機把光盤文件添加至虛擬機的光驅,并選擇啟用。
[root@node-2 ~]# mkdir /var/www/html/{ks,x86_64} #創建ks,x86_64目錄
[root@node-2 ~]# mount -r/dev/dvd /var/www/html/x86_64/ #以只讀方式掛載光盤鏡像至/var/www/html/x86_64/
[root@node-2 ~]# mount|tail -1 #查看掛載情況
/dev/sr0 on/var/www/html/x86_64 type iso9660 (ro)
(4) 復制ks.cfg文件至/var/www/html/ks目錄下
[root@node-2 ~]# cp/root/ks.cfg /var/www/html/ks/
[root@node-2 ~]# ls/var/www/html/ks/
ks.cfg
感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何實現半自動化安裝CentOS系統”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。