diff --git a/docs/server/nas.md b/docs/server/nas.md index ca2437d..d9e42c0 100644 --- a/docs/server/nas.md +++ b/docs/server/nas.md @@ -7,12 +7,17 @@ sudo apt update sudo apt install nfs-common sudo mount -t nfs :/volumeX/ + +ex: +sudo mount -t nfs 192.168.0.103:/volume1/media /media/nas ``` ## Auto mount on startup -Edit `/etc/fstab` file and add a line like below +Edit `/etc/fstab` file and add a line like below: ```bash -:/volumeX/ nfs user=,password=,uid=1000,gid=500 -``` \ No newline at end of file +:/volumeX/ nfs nfsvers=3 0 0 +``` + +Then run `sudo mount -a` to mount the drive. \ No newline at end of file