發表文章

目前顯示的是有「nfs」標籤的文章

Windows 10 掛載 NFS 網路磁碟

圖片
1. 控制台 -> 程式集 -> 程式和功能 -> 開啟或關閉功能 2. 選取  Services for NFS  Client for NFS and 系統管理工具 3. 開啟命令提示字元  showmount NFS_IP    # NFS_IP is xxx.xxx.xxx.xxx for ipv4 mount /help      mount -o anon \\NFS_IP\NFS_share   References https://docs.microsoft.com/zh-tw/windows-server/administration/windows-commands/services-for-network-file-system-command-reference https://social.technet.microsoft.com/Forums/zh-TW/d91d2b21-5955-4217-8e86-963f7685c269/windows-10-nfs-client?forum=win10itprosetup

CentOS 7 架設 nfs server 需開啟之通訊埠與SELinux規則

圖片
SELinux setsebool -P nfs_export_all_rw=1 setsebool -P nfs_export_all_ro=1 通訊埠 firewall-cmd --add-port=111/tcp --permanent firewall-cmd --add-port=111/udp --permanent firewall-cmd --add-port=2049/tcp --permanent firewall-cmd --add-port=2049/udp --permanent firewall-cmd --add-port=20048/tcp --permanent firewall-cmd --add-port=20048/udp --permanent firewall-cmd --permanent --add-service=rpc-bind firewall-cmd --permanent --add-service=nfs firewall-cmd --permanent --add-service=mountd firewall-cmd --reload TCPWrapper rpcbind:  192.168.78.0/24 mountd: 192.168.78.0/24