freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于pxe無人值守安裝linux系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)畢業(yè)論文-在線瀏覽

2024-08-07 18:27本頁面
  

【正文】 道是否接收到它的ip地址了。有時(shí)候dhcpoffer給的ip地址已被占用,那么客戶端將會(huì)再次發(fā)送DHCPdiscover信息??蛻舳司桶裻cp/ip協(xié)議與自己的網(wǎng)卡綁定下來,其它dhcp服務(wù)器發(fā)的地址都會(huì)被收回去。如果ip已被占用,這回復(fù)dhcpnack(告訴客戶端ip有人用了),那么客戶端就要重新發(fā)dhcpdiscover包了。一般情況下在租約過半時(shí),客戶端就會(huì)發(fā)送更新租約的信息,若得不到確認(rèn)信息的話,到了四分之三的租約時(shí)間客戶端就不能再使用這個(gè)ip了。(不知道這和我們可以隨時(shí)改ip有不有關(guān)系,我們臨時(shí)改ip是不是也發(fā)這么一個(gè)包)。option domainnameservers , 。maxleasetime 7200。#我們dhcp服務(wù)器可以提供的ip地址范圍 option routers 。這是我們啟動(dòng)要用到的文件,增加 tftpserver 需要推送給客戶端的啟動(dòng)文件(bootstrap)因?yàn)?tftp 的默認(rèn)目錄是 /tftpboot,所以文件的絕對(duì)路徑就是: /tftpboot/ nextserver 。t really remend.subnet netmask { range dynamicbootp 。 option routers 。 option domainnameservers 。 option routers 。 defaultleasetime 600。} Hosts which require special configuration options can be listed in host statements. If no address is specified, the address will be allocated dynamically (if possible), but the hostspecific information will still e from the host declaration.host passacaglia { hardware ethernet 0:0:c0:5d:bd:95。 servername 。 fixedaddress 。}sharednetwork 22429 { subnet netmask { option routers 。 } pool { allow members of foo。 } pool { deny members of foo。 }}后面的這一部分跟本次設(shè)計(jì)關(guān)系不大,其實(shí)并沒有用到,目前我也看不大懂。它沒有FTP那么強(qiáng)大,但是tftp適用于udp,有些時(shí)候還是tftp更方便。接下來我們來進(jìn)行安裝:先安裝守護(hù)進(jìn)程 xinetd (tftp是屬于它的)[rootnode1 ~] yum install xinetd yserver | kB 00:00 ... Resolving Dependencies Running transaction check Package 2: set to be updated Finished Dependency ResolutionDependencies Resolved================================================================================ Package Arch Version Repository Size================================================================================Installing: xinetd i686 2: server 121 kTransaction Summary================================================================================Install 1 Package(s)Upgrade 0 Package(s)Total download size: 121 kInstalled size: 258 kIs this ok [y/N]: yDownloading Packages:Running rpm_check_debugRunning Transaction TestTransaction Test SucceededRunning Transaction Installing : 2: 1/1 Installed: 2: Complete![rootnode1 ~] yum install tftpserver y [rootnode1 ~] vim /etc/(編輯配置文件) default: off description: The tftp server serves files using the trivial file transfer \ workstations, download configuration files to networkaware printers, \ and to start the installation process for some operating systems.service tftp{ socket_type = dgram protocol = udp (使用的協(xié)議) wait = yes user = root server = /usr/sbin/ server_args = s /var/lib/tftpboot tftp對(duì)外提供服務(wù)的目錄 disable = no 開啟tftp服務(wù) per_source = 11 cps = 100 2 flags = IPv4}設(shè)置開機(jī)自啟動(dòng),如果不開機(jī)自啟動(dòng)我們每次開機(jī)都得手動(dòng)去啟動(dòng)服務(wù),這會(huì)增加我們的工作量,當(dāng)然這也會(huì)占用更多的資源,看個(gè)人喜好吧。通過這個(gè)系統(tǒng),我們可以在各臺(tái)電腦之間通過網(wǎng)絡(luò)共享文件。先查詢是否安裝nfs的包[rootnode1 ~] rpm qa | grep nfs[rootnode1 ~] rpm qa | grep rpcbind創(chuàng)建相關(guān)的目錄[rootnode1 ~] mkdir p /kickstart/install (之后我們要共享的目錄)[rootnode1 ~] mount /dev/cdrom /kickstart/install/ (將鏡像文件掛載到這個(gè)目錄下)mount: block device /dev/sr0 is writeprotected, mounting readonly編輯nfs文件[rootnode1 ~] vim /etc/exports (文件所在目錄)/kickstart *(ro,sync) (括號(hào)內(nèi)代表權(quán)限)/kickstart/install *(ro,sync) (安裝源及權(quán)限)可以創(chuàng)建多個(gè)安裝源設(shè)置好開機(jī)自啟動(dòng)[rootnode1 ~] service rpcbind start[rootnode1 ~] service nfs start服務(wù)自啟動(dòng)[rootnode1 ~] chkconfig nfs on[rootnode1 ~] chkconfig rpcbind onPXELINUX是一種軟件,通過tftp將它下載到本地。這個(gè)非常的重要沒有它實(shí)現(xiàn)不了的。匹配不到,就將default 的文件作為配置文件。[rootnode1 ~] rpm ql syslinux | grep /usr/share/syslinux//usr/share/syslinux/[rootnode1 ~] cp /usr/share/syslinux/(網(wǎng)卡的啟動(dòng)引導(dǎo)程序) /var/lib/tftpboot/ ( )[rootnode1 ~] cp /yum/images/pxeboot/vmlinuz(內(nèi)核) /var/lib/tftpboot/ (將鏡像里面的內(nèi)核文件放入tftp文件夾)[rootnode1 ~] cp /yum/images/pxeboot/(驅(qū)動(dòng)) /var/lib/tftpboot/ (將鏡像里面的驅(qū)動(dòng)文件放入tftp文件夾)[rootnode1 ~] cp /yum/isolinux/*.msg(操作系統(tǒng)啟動(dòng)引導(dǎo)文件) /var/lib/tftpboot/[rootnode1 ~] mkdir /var/lib/tftpboot/ (創(chuàng)建目錄)[rootnode1 ~] cp /yum/isolinux/(安裝選擇菜單) /var/lib/tftpboot/(pxe的配置文件)編輯pxe配置文件[rootnode1 ~] vim /var/lib/tftpboot/ default ksdefault prompt 1timeout 600display menu background menu title Wele to Red Hat Enterprise Linux !(提示語)menu color border 0 ffffffff 00000000menu color sel 7 ffffffff ff000000
點(diǎn)擊復(fù)制文檔內(nèi)容
環(huán)評(píng)公示相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1