Mounting Qnap NAS – Ubutnu

network-attached-storagenetwork-storageqnapstorage

I would like to mount my qnap to my Linux Mint laptop.
The IP address of the NAS is : 192.168.0.25

So I executed this command:

sudo mount -t nfs -o username=user_name,password=my_password 192.168.0.25:HR /mnt/qnap

I had this error:

mount.nfs: an incorrect mount option was specified

When I use the UI and click on Network then MyNas icon, I had this error:

Failed to retrieve share list from server: Connection refused

Do you see any solution ?

== Update ==

This is the showmount command output:

showmount -e 192.168.0.25

Export list for 192.168.0.25:
/homes       
/my_home       
/Web         
/Public      
/OceanKTV    
/Multimedia  
/Download    
/Container  

Best Answer

There is neither a username nor a password option for NFS mounts. A typical NFS mount command looks like as follows.

sudo mount -t nfs 192.168.0.25:/Multimedia /mnt

For further mount options you can refer to the manpage of NFS.