Mounting SMB and NFS shares from ugreen NAS on Linux

To mount an NFS share on Ubuntu: sudo mount -t nfs4 ip-address=of-nas:/volume[x]/sharename /mnt/path If you get this error: mount: /mnt/path: bad option; for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program Install helpers (from here): # for NFSsudo apt install nfs-common# for SMBsudo apt install cifs-utils For mounting an SMB share …