14

I need to mount other server via sshfs with read-only mode. My OS is Linux (Ubuntu). Is it possible to do that?

My command used with that connection is:

sudo sshfs user@123.123.123.123:/home/user /media/mountpoint/ -o allow_other

After running that I have write-access. I need to have read-only. Please help.

quardas
  • 651
  • 3
  • 10
  • 23

1 Answers1

27

just add one more option: sshfs user@123.123.123.123:/home/user /media/mountpoint/ -o allow_other -o ro . this should help: http://ubuntuforums.org/showthread.php?t=975107

sotona
  • 1,731
  • 2
  • 24
  • 34