Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 361 Bytes

NFS.md

File metadata and controls

18 lines (13 loc) · 361 Bytes

NFS (Network File System)

# Install NFS dependencies
sudo apt install nfs-common

# Show available folders on host
showmount -e IP-OR-HOST

# Mount shared folder
sudo mount -nolock HOSTNAME:/SHARED-FOLDER /your/folder

# Mount shared folder
sudo mount -o rw,vers=3 HOSTNAME:/SHARED-FOLDER /your/folder

# Check permissions of files
stat your-file