I have two partitions, one running K18.04 and the other has a fresh install of K20.04
With 18.04 the following code mounts the nas device:-
With 20.04 I get this error message:-
Before trying the mount, I did the following:-
sudo mkdir /media/mycloud
sudo chmod 755 /media/mycloud
sudo apt-get update
sudo apt-get install cifs-utils
Maybe I missed something, any help would be welcomed.
With 18.04 the following code mounts the nas device:-
Code:
sudo mount -t cifs -o ,dir_mode=0755,file_mode=0644,rw,soft //192.168.1.109/Public /media/mycloud
Code:
mount error(2): No such file or directory Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)
sudo mkdir /media/mycloud
sudo chmod 755 /media/mycloud
sudo apt-get update
sudo apt-get install cifs-utils
Maybe I missed something, any help would be welcomed.
Comment