資源描述:
《pxe方式安裝sles11》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在行業(yè)資料-天天文庫(kù)。
1、PXE方式安裝SUSELinuxEnterprise10PXE方式適用電腦無(wú)軟驅(qū)和光驅(qū),并且硬盤(pán)上沒(méi)有操作系統(tǒng)的情況。一、前提條件。1、一臺(tái)已經(jīng)安裝SUSELinuxEnterprise10的電腦來(lái)提供DHCP,TFTP,FTP服務(wù)。2、SUSELinuxEnterprise10的安裝映象文件sles-10-x86-cd1.iso_cd4.iso3、客戶(hù)機(jī)帶有支持PXE啟動(dòng)的網(wǎng)卡。二、服務(wù)器的設(shè)置。(IP地址192.168.5.1)1、設(shè)置dhcp服務(wù)。編輯文件/etc/dhcpd.conf。下面是dhcpd.conf文件的例子。default-lease-time6000;max-le
2、ase-time72000;ddns-update-stylenone;ddns-updatesoff;subnet192.168.5.0netmask255.255.255.0{range192.168.5.2192.168.5.4;optionrouters192.168.5.1;}hostlin{hardwareethernet00:11:25:68:a5:c6;#客戶(hù)機(jī)的網(wǎng)卡硬件地址fixed-address192.168.5.2;#分配給客戶(hù)機(jī)的IP地址server-name“192.168.5.1″;#指定TFTP的IP地址next-server192.168.5.1;fil
3、ename“/tftpboot/pxelinux.0″;#指定包含PXE引導(dǎo)程序的文件}啟動(dòng)dhcp服務(wù):#rcdhcpdstart2、設(shè)置tftp服務(wù)。首先查看系統(tǒng)是否安裝了tftp服務(wù)器軟件:輸入:rpm-qa
4、grepatftp.如果提示沒(méi)有安裝,請(qǐng)用Yast安裝。(注:SUSELinux10默認(rèn)沒(méi)有安裝atftp)編輯/etc/sysconfig/atftpd文件,其內(nèi)容如下ATFTPD_OPTIONS=”–-daemon–-usertftp-v”ATFTPD_USE_INETD=”no”ATFTPD_DIRECTORY=”/srv/tftp”(注:/srv/tftp目錄需要手工
5、建立)然后增加一個(gè)tftp用戶(hù):useradd-mtftp啟動(dòng)tftp服務(wù):#rcatftpdstart3、設(shè)置PXE引導(dǎo)環(huán)境首先確保系統(tǒng)安裝了syslinux包。(注:SUSELiunx10默認(rèn)安裝了enterprisesyslinux)運(yùn)行下列命令#cd/srv/tftp#mkdirtftpboot#cdtftpboot#mkdirpxelinux.cfg#cp/usr/share/syslinux/pxelinux.0/srv/tftp/tftpboot#vi/srv/tftp/tftpboot/pxelinux.cfg/default/srv/tftp/tftpboot/pxel
6、inux.cfg/default內(nèi)容如下:defaultlinuxprompt1timeout30labellinuxkernellinuxappendinitrd=initrdsplash=silentshowopts4、加載安裝映像文件#mkdir/sles10#mkdir/sles10/cd{1,2,3,4}(注:在/sles10/下建立目錄cd1,cd2,cd3,cd4)#mount-oloop/mnt/wind/sles-10-x86-cd1.iso/sles10/cd1#mount-oloop/mnt/wind/sles-10-x86-cd2.iso/sles10/cd2#m
7、ount-oloop/mnt/wind/sles-10-x86-cd3.iso/sles10/cd3#mount-oloop/mnt/wind/sles-10-x86-cd4.iso/sles10/cd4復(fù)制cd1目錄中l(wèi)inux和initrd文件到/srv/tftp/tftpboot#cd/sles10/cd1/boot/i386/loader#cplinux/srv/tftp/tftpboot/#cpinitrd/srv/tftp/tftpboot/5、設(shè)置ftp服務(wù)。允許匿名登錄,并設(shè)置其登錄主目錄為/sles10/.可以通過(guò)修改/etc/passwd文件來(lái)設(shè)置匿名登錄的主目錄。如
8、下ftp:x:40:49:FTPaccount:/sles10:/bin/bash啟動(dòng)ftp服務(wù)器。(有關(guān)ftp服務(wù)器的具體設(shè)置,請(qǐng)查閱相關(guān)資料。)三、客戶(hù)機(jī)安裝1、在BIOS中設(shè)置為網(wǎng)絡(luò)啟動(dòng)2、重新啟動(dòng)電腦。如果設(shè)置無(wú)誤,系統(tǒng)會(huì)自動(dòng)獲得IP.3、運(yùn)行到出現(xiàn)boot:是,輸入命令boot:linuxinstall=ftp://192.168.5.1/cd1(注:install指定了ftp服務(wù)器的地址及安裝文件的位置;輸入內(nèi)容速度要快