91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Centos6.5怎么安裝vsftpd+dhcp+nfs+tftp

發布時間:2022-04-08 17:22:39 來源:億速云 閱讀:103 作者:iii 欄目:編程語言

這篇文章主要介紹“Centos6.5怎么安裝vsftpd+dhcp+nfs+tftp”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“Centos6.5怎么安裝vsftpd+dhcp+nfs+tftp”文章能幫助大家解決問題。

步驟

1、mount /dev/sr0 /media/

2、安裝所需要的軟件

安裝并配置tftp服務

yum install tftp tftp-server vsftpd dhcp syslinux nfs-utils
vim /etc/xinetd.d/tftp
      service tftp
  {
    disable = no
    socket_type       = dgram
    protocol        = udp
    wait          = yes
    user          = root
    server         = /usr/sbin/in.tftpd
    server_args       = -s /var/lib/tftpboot
    per_source       = 11
    cps           = 100 2
    flags          = ipv4
  }

配置dhcp

# dhcpd.conf
  #
  # sample configuration file for isc dhcpd
  #
 
  allow booting;
  allow bootp;
 
 
  # a slightly different configuration for an internal subnet.
  subnet 192.168.1.0 netmask 255.255.255.0 {
  range 192.168.1.50 192.168.1.60;
  option domain-name-servers kangchangwei;
  option domain-name "kangchangwei";
  option routers 192.168.1.1;
  default-lease-time 600;
  max-lease-time 7200;
  filename "pxelinux.0";
  next-server 192.168.1.101;
  }

以上ip可以根據自己所在的網絡修改

3、復制所需要的啟動文件

cp /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot
 cp /mnt/images/pxeboot/initrd.img /var/lib/tftpboot
 cp /media/images/pxeboot/initrd.img /var/lib/tftpboot/
 cp /media/images/pxeboot/vmlinuz /var/lib/tftpboot/

mkdir /var/lib/tftpboot/pxelinux.cfg
 cp /media/isolinux/isolinux.cfg /var/lib/tftpboot/pxelinux.cfg/default

編輯
 vim /var/lib/tftpboot/pxelinux.cfg/default

default linux
#default vesamenu.c32
prompt 1
timeout 600
 
display boot.msg
 
menu background splash.jpg
menu title welcome to centos 6.5!
menu color border 0 #ffffffff #00000000
menu color sel 7 #ffffffff #ff000000
menu color title 0 #ffffffff #00000000
menu color tabmsg 0 #ffffffff #00000000
menu color unsel 0 #ffffffff #00000000
menu color hotsel 0 #ff000000 #ffffffff
menu color hotkey 7 #ffffffff #ff000000
menu color scrollbar 0 #ffffffff #00000000
 
label linux
 menu label ^install or upgrade an existing system
 menu default
 kernel vmlinuz
 append initrd=initrd.img ks=ftp://192.168.1.101/pub/ks.cfg
label vesa
 menu label install system with ^basic video driver
 kernel vmlinuz
 append initrd=initrd.img xdriver=vesa nomodeset
label rescue
 menu label ^rescue installed system
 kernel vmlinuz
 append initrd=initrd.img rescue
label local
 menu label boot from ^local drive
 localboot 0xffff
label memtest86
 menu label ^memory test
 kernel memtest
 append -

4、共享光盤

vim /etc/export
/media *(ro,sync)

啟動nfs服務

[root@kcw ~]# /etc/init.d/rpcbind restart
停止 rpcbind:                       [確定]
正在啟動 rpcbind:                     [確定]
[root@kcw ~]# /etc/init.d/nfs restart
關閉 nfs 守護進程:                    [確定]
關閉 nfs mountd:                     [確定]
關閉 nfs 服務:                      [確定]
shutting down rpc idmapd:                 [確定]
啟動 nfs 服務:                      [確定]
啟動 nfs mountd:                     [確定]
啟動 nfs 守護進程:                    [確定]
正在啟動 rpc idmapd:                   [確定]

查看nfs輸出

[root@kcw ~]# showmount -e localhost
export list for localhost:
/media *

生成ks.cfg文件安裝工具

[root@kcw ~]# yum install system-config-kickstart

然后運行

system-config-kickstart

來修改頁面得到自己安裝的客戶端
我這里省略。。

這有個做好的ks.cfg

內容如下:

#platform=x86, amd64, or intel em64t
#version=devel
key --skip
# firewall configuration
firewall --disabled
# install os instead of upgrade
install
# use network installation
nfs --server=192.168.1.101 --dir=/media
# root password
rootpw --iscrypted $1$9elloihk$po.nfjnd/6k88z3ciivpc.
# network information
network --bootproto=dhcp --device=eth0 --onboot=on
# system authorization information
auth --useshadow --passalgo=md5
# use text mode install
text
# system keyboard
keyboard us
# system language
lang zh_cn
# selinux configuration
selinux --disabled
# do not configure the x window system
skipx
# installation logging level
logging --level=info
# reboot after installation
reboot
# system timezone
timezone asia/shanghai
# system bootloader configuration
bootloader --location=mbr
# clear the master boot record
zerombr
# partition clearing information
clearpart --all 
# disk partitioning information
part swap --size 2048 
part /boot --size 200 
part pv.01 --size 30000 
volgroup vol0 pv.01
logvol / --vgname=vol0 --size=25000 --name=root
#logvol /home --vgname=vol0 --size=500 --name=home
 
%post
#wget ftp://192.168.1.101/pub/yum.repo -p /etc/yum.repos.d/
%packages
@ desktop
@ console internet tools
@ desktop platform
@ development tools
@ general purpose desktop
@ graphical administration tools
@ internet browser
@ network file system client
@ printing client
@ x window system
@ chinese support

注意我這塊root密碼是redhat
我這里分區時lvm分區根據你的需求也可以修改

然后把ks.cfg放到你的vsftpd默認可以訪問的目錄里

即:

[root@kcw ~]# cd /var/ftp/pub/
[root@kcw pub]# ls
ks.cfg
[root@kcw pub]# pwd
/var/ftp/pub


注意先測試你的這個文件能不能訪問打開ie
輸入

看能否看到內容!

做完重啟dhcp vsftpd xine xinetd nfs

然后重新開臺電腦開機設置從網卡引導看能否啟動成功并且自動安裝

我這塊等待默認600秒 自動安裝

開機引導到boot:時按回車安裝

關于“Centos6.5怎么安裝vsftpd+dhcp+nfs+tftp”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

万州区| 梓潼县| 麻城市| 新沂市| 莱芜市| 曲麻莱县| 峨眉山市| 饶阳县| 策勒县| 湘西| 丽江市| 安乡县| 延津县| 瓦房店市| 紫阳县| 道孚县| 南康市| 谢通门县| 肇源县| 东辽县| 镇巴县| 锡林浩特市| 水城县| 岳普湖县| 宁远县| 顺义区| 舒城县| 元谋县| 观塘区| 淳安县| 汪清县| 青田县| 逊克县| 苏州市| 嘉义市| 同江市| 中牟县| 平湖市| 永春县| 辽中县| 临夏市|