安裝軟體包
服務端和客戶端都得安裝
nfs-utils:
這個是nfs服務主程式(包含rpc.nfsd、rpc.mountd、daemons)
rpcbind:
這個是centos6.x的rpc主程式(centos5.x的為portmap)
yum install -y nfs-utils rpcbind
配置
在檔案/etc/exports
例如:/opt/tftpboot 192.168.1.55(rw,sync,no_root_squash)
設定nfs資料夾為/opt/tftpboot,設定可以連線的ip為
192.168.1.55,可讀可寫
如果想設定為乙個網路,可以如192.168.1.0/24
啟動服務
systemctl restart rpcbind
systemctl restart nfs
systemctl status nfs //檢視狀態
客戶端掛載
例如:/mnt/nfs服務端ip為192.168.1.13 服務端nfs目錄/opt/tftpboot 客戶端nfs掛載目錄/mnt/nfs
mount -t nfs -o nolock 192.168.1.13:/opt/tftpboot /mnt/nfs
fedora20 nfs伺服器配置
板子在很多時候需要通過 nfs 協議讀取 mount 的檔案。1 安裝nfs服務和rpcbind 服務 yum install rpcbind yum install nfs utils 2 建立nfs server目錄,用於放置被遠端nfs訪問的檔案。mkdir opt nfsroot opt n...
NFS 伺服器的架設
ubuntu 預設是沒有nfs服務的,所以需要自己安裝 1 安裝nfs服務版 apt get install nfs kernel server 2 修改nsf配置檔案 vi etc exports 在檔案中新增nfs的目錄格式如下 myandroid sync,rw,no root squash ...
NFS伺服器的配置
1.配置伺服器端 使用如下指令安裝nfs伺服器軟體包並建立 etc export和 etc default nfs kernel server配置檔案,等待使用者完成nfs安裝後,配置將要共享的資源。linux ubuntu sudo apt get install nfs kernel serve...