66

I am trying to mount directory located on local network. I am using :

mount -t cifs -o username=user //192.168.0.106/shared /home/user/point

And I get following error :

mount: /home/user/point: cannot mount //192.168.0.106/shared read-only.

It is shared via Samba. Thanks for any answers.

Braiam
  • 69,302
John Ronald
  • 2,526
  • 1
    For Ubuntu 22.04 LTS, use as mount -t cifs -o vers=3.0,domain=WORKGROUP,username=user //192.168.0.106/shared /home/user/point. – Amil Waduwawara Mar 19 '23 at 11:34

1 Answers1

134

Solved. I just had to install cifs-utils package.

John Ronald
  • 2,526