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
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
  • 8,355
  • 13
  • 58
  • 71
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
  • 27,151
  • 72
  • 200
  • 340
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
  • 11,931
  • 41
  • 133
  • 272
5
votes
2 answers

Mounting a remote file system (sshfs) through an intermediate machine

The situation: I am working from machine1, where I have root access. From machine1 I can access machine2 (where I am a user with no privileges) through ssh. machine3 (also user with no privileges) is not directly accessible from machine1. I need to…
Miguel
  • 7,497
  • 2
  • 27
  • 46
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
  • 12,605
  • 4
  • 21
  • 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
  • 5,145
  • 5
  • 38
  • 45
5
votes
2 answers

Mount a remote file system using SSHFS

Ok, the setup is a bit convoluted. Don't blame me, I'm not the sysadmin. Here's the situation. There is one machine that I can SSH into from outside the network. I can only remote in as root (yes, you heard right) using my private key. I know that…
Jonathan Hawkes
  • 953
  • 2
  • 12
  • 24
4
votes
2 answers

Sshfs, Textmate & Rails project, very slow

I am a Linux user and I recently bought a MAC. I work on a big project that needs to run on a dedicated server. With Gedit and SSHFS, I had no problem to load the Rails project, same when I create a new controller/model from the command line,…
tree
  • 75
  • 7
4
votes
2 answers

bash check if user mount fails

I'm writing a script to transfer some files over sftp. I wanted do the transfer as a local transfer by mounting the directory with sshfs because it makes creating the required directory structure much easier. The problem I'm having is I'm unsure…
Stephan
  • 5,430
  • 2
  • 23
  • 31
4
votes
1 answer

Python Debug not working on SSH FS (remote host)

Issue: I am using VSCode version 1.69.1 on Mac (Version details at the bottom). From Mac, I connect to a remote repo using SSH FS When I click on 'run' > 'Start Debugging' or 'Run Without Debugging' on a remote python file, the "Run and Debug pane…
4
votes
1 answer

Can't write to a file with sshfs

I'm trying to mount a directory from a remote machine to my laptop. Here is the command. sshfs user01:/home/user01/somedir /home/user02/mount -o allow_other -o rw When I try to write a file, I get: E212: Can't open file for writing Here are the…
BioRod
  • 529
  • 1
  • 5
  • 19
4
votes
2 answers

git push over sshfs failing with "error when closing sha1 file: Bad file descriptor"

We are mounting a filesystem over SSH using sshfs and are using it as a remote storage for git repository collaboration. Mac OSX 10.6.6 to a RHEL 3 server SSHFS version 2.2 (MacFUSE SSHFS 2.2.0) MacFUSE library version: FUSE 2.7.3 / MacFUSE…
John Kary
  • 6,703
  • 1
  • 24
  • 24
4
votes
1 answer

Permanent mount volume via sshfs Sierra

I am trying to permanently mount a volume via sshfs on mac. I have tried to follow the instructions in how-to-get-automount-and-sshfs-osxfuse-working-with-yosemite (Although I have Sierra, I couldn't find instructions for it so I thought to give it…
Bob
  • 49
  • 2
4
votes
3 answers

After mounting using sshfs I cannot commit my changes using subversion

local machine: Fedora 13 Subversion: 1.6.9 remote machine: CentSO 5.3 subversion 1.4.2 I have a project which is on the remote machine: remote@x.x.x.x:projects/ssd1 I have mounted this on my local machine: sshfs…
ant2009
  • 27,094
  • 154
  • 411
  • 609
1 2
3
17 18