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.

258 questions
9
votes
1 answer

IntelliJ file synchronize takes forever on SSHFS

I do all my development on a Mac, and my files are on a remote Linux server. I use SSHFS to access the files. When I am using IntelliJ on a local project, I don't even notice the file synchronization, most likely because it can access the files very…
jchitel
  • 2,999
  • 4
  • 36
  • 49
7
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
  • 727
  • 5
  • 18
7
votes
3 answers

macFUSE giving mount_macfuse: mount point ... is itself on a macFUSE volume - Apple M1 macOS 12.3

This issue is driving me crazy. I keep getting an error: "macFUSE giving mount_macfuse: mount point ... is itself on a macFUSE volume " where ... is my mount point when i run sshfs --version i clearly dont have the correct FUSE version coming up,…
7
votes
2 answers

Docker container's sshfs mount freezes, but only when mounted by Python

I have a development laptop (Mint 19.3), and a test server (Ubuntu 18.04.4 LTS). The laptop is Docker version 19.03.5, build 633a0ea838, the server is Docker version 19.03.12, build 48a66213fe I'm running Python 3.6 code inside the container, which…
RightmireM
  • 2,381
  • 2
  • 24
  • 42
6
votes
1 answer

Docker mounting remote volume with sshfs

I know that this question has been done on the web, but I am not able to find a suitable solution for me. I have one server (VM1) with sshfs installed that should provide remote file system storage. I have another server (VM2) where containers are…
Christian Sicari
  • 121
  • 2
  • 13
6
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
  • 83
  • 2
  • 6
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
  • 426
  • 1
  • 4
  • 12
6
votes
1 answer

Using zsh's compdef or compctl to complete a certain directory with _hosts for all commands

I use afuse to automount other hosts to my local file system with sshfs. Like so: afuse -o timeout=30 -o mount_template=sshfs -C %r:/ %m -o unmount_template=fusermount -u -z %m ~/remote/ This works great, but I would like to be able to…
Gurgeh
  • 2,130
  • 15
  • 28
6
votes
1 answer

will sshfs use my .ssh/config?

I have some options in my ~/.ssh/config: Host * Ciphers arcfour,blowfish-cbc These options are intended to speed up transfers. Will sshfs use these options when I do a mount?
nbecker
  • 1,645
  • 5
  • 17
  • 23
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
  • 890
  • 1
  • 9
  • 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,799
  • 1
  • 23
  • 27
5
votes
1 answer

docker vieux/sshfs permission denied

I use vieux/sshfs to create a volume docker plugin install --grant-all-permissions vieux/sshfs docker volume create -d vieux/sshfs -o sshcmd=usfo@192.168.1.1:/swarm-study/web/data -o password='123' sshvolume I create a user on container…
USFO
  • 81
  • 1
  • 6
5
votes
1 answer

Mounting SSHFS for local folder on Mac OS X to edit files on Ubuntu AWS instance

I want to be able to edit files locally using a nice IDE and have the files on my local machine (~/Code/myproject) get immediately pushed to the Ubuntu machine in the cloud (/home/ubuntu/myproject). I installed FUSE and SSHFS for my Mac OS X…
lollercoaster
  • 15,969
  • 35
  • 115
  • 173
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,689
  • 4
  • 20
  • 29
1
2
3
17 18