46

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.

1
  • 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. Commented Mar 19, 2023 at 11:34

1 Answer 1

95

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

3
  • 28
    This must be the most confusing error ever.
    – Mehdi
    Commented Aug 20, 2020 at 8:33
  • 2
    This is also the correct solution for debian linux. Commented Apr 2, 2021 at 19:18
  • 3
    Same worked for Ubuntu 22.04 LTS Commented Mar 19, 2023 at 11:32

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .