nfs伺服器搭建和遇到的問題

lethe1203發表於2024-03-20
安裝nfs服務:
sudo apt-get install nfs-kernel-server rpcbind
nfs配置檔案新增:
sudo vi /etc/exports 

新增:
/home/xxx/linux/nfs *(rw,sync,no_root_squash)
重啟 NFS 服務,使用命令如下:
sudo /etc/init.d/nfs-kernel-server restart
遇到的問題參考部落格:
https://blog.csdn.net/qq_54381110/article/details/131818598
https://blog.csdn.net/loveshipting/article/details/106183367
https://blog.csdn.net/kennann/article/details/109170459
https://blog.csdn.net/B__T__T/article/details/78698445

相關文章