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
0
votes
1 answer

Remove filesystem with overlay changed bytes

I develop a software that uses a set of big files. I cannot download all them. I need to reproduce timeout error that cannot be reproduce otherwise. There are stage host. I mounted its remote folder with sshfs but I cannot launch local server…
Daniil Iaitskov
  • 5,525
  • 8
  • 39
  • 49
0
votes
1 answer

copy file to a vagrant remote environment

I'm worknig on a remote codebase via vagrant development environment and I use sshfs for mounting the remote point on my localhost as below: sshfs hostname:vagrant_remotemountpoint mountpoint To copy a file to the vagrant vagrant_remotemountpoint…
tokhi
  • 21,044
  • 23
  • 95
  • 105
0
votes
1 answer

Best way to check the status of a SSHFS mount via php?

We have a few sshfs based mounts. We also use pingdom to monitor our service. We would like to create a custom pingdom handler (php based, accessed via our webserver) to test the status of these mounts. What is the best way to test the status of…
anonymous-one
  • 14,454
  • 18
  • 60
  • 84
-1
votes
1 answer

Autocreate folder for sshfs mount without root permissions

I'd like to be able access files from a server using sshfs. For this, sshfs needs a folder as a mount point. When I insert a usb drive and open it via my file manager (thunar), a folder in /run/media/$USER is automatically created without me…
GitProphet
  • 870
  • 1
  • 12
  • 22
-1
votes
1 answer

Using sshfs on Windows with system that required Kerberos authentication

So I was following this tutorial to map a remote system as a network drive using sshfs. The issue is the remote system requires Kerberos authentication. So typically I have to do kinit before doing ssh user@remote but doing so before connecting…
jaduuuui
  • 101
  • 11
-1
votes
1 answer

Raspberry ISO mount via sshfs fails

I hope someone can help me with my problem. Background: I want to mount very big ISOs to my raspberry via sftp. If I try to mount the iso from a local folder, for example Downloads\2005-2010.iso it works perfect. But if I try to mount the ISO from a…
Seb
  • 3
  • 2
-1
votes
1 answer

SSHFS works on command line but not within fstab

I am trying to connect two servers with SSHFS. As root, when launching the command sshfs myuser@ip_adress:/some/dir /other/dir -o idmap=user,identityfile=/home/myuser/.ssh/id_rsa, everything works. However, when I set this SSHFS configuration in…
clementescolano
  • 485
  • 5
  • 15
-1
votes
1 answer

Rsnapshot filepermission problem with network hdd over raspberry pi

After trying to solve this for days, I want to ask for help here: I want to make backups with rsnapshot, which usually runs on a server and manages local backups. In my case, I want to run rsnapshot on my computer and let rsnapshot manage my backups…
franktank
  • 11
  • 1
  • 6
-1
votes
1 answer

SSH-FS to remote server on another SSH remote server

So, there exists the first SSH server, called A for simplicity, and the files and workspace I want to get to are on another SSH server, called B. Problem is, B is only accessible by SSH'ing to it from A. So if I were to do this normally, I'd ssh…
unhappycat
  • 406
  • 1
  • 4
  • 16
-1
votes
1 answer

How can I mount Raspberry with Mac

I got my new raspberry pi, finished the setup, gave it static ip, and was able to ssh it from my Mac using: ssh pi@192.168.1.43 Then I installed both Fuse and SSHFS from here, then read this and this and this and did the below in my Mac: Last…
Hasan A Yousef
  • 22,789
  • 24
  • 132
  • 203
-1
votes
1 answer

sshfs -o follow_symlinks mounts with broken softlinks

Up until a day ago I was perfectly able to mount a drive via sshfs with the follow_symlinks option given. In fact I set up an alias for this command and used it for several weeks. Since yesterday, using the same alias the volume still mounts…
gogoLama
  • 1
  • 5
-1
votes
1 answer

Node js watch files in mounted folder

Hello I'm using a node JS server that is watching file changes from mounted folder but it doesn't detect the changes because the files should be a local files. Can anybody ask me a solution because I should do it like this onde node js who detects…
-1
votes
1 answer

MySQL Adding external space for storage tables

I would like to add more freespace to storage mysql tables. I have tried use symbolic links with curlftpfs/sshfs (first create table, then move to ftp and add ln -s) but mysql gives me error "Operating system error number 95 in a file operation."…
-1
votes
1 answer

Macos SSHFS produce broken mountpoint

broken mount point, as it seens in mc I'm trying to mount my work servers to local folder. "sudo sshfs webuser@rgslb.com:/var/www/webuser/data/www /Volumes/rgslb.com" It asks me password and silently proceed. But as result I have broken file, in mc…
-1
votes
1 answer

failed to mount a network drive to vbox using sshfs

Tried to use sshfs to map a network drive to vbox started by vagrant. I cooked up the following command but it failed. Any idea why? The OS running in vbox is FC20. I can ssh into it fine. $ sshfs -p 2222 -o Compression=yes -o…
packetie
  • 4,839
  • 8
  • 37
  • 72
1 2 3
17
18