Centos7
Centos 7,Kickstart,安裝期間設置基礎儲存庫時出錯
我正在嘗試在 vmware 12 上使用 kickstart 安裝 centos 7。我已經下載了 iso 並使用相同的 iso 包安裝了許多虛擬機。
我收到錯誤:設置基礎儲存庫時出錯
我為 kickstart 執行的步驟。
mount /dev/sr0 /webdir/rhel //CD rom iso在這裡掛載
chown -R root:root /website/rhel
chmod 755 /webdir/ks.cfg
我的啟動文件
#version=RHEL7 # System authorization information auth --enableshadow --passalgo=sha512 # Use CDROM installation media #cdrom url --url http://192.168.1.201/rhel # Use graphical install graphical # Run the Setup Agent on first boot firstboot --enable ignoredisk --only-use=sda # Keyboard layouts keyboard --vckeymap=us --xlayouts='us' # System language lang en_US.UTF-8 # Network information network --bootproto=static --device=eno16777736 --gateway=192.168.1.1 --ip=192.168.1.200 -- nameserver=192.168.1.1 --netmask=255.255.255.0 --noipv6 --activate #network --hostname=server.homedomain.com # Root password rootpw --iscrypted $6$ozwaEbpRPt30cDvE $AvQIjqHZAkFSCqc8vfO.Kta6QPw7AXTNFXtNASV2HGU9pnc lcNcpzjvoe4wFc9bdoo8Kyfe01tuauM0k9s3pn/ # System timezone timezone Asia/Karachi --isUtc --nontp user --name=atif --password=asif10 #user --name=asif --password= $6$DThpCq/Gemo2s3DL $3y4CtyJYO.gvZ67acOskcOvKNUJiYlz3hEUF/LoRu0FDDIc u6rVS5OFVfLygbDjLOjkANvs5aCupKawyRw3jU1 -- iscrypted --gecos="Muhammad Asif" # X Window System configuration information xconfig --startxonboot # System bootloader configuration bootloader --location=mbr --boot-drive=sda # Partition clearing information clearpart --none --initlabel # Disk partitioning information part pv.196 --fstype="lvmpv" --ondisk=sda -- size=16900 part /boot --fstype="xfs" --ondisk=sda -- size=1024 --label=boot volgroup centos --pesize=4096 pv.196 logvol /home --fstype="xfs" --size=1024 -- label="home" --name=home --vgname=centos logvol swap --fstype="swap" --size=1024 -- name=swap --vgname=centos logvol / --fstype="xfs" --size=14848 -- label="root" --name=root --vgname=centos %packages @base @core @desktop-debugging @dial-up @directory-client @fonts @gnome-desktop @guest-agents @guest-desktop-agents @input-methods @internet-browser @java-platform @multimedia @network-file-system-client @networkmanager-submodules @print-client @x11 %end %addon com_redhat_kdump --disable --reserve- mb='auto' %end
請為此提出解決方案。
經過大量的Google搜尋,我整天都在尋找這個解決方案。它奏效了。
我只更改了 ks.cfg 中的一行
**
# Use CDROM installation media #cdrom url --url="http://192.168.1.215/rhel" // only added = and "" only # Use graphical install graphical
**
為其他人再次重複步驟:
伺服器設置:
使用http
webdir =/var/www/html
mkdir /webdir/rhel <br> mount /dev/sr0 /webdir/rhel //CDROM iso is mounted here <br> chown -R root:root /website/rhel <br> chmod 755 /webdir/ks.cfg<br>
客戶:
按 Esc:
啟動:linux ks= http://192.168.1.215/ks.cfg
它工作完美。
您設置定義了 CD 安裝,但您的 kick 腳本定義了網路位置。
我為 kickstart 執行的步驟。mount /dev/sr0 /webdir/rhel //CD rom iso在這裡掛載 chown -R root:root /website/rhel chmod 755 /webdir/ks.cfg
# Use CDROM installation media #cdrom url --url http://192.168.1.201/rhel
不應該是這樣的:
# Use CDROM installation media cdrom repo --name="RHEL7" --baseurl=cdrom:sr0