I've read all the postings here and elsewhere but try as I might, I cannot seem to get my NAS drive to mount! I can access it through the file manager but I am trying to create a symbolic link to it (if that's the correct term), which I understand is done from the command line with:
sudo mount -t cifs //192.168.0.75 /mnt/NetworkData -o guest,rw,uid=1000,gid=1000,iocharset=utf8,file_mode=0777,dir_mode=0777
... or in /etc/fstab with:
//192.168.0.75 /mnt/NetworkData cifs guest,rw,uid=1000,gid=1000,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
These are both from the D-Link site but both give mount error(22): Invalid argument.
Also although not too important, the actual folder on the NAS is Volume_1 which is where it should mount but when I add it, it gives an error mount error(2): No such file or directory.
I'm running Ubuntu 19.10 so what do I need to do? Getting it to mount in the command line is fine and a good place to start but I would prefer to remount whenever the system is rebooted.