Synology Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPL8Yx7FxnY6xKxcMiVWkkJ
Access using NFS: https://youtu.be/j625yzl78nA
Synology DS918+ (Amazon Affiliate)
➡️ Purchase here: https://amzlink.to/az0FGeDwpK4L8
UK: https://amzlink.to/az0OeIEuK7hGI
CA: https://amzlink.to/az0vryw0ODb2z
DE: https://amzlink.to/az04ftMP2WCzz
ES: https://amzlink.to/az0iZyaeVezl9
FR: https://amzlink.to/az0ybjLtlcoYk
IT: https://amzlink.to/az0GtUVENikQH
IN: https://amzlink.to/az0ozLq9DB4Tx
(x4) WD RED WD40EFRX CMR* (Amazon Affiliate)
➡️ Purchase here: https://amzlink.to/az0FcFyXpXTCY
UK: https://amzlink.to/az03E7LzlFXXO
CA: https://amzlink.to/az098zc9rcSeB
DE: https://amzlink.to/az0f20MrLdC2r
ES: https://amzlink.to/az07cBdywPBnn
FR: https://amzlink.to/az0SBpZyYyC53
IT: https://amzlink.to/az0yQmw3O4hzL
IN: https://amzlink.to/az0BcJtssXxBz
AU: https://amzlink.to/az0jLG7IHjLzp
* Please verify that you have chosen the WD40EFRX (CMR) model when ordering. Also check that you got the correct drives when your order arrives. Avoid the WD40EFAX SMR models!
Crucial 16GB (8GBx2) RAM CT2K8G3S186DM (Amazon Affiliate)
➡️ Purchase here: https://amzlink.to/az0dabkgSPPdv
UK: https://amzlink.to/az0PKlB3aqljH
CA: https://amzlink.to/az0Pfbd5BhEvx
ES: https://amzlink.to/az0KYAN4hvA7Z
FR: https://amzlink.to/az0PgPuCT4STI
IT: https://amzlink.to/az0qzlPXM3Gp8
DE: https://amzlink.to/az0HIuHtZHcqm (HX318LS11IB/8)
IN: https://amzlink.to/az0vZPmRxmL0u
AU: https://amzlink.to/az0iTLpuU7LhC
Install CIFS Software
sudo apt install cifs-utils
Create Mount Point
sudo mkdir /mnt/DS_Share
Find Current Username
whoami (returns username)
Find User ID of User
id -u rick
Find Group ID of User
id -g rick
Mount Share
sudo mount.cifs -o user=rick,uid=1000,gid=1000 //ip_of_Synology]/DS_Share/ /mnt/DS_Share
Move to Share Directory
cd /mnt/DS_Share
List Contents of Share Directory
ls -l
Return to Home Directory
cd
Unmount Share
umount /mnt/DS_Share
Mount Share Upon Startup
sudo nano /etc/fstab
//ip_of_Synology/DS_Share /mnt/DS_Share cifs user=rick,pass=password,uid=1000,gid=1000 0 0
Type control-o to save, control-x to exit.
Mount all Volumes in fstab
sudo mount -a
Check to see if Mounted
ls /mnt/DS_Share
Note on SMB setup: In the Synology’s File Services settings for SMB, when you click on “Advanced Settings”, I have Maximum SMB Protocol set to SMB3 and Minimum set to SMB1. I also have these four settings with check marks in them, “Enable Opportunistic Locking”, “Enable SMB2 lease”, “Enable Local Master Browser” and “Enable SMB durable handles…”
