Redhat
Red Hat Kickstart:如何讓基於 DVD-ROM 的安裝工作?
我正在嘗試創建一個“Magic DVD”,它將按照我們第一次、每次的方式安裝和配置 RHEL 6.2。
這是我一直在嘗試使用的過程,只是為了證明這個概念:
按預期手動執行安裝。允許 anaconda 創建
/root/anaconda-ks.cfg
. 將 RHEL 安裝 DVD 的內容複製到我硬碟上的目錄中。mkdir -p /home/derp/RHEL/diskFiles cp /media/RHEL_6.2\ i386\ Disc\ 1/* /home/derp/RHEL/diskFiles
進入
/root/anaconda-ks.cfg
上述目錄,在頂層:cp /root/anaconda-ks.cfg /home/derp/RHEL/diskFiles/ks.cfg
使用適當的命令創建一個新的 ISO 文件。(取自此連結。)
cd /home/derp/RHEL mkisofs -o file.iso -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -R -J -v -T diskFiles/
從這一點來看,它應該是直截了當的:
- 將文件刻錄到磁碟(或者,在這種情況下,將 VM 的“光碟機”連接到 ISO 文件。)
- 啟動機器。
- 當機器自動安裝時,會流下喜悅的淚水。
所以這就是問題所在:我重新掌握的 ISO 可以正常啟動和啟動 anaconda,但是一旦它到達那裡,什麼也沒有發生。我對我錯過了什麼感到困惑——它看起來與我在這裡找到的答案非常相似。據我了解,該
anaconda-ks.cfg
文件應該執行了與我為建構系統執行的完全相同的安裝。我添加到文件中的唯一內容是autostep --autoscreenshot
命令,以便我可以看到它在做什麼。我確實注意到一些分區命令被註釋掉了,但我不知道這是否是導致問題的原因。從重新掌握的 ISO 正確引導的事實來看,我認為我搞砸了
ks.cfg
文件和/或沒有指定我需要的引導參數。我已經粘貼在我的ks.cfg
下面:#version=DEVEL autostep --autoscreenshot install cdrom lang en_US.UTF-8 keyboard us network --onboot no --device eth0 --noipv4 --noipv6 rootpw --iscrypted $6$CLfKLztawb7ZJq.O$d9iWhj6/SC..72WZFOtiy6t90DfTkTGZ9xgJ/8Cy.xKVNLlv6tmqf73uxeP0mvZT481kvyQzDi7uLon5fUAAw/ firewall --service=ssh authconfig --enableshadow --passalgo=sha512 selinux --enforcing timezone --utc America/Los_Angeles bootloader --location=mbr --driveorder=sda --append=" rhgb crashkernel=auto quiet" # The following is the partition information you requested # Note that any partitions you deleted are not expressed # here so unless you clear all partitions first, this is # not guaranteed to work #clearpart --all --drives=sda #part /boot --fstype=ext4 --size=500 #part pv.008002 --grow --size=1 #volgroup vg_dbs01 --pesize=4096 pv.008002 #logvol /omnyx --fstype=ext4 --name=lv_omnyx --vgname=vg_dbs01 --size=81448 #logvol / --fstype=ext4 --name=lv_root --vgname=vg_dbs01 --size=8192 #logvol swap --name=lv_swap --vgname=vg_dbs01 --size=4064 #logvol /var --fstype=ext4 --name=lv_var --vgname=vg_dbs01 --size=8192 repo --name="Red Hat Enterprise Linux" --baseurl=cdrom:sr0 --cost=100 %packages @base @client-mgmt-tools @core @debugging @basic-desktop @desktop-debugging @desktop-platform @directory-client @fonts @general-desktop @graphical-admin-tools @input-methods @internet-applications @internet-browser @java-platform @legacy-x @network-file-system-client @office-suite @print-client @remote-desktop-clients @server-platform @workstation-policy @x11 mtools pax python-dmidecode oddjob sgpio genisoimage wodim abrt-gui certmonger pam_krb5 krb5-workstation gnome-pilot libXmu %end
非常感謝您的幫助。
您需要告訴安裝程序進行 kickstart 安裝。您可以通過以下兩種方式之一執行此操作:
A. 當您看到安裝程序螢幕類型
linux ks=/ks.cfg
B. 由於您正在滾動自己的媒體,您可以將媒體文件夾中命名的文件中的
linux
標籤更改為:isolinux.cfg``isolinux
label linux menu label ^Install or upgrade an existing system menu default kernel vmlinuz append initrd=initrd.img ks=/ks.cfg <-- EDIT HERE!
您需要將您的 kickstart 文件重命名為 ks.cfg