From 4e61039ce5ff8ccade642b2c3a02f50255267bef Mon Sep 17 00:00:00 2001 From: Dave Dietrick Date: Fri, 7 Apr 2023 12:43:24 -0400 Subject: [PATCH] Updated nas --- docs/server/nas.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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