Questions tagged [sshfs]

SSHFS (Secure Shell File System) is a file system client to mount and interact with directories and files located on a remote server or workstation. The client interacts with the remote file system via the SSH File Transfer Protocol (SFTP), a network protocol providing file access, file transfer, and file management functionality over any reliable data stream that was designed as an extension of the Secure Shell protocol (SSH) version 2.0.

SSHFS (Secure Shell File System) is a file system for Linux (and other operating systems with a FUSE implementation, such as Mac OS X or FreeBSD) capable of operating on files on a remote computer using just a secure shell login on the remote computer. On the local computer where the SSHFS is mounted, the implementation makes use of the FUSE (Filesystem in Userspace) kernel module. The practical effect of this is that the end user can seamlessly interact with remote files being securely served over SSH just as if they were local files on his/her computer. On the remote computer the SFTP subsystem of SSH is used.

Windows implementations, such as win-sshfs, are often built around Dokan, a user mode file system for windows.

232 questions
6
votes
1 answer

emacs gives warning when trying to save files over sshfs

I mount an sshfs file system with % sshfs remote.host.org:/home/jrm /home/mnt/remote.host then edit a file under this file system with % emacsclient -n /home/mnt/remote.host/some_file.c. When I save the file I get the warning some_file.c has…
jrm
  • 717
  • 5
  • 18
6
votes
1 answer

Is there any way to improve sshfs speed on amazon aws?

My ping to the AWS instance is on the level of 50ms and cat'ing files through the ssh takes way less than second, but when I mount directory using sshfs and open it using SublimeText3/Gedit lags are greater than 10 seconds. 1. Is there anything I…
6
votes
1 answer

SSHFS through multiple connections

I have to occasionally work remotely. In order to do so, I have to connect to a gateway server, through which I can then connect to the development server. At work I can connect directly to the dev server. I use SSHFS to map the remote folder to…
Jonathon
  • 286
  • 1
  • 3
  • 12
5
votes
1 answer

automount w/ sshfs on macOS catalina

I am trying to setup automount of SSH endpoints using automount and sshfs on macOS Catalina. However, it is not working and I am not sure why. /etc/auto_master +auto_master # Use directory service #/net -hosts …
Vivek Rai
  • 862
  • 1
  • 8
  • 22
5
votes
1 answer

Ssh(sftp) with certificate via Nautilus in Ubuntu 10.10

Before I connected to my server via Nautilus (sftp). Now I moved to Amazon EC2, and there's just one way connect to server (ubuntu 10.10 too), using ssh -i mycert.pem, no password, just certificate. How can I connect to the server using Nautilus,…
Valentin Kantor
  • 1,543
  • 1
  • 21
  • 26
5
votes
1 answer

VSCode remote Python virtual environment

Here is how the thing doesn't work: The project source code is located on a remote machine. The Python virtual environment is installed in the project's root directory (using venv). I sshfs the project folder and start local VSCode. It detects the…
5
votes
0 answers

osxfuse and sshfs on mac sierra. Error - mount_osxfuse: the file system is not available (255)

So this seems to have been discussed on stackoverflow but still it doesn't solve my problem and hence here is the question: 1. Logged into mac NOT as a root user. But I do have administrative privileges. 2. Installed Fuse for macos (3.7.1)…
Singo
  • 63
  • 2
  • 6
5
votes
3 answers

Unable to mount a directory on Google Compute Engine using sshfs

I am trying to mount a remote filesystem on Google Container Engine. I am following this tutorial: https://www.digitalocean.com/community/tutorials/how-to-use-sshfs-to-mount-remote-file-systems-over-ssh Using following sshfs command: sudo sshfs -o…
Ajax
  • 1,438
  • 3
  • 17
  • 26
5
votes
1 answer

sshfs, linux - how to mount with read-only access

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…
quardas
  • 553
  • 2
  • 9
  • 19
5
votes
1 answer

How can I use sshfs to mount a remote drive (BeagleBone) on my Mac?

Why can't I connect to my BeagleBone using sshfs from my mac? I can ssh to this ip address just fine. Do I need to somehow create a special mount point? What does it mean that the socket is not connected? sudo sshfs root@192.168.7.1:…
user391339
  • 6,908
  • 9
  • 46
  • 67
5
votes
2 answers

sshfs - device not found

After updating the server with apt-get update && apt-get upgrade this command return an error OS Debian 3.2.60-1+deb7u3 x86_64 (wheezy) command echo "the-password" | sshfs root@domain.com:/var/www /remote_mount -o password_stdin error fuse: device…
clarkk
  • 24,753
  • 63
  • 173
  • 296
5
votes
1 answer

Why does directory vanish when I do SSHFS? How to setup SSHFS share on Max OSX 10.9?

I'm running Max OSX 10.9.3 and I'm trying to setup an SSHFS file-share between my MacBook Pro and a remote file system. However, when I try to do it, it doesn't work. Strangely enough, it makes the target directory disappear. Has anyone else seen…
Saqib Ali
  • 9,138
  • 28
  • 99
  • 216
5
votes
1 answer

How stable is dokan sshfs?

People have reported BSOD on windows 7 (64bit) http://dokan-dev.net/en/2009/04/06/the-next-release-of-dokan-library/. For some reason unknown to me, my explorer on winxp sp3 (32bit) gets shaky and at time freezes if I do lots of browsing via doken…
volatilevoid
  • 11,255
  • 4
  • 19
  • 16
5
votes
4 answers

dokan sshfs for windows

I read an article here about dokan sshfs for windows. I want to ask if you know similar software (free or not) in order to access windows partitions from windows. Samba is a always an answer, however I am seeking for something more secure.
cateof
  • 59
  • 1
  • 1
  • 2
5
votes
2 answers

fuse4x sshfs on macosx execution error

I'm using sshfs on macosx 10.7 in my every day job. To install sshfs I have used macport: "port install fuse4x sshfs". The todays error: $ sshfs user@domain.com:/path myfolder fuse4x client library version is incompatible with the kernel extension…
toutpt
  • 4,915
  • 3
  • 33
  • 44
1
2
3
15 16