Ubuntu – How to mount Zyxel NSA310 shares

mountnassmb

I have a Zyxel NSA310 NAS, which is working fine with Windows machines in the house. I've also successfully created and mounted an NFS share on the two Ubuntu machines.

But I'd like to mount the standard Windows shares (photo, music and video), and I've had no luck. File manager finds the homestore (the NSA310's default name) on the network but won't let me drill down. Going straight to smb: doesn't work. And editing /etc/fstab with plausible-looking entries yields errors.

Does anyone have experience of this useful device? Surely I'm not the only one who's wrestled with it?!

Best Answer

In my opinion the fastest way is to mount via cifs. Run the following command (by making necessary changes):

mount -t cifs //se.rv.er.IP/video /ubuntu_path -o rw,user=xxx,password=yyy

If you don't have cifs installed; you may do so by running the following command:

sudo apt-get install cifs
Related Question