jump to navigation

How to mount a remote ssh filesystem using sshfs October 28, 2005

Posted by Carthik in ubuntu.
trackback

SSH is protocol to transfer files securely. Like FTP, but more secure. Many hosting services offer their client the ability to remotely login to their hosting account using ssh. Transferring files to an from an ssh account can be done using the scp command. However, it would be neat if you could mount a remote folder that you can access using ssh on your local computer, so that you can access files on an ssh account just like they were local files on your pc, right? Well now you can! Mount a folder in an ssh account, edit the files locally and save the files, and the file on the ssh server changes too! Isn’t it awesome!!!

We will use sshfs to acheive our goal. The following guide will step you through the process of mouting file systems over ssh on Ubuntu 5.10 Breezy systems.

sshfs:
       sshfs  is  a filesystem client based on the SSH File Transfer Protocol.
       Since most SSH servers already support this protocol it is very easy to
       set  up:  i.e. on the server side there’s nothing to do.  On the client
       side mounting the filesystem is as easy as logging into the server with
       ssh.

Install sshfs by doing a:
$sudo apt-get install sshfs

This will also install fuse-utils and libfuse2, which are required.

Now, let us create a local directory where you want the files mounted. You should create the directory and make yourseld the owner of the directory:

$sudo mkdir /media/dir-name
$sudo chown your-username /media/dir-name

Where “dir-name” is the name of the directory on your local computer where you want to access the files from the remote computer. Say I want the files on the server to be available at /media/home-pc. I want this because the “server” in this case is the desktop I have at home, which allows me to access it through ssh. Let us use “home-pc” as an example for this guide. “your-username” is your username on the local computer.

Go to System->Administration->Users and Groups, select the group “fuse” and then add yourself to this group.

If you prefer to do it the easy way, on the commandline, then use
$sudo adduser your-username fuse

I don’t want to provide a terminal command for adding yourself to a group since there doesn’t seem to be an easy way to add yourself or any user to a group. The only command I know of is the usermod -G command and for this command, you need to list all the groups the user should belong too, even the ones that he/she is already a member of! Anyone know any better on how to add a user to a new group, without having to know what groups he/she is already a member of?
Thanks Shot.

For security reasons, the /usr/bin/fusermount binary is installed in such a way that users cannot execute it. You will have to log out and log in again, to add yourself to the group “fuse”.

Once you have done the above, you can use sshfs to mount the directory you need on the remote host to your local system!

For example, say I want to mount the “/stuff” directory on my home-run server, which has the domain name “example.com”. I would do it by executing the following command:
$sshfs example.com:/stuff /media/home-pc

Where “/stuff” is the folder on the computer with the domain name “example.com”, which I want to mount and access on my local computer at the location /media/home-pc. Remember that the /media/home-pc directory must exist and be owned by you, the user. I already mentioned how to do this in the initial part of this guide.

If you get the following error:

fusermount: fuse device not found, try ‘modprobe fuse’ first

You will have to load the fuse module by doing:
$sudo modprobe fuse

You can add fuse to the modules that are loaded on startup by editing the file /etc/modules and adding a line with only the word “fuse” in it, at the end.

and then issue the sshfs command above again.

To unmount the directory once your work is done, use the command:
$fusermount -u

for example, in my case, I would use
$fusermount -u /media/home-pc

Hat tip: Jorge
More Info: SSH filesystem

Comments»

1. Mammal » sshfs - October 28, 2005

[…] Niedawno zacząłem korzystać z dobrodziejstw sshf, a dziś wpadłem na opis krok po kroku tego wynalazku. Wygodne, szczególnie że nie ma jakiegoś fajnego graficznego klienta, żeby wygodnie korzystać z FTP po SSH – nie, gFTP nie jest wygodny. […]

2. Shot - October 28, 2005

“I don’t want to provide a terminal command for adding yourself to a group since there doesn’t seem to be an easy way to add yourself or any user to a group.?

adduser user group

🙂

3. ubuntonista - October 28, 2005

Ah! adduser — the debian way!! Sorry I overlooked that one. To be honest it did not cross my mind at all!

Thank you, thank you!

4. Donncha - October 29, 2005

Very, very nice idea! I’ll be trying this during the week!

5. Holy Shmoly! :: How to mount a remote ssh filesystem using sshfs - October 30, 2005

[…] I had never heard of sshfs, but here’s a quick tutorial on getting it working. Looks very useful! Related Stories (how, mount, remote, ssh, filesystem, using, sshfs) […]

6. yanis - October 30, 2005

Unfortunately I cant find sshfs using apt-get in my Ubuntu 5.04. I have added all the sources I had found in ubuntuguide.org..

7. Mount via SSH at sil’s babbling - October 30, 2005

[…] Ubuntu Blog has one of the most useful tips yet: How to mount a remote filesystem using SSH. […]

8. ubuntonista - October 30, 2005

Yanis,

Try http://packages.ubuntu.com/sshfs to see if the package exists in the Ubuntu repos.

I find that it is available only for Breezy. You may not have upgraded to Breezy, which is why you can’t see it yet.

9. Donncha - October 30, 2005

Argh! I’m running Hoary as well. Looks like I’ll be using scp for a little longer!

10. ubuntonista - October 30, 2005

Donncha,

Glad to know you use Ubuntu! Well, upgrading to breezy shouldn’t take too long 😉

11. Anthony - November 4, 2005

This is great! Does anyone know if this can work on a Mac with OS 10.4.3?

Fink nor DarwinPorts have this in the ports yet. 😦

Any tips and/or suggestions would be appreciated!

12. Shot - November 5, 2005

Finally got to play with this, it’s great!

One more comment: “For some reason, the /usr/bin/fusermount binary is installed in such a way that users cannot execute it.?

This is, I believe, by design. The default permissions of /usr/bin/fusermount are
-rwsr-xr– root fuse
wchich mean executable by the fuse group, suiding root.

Did you log out and back in after adding yourself to the fuse group? I did, and I didn’t have to chmod the file. 🙂

The idea to restrict the access to fusermount is a good one; think of all the pseudo-users who can use fusermount if you chmod the file (man, lp, www-data, nobody, dhcp, syslog, cupsys, countless others).

Tip: To check whether you’ve actually added yourself to a group or still need a reboot, use the groups command. 🙂

13. Sander van de Graaf » sshfs howto - November 5, 2005

[…] November 5th, 2005 sshfs rocks! I don’t know if you have ever played with fuse (gmail drive, anyone?), but there’s something new for fuse, and it’s way cool. Jochem pointed me here, so credits go to him sshfs is like nfs on steroids, and even better. No hassle with dark firewall settings and unsecure connections, now you can safely mount a remote filesystem, and it is transported over a ssh connection! And best of all; there’s nothing to be changed on the server-side (ok, it should support the ssh2 protocol, but anyone who doesn’t: shame on you), and you can access your mountpoint the same way as any other mountpoint, how cool is that, so CVS commits, chmod’s, cd’s, mv’s, it’s all in the game… Go check it out, because it’s really, really cool! […]

14. Steven's Life - November 5, 2005

SSHFS – Just what I needed

Oh man, talk about good timing. I’m back home in Toronto, and I’m using my desktop once again which has Ubuntu Linux installed. I have a μC++ assignment due on Monday, so I’ll be programming all weekend.

The problem is… μC++….

15. Steven’s Life » Blog Archive » SSHFS - Just what I needed - November 5, 2005

[…] Source: Ubuntu Blog […]

16. ubuntonista - November 7, 2005

Shot,

Good point there! Thanks again.

17. anjanb - November 8, 2005

Hi There,

It will be nice to have a windows port — that will get the biggest userBase for sshfs. This way, I can use mc(Midnight Commander) to access my multiple Linux Clusters.

BTW, does it allow me to have multiple mountPoints ?

Thank you,

BR,
~A

18. ubuntonista - November 9, 2005

anjanb,

Yes, you can have multiple mount points — no problems there.

I am not sure what you mean by windows port, but I am sure that with cygwin, there might be someway of using this… unless since it needs the FUSE kernel module, it is impossible to get something like this working in Windows.

That said, I find Linux has far more to offer — much more diverse solutions, and the right tools for the job, for most jobs.

19. women - November 14, 2005

nice idea, thanks!

20. Joe - November 24, 2005

This would be so sweet to connect to my work server. When I tried it, though, I got the ‘try modprobe fuse first’ message, and when I tried ‘modprobe fuse’, I got this message:

FATAL: Error inserting fuse (/lib/modules/2.6.12-9-386/kernel/fs/fuse/fuse.ko): Operation not permitted

I must warn you, I am a complete Linux noob, but do you have any idea what the problem is/ how I could solve it? Thanks!

21. Joe - November 24, 2005

Nevermind, I realized I’d just forgotten to add the ‘superuser do’ before ‘modprobe fuse’… d’oh! LIke I said, total noob… it’s working now, and how! Thanks for the great tip!

22. Joe - November 29, 2005

Hiya, I have another problem.

I’ve got the remote server mounted using sshfs, but when I use the file browser in ubuntu, I can’t create folders or copy files to it. Getting stuff from it is fine, but whenever I try to copy a file TO the remote destination, I get a message telling me I don’t have enough space. I’m also unable to delete files or create new files.

I’m guessing this is a permission problem – my local user is ‘joe’ and the remote user is ‘root’. Is there any way (other than 777 permissions) to get this working? Would setting up a ‘joe’ user on the remote machine give local ‘joe’ the needed permission?

23. SpaceBoy Rocks! » personalized my ubuntu working environs - December 17, 2005

[…] Finally, … finally get all the mount drives with sshfs. very rock solid and high security. […]

24. Samokk is a Geek » FUSE is the future - January 25, 2006

[…] That’s why FUSE has been invented. This post describes how to mount, for example, a ssh directory using FUSE. […]

25. Andrea - February 7, 2006

Is it possible to mount using sshfs during login (e.g. adding a row in fstab?)?
Thx

26. attic » How to mount a remote ssh filesystem using sshfs - February 9, 2006

[…] Ubuntu blog has neat article about how to mount filesystem using sshfs. To my mind this is quite useful feature. You could mount remote file system and for example write to it some kind of sensitive information and in case of robbery you won’t lose your data, because it wasn’t actually there. […]

27. Kalle Hahl - February 13, 2006

Im running WinSSHD v4.12 on Windows computer and Im trying to mount those shares.

Information on WinSSHD features can be found from here: http://www.bitvise.com/winsshd.html

Everything is fine, util I type following command:

sshfs @: /media/c

@’s password:

server version: 2, we need: 3

So something, some service, is ‘too old’ on WinSSHD or something like this.

Any suggestions?

28. Kalle "Pride" Hahl - February 13, 2006

Found a solution.

I uninstalled WinSSHD and installed Cygwin ( http://www.cygwin.com )

You can find a great tutorial for installing Open SSH on Cygwin from -> http://pigtail.net/LRP/printsrv/cygwin-sshd.html

29. Pride - February 13, 2006

I still have a problem.

On my Windows computer I’ve folder called MISC that is shared. MISC-folder is located on drive C:

Everyone has read rights to this folder.
\ has full control to this folder.

On my linux machine, typing:

sshfs @192.168.0.2:/MISC /media/c

Reports following: fusermount: failed to access mountpoint /media/c: No such file or directory.

Heeeelp! 😀

30. Pride - February 14, 2006

Freaky. This doesnt suppor different kind of bracelets…

user\computer = \
user@ip:/MISC

31. Marc Abramowitz » FUSE/sshfs - February 21, 2006

[…] Tip of the hat to Ubuntonista and of course Miklos Szeredi. […]

32. Anonymous Coward - March 7, 2006

Hi Ubuntonista — this how-to here may be of interest to you too:

https://wiki.ubuntu.com/CheapSecureEncryptedRemoteVolumeHowTo

33. Matthew McEachen - March 16, 2006

Thanks for the heads-up on fuse and sshfs!

FWIW, you should really remove this line from your howto:
sudo chmod +x /usr/bin/fusermount
You’re opening a security hole there.

When your UID is added to a new group, you need to either log out and log back in, or you need to run “newgrp fuse”.

You should try to keep world-executable SUID binaries on your box to an absolute minimum. If there’s a security problem with that binary, you’ll be immediately rootable (at least locally).

34. Nuno Morgadinho: Daily Ventures » Blog Archive » How to mount a remote ssh filesystem using sshfs - March 16, 2006

[…] How to mount a remote ssh filesystem using sshfs […]

35. Joe2 - March 17, 2006

I’ve got the same question as my namesake above (reply #22): it doesn’t allow me to copy/move/rename files in the same way that I can with local files or, for example, as I can when I do the “Connect to Server” function in Nautilus. Nautilus tells me I can’t change these files because I don’t own them (maybe because the UID on the remote computer is not the same).

So for now I’m mounting using sshfs to mount and read files and a standard ssh connection to write them. This seems unnecessary, so I’d like to hear what I’m doing wrong.

36. Matt - March 25, 2006

I get the same problem as joe and joe2 above…can browse, but no write access… any ideas?

37. Matt - March 25, 2006

It’s only nautilus that seems to have a problem though. I can do things from a terminal and if i open a file in a txt editor it seems to be able to save it back ok. Just no drag and drop file management 😦

38. ubuntonista - March 26, 2006

Matthew, Shot, I have now edited the instructions to suggest logging out and logging in again to be able to mount the sshfs directory.

Matt, Joe2 and Joe,

I beleive those are nautilus problems. I used to get (and still do get) errors like “There is no space” to copy something, when there is 50+ GB of free space on the remote dir!

Use command line mv, cp etc to move files in, or use Konqueror if you dont mind using that 🙂

39. PDemong - March 27, 2006

well it’s a shame…
I know a way with Kubuntu, konqueror and the fish protocole : it’s possible to browse through an ssh connexion, and permissions are respected. But I ‘d prefer to keep Nautilus and Ubuntu. I really dont want to switch on KDE.

40. Stan - April 25, 2006

Got it set up and it works, but I can’t to a ‘mv file1 file2’ in the terminal for some reason. I had to delete file2 and then move file1 to the new name.

41. pram - May 2, 2006

how to mount remote folder? for examples: mount 192.168.0.197:/dev /mnt/dev ? this command error…error message is Permision Deni

42. jedie - May 4, 2006

I can mount my SSH-Server, but i can’t access to the mountpoint.

Here the debug output:
_______________________________________________________
Server version: 3
unique: 1, opcode: INIT (26), nodeid: 0, insize: 48
INIT: 7.3
INIT: 7.2
unique: 1, error: 0 (Success), outsize: 24
unique: 2, opcode: STATFS (17), nodeid: 0, insize: 40
unique: 2, error: 0 (Success), outsize: 64
unique: 3, opcode: STATFS (17), nodeid: 0, insize: 40
unique: 3, error: 0 (Success), outsize: 64
unique: 4, opcode: STATFS (17), nodeid: 0, insize: 40
unique: 4, error: 0 (Success), outsize: 64
unique: 5, opcode: STATFS (17), nodeid: 0, insize: 40
unique: 5, error: 0 (Success), outsize: 64
_______________________________________________________

What can i do?

btw. i have make a small Python menu tool:
https://opensvn.csie.org/traccgi/PyLucid/trac.cgi/browser/CodeSnippets/fuseSSHfs

43. Richard Sonnenfeld - May 9, 2006

Lieber Jedie– Ich habe deine CodeSnippets gesehen. Sehr nett!
Vielen dank.

Dear Jedie — I saw the CodeSnippets on your server that put a menu interface on sshfs. Very nice.
Thanks a lot. (German is not my first language!).

44. El - May 11, 2006

Firstly sshfs is cool and thanks for the helpful article.

This is off topic I fear but perhaps someone can help …

Anyone familiar with GNUCash? I was hoping that sshfs would allow me to stick my account files on a server so I could access them from whatever machine Im on, but I am getting this when I open the account:

“WARNING!!! GnuCash could not obtain lock for /xxxxxx/Accounts. That database may be on a read-only file system, or you may not have write permission for the directory. …”. It then warns that I *may* not be able to save changes.

This is not the case of course. I can write to that directory/those files (when opened with fish protocol or when I browse to the sshfs mount point). Incidently, an Accounts.LCK file is created if I press the button to open anyway … But when I click save, the Accounts file is replaced with the temporary file .fuse_hiddenxxxxxxxxxxx which promptly disappears leaving me with no data whatever.

Any thoughts? Thanks.

45. bob - May 12, 2006

I am mounting the folder “filecopy” in the directory I created at my server with domain “CCT-MIS” I want to mount the filecopy folder, I
use this code:

sshfs CCT-MIS:/filecopy /home/bong-pc then I got this error,

sshfs: CCT-MIS: name or service not known

what will I do ? please help

46. bob - May 12, 2006

I am mounting the folder “filecopy” in the directory I created at my server with domain “CCT-MIS” I want to mount the filecopy folder, I
use this code:

sshfs CCT-MIS:/filecopy /home/bong-pc then I got this error,

sshfs: CCT-MIS: name or service not known

what will I do ? please help

47. edward Mann - May 30, 2006

To mount sshfs so that nautilus can write to the folders just mount like this.

sshfs -o uid=500,gid=500 me@myserver:/home/me /local/mount

That should do it. You will need to cange the uid and gid to your uid.
To get your uid and gid just type in the following.
id -u
id -g
That will give you the values that you should use.

I hope this helps

48. Ben’s Computer Weblog»Blog Archive » Mount SSH Connection as Drive - June 19, 2006

[…] Here is yet another beautiful thing that linux lets you do – mount a ssh connection as a drive or folder like nfs. A tutorial is available on Ubuntu Blog. • • • […]

49. Quick N Dirty Fix - July 6, 2006

sshfs, fuse, mounting remote dir’s via ssh

sshfs / fuse is as cool as it gets, hopefully I’ll be able to replace nfs with it, it would resolve a lot of security issues. Anyhow here’s a like to a Ubuntu centric article explaining the process.

50. Mik - July 11, 2006

Very helpful! I must say this is the best alternative so far. A tip: it’s very important to set the local directory permissions to your own account or you’ll get a permission denied error.

NIcely done, dude! Thanks.

51. Nacho.[eXr] - August 4, 2006

Alternative to add an user to a group:

usermod -G new_group -a user

-a: append the group to the current user’s group list.

52. David’s Blog » Ubuntu Blog » How to mount a remote ssh filesystem using sshfs - August 12, 2006

[…] Ubuntu Blog » How to mount a remote ssh filesystem using sshfs   […]

53. michael depetrillo - August 27, 2006

For some reason the Zend Development Environment can’t open/read files from a sshfs mount. Not sure if this is a Java problem or ZDE specific. Anyone run into sort of issue? I can read and write files fine from nautilus/gedit.

54. Pavan - September 9, 2006

Hi,

This is awesome! I loved it. I have a question, doesn’t it use the rsa key pair in the .ssh directory? I setup all my machines so that i can login without a password, so I guess sshfs should not be asking me for a password right?

Thanks
Pavan

55. Pavan - September 9, 2006

The problem is that it is asking for the password. Sorry forgot to mention!

56. Porges - September 26, 2006

What’s the best way to cache a password?

57. Cliff - October 3, 2006

I can’t get it to work for me. I try the sshfs command and I get this:
ccc@ccc:~$ cat /etc/group | grep fuse
fuse:x:119:ccc
ccc@ccc:~$ ls -l /usr/bin/fusermount
-rwsr-xr– 1 root fuse 18328 2006-05-11 13:45 /usr/bin/fusermount
ccc@ccc:~$ sshfs myaccount@networkpc.icsaward.com:/share /media/networkpc/
myaccount@networkpc.icsaward.com‘s password:
fuse: failed to exec fusermount: Permission denied

I made sure my account is a member of the fuse group as you can see above. My account also has ownership of the shared folder under /media/
I can mount fine as root but not from my account. Then I try this:
ccc@ccc:~$ sshfs networkpc.icsaward.com:/share /media/networkpc/
ccc@networkpc.icsaward.com‘s password:
fusermount: failed to open /dev/fuse: No such file or directory

What gives?

58. something - October 4, 2006

modprobe it

59. Pythoneer » Mounting the Mac-disk on Ubuntu - October 10, 2006

[…] The article How to mount a remote ssh filesystem using sshfs very well describes what I have to do to have my disk mount on my Mac disk on my Ubuntu system. […]

60. Marnix - November 6, 2006

I tried to mount a folder of a unix machine from my uni, for which I’m the owner. I created a folder /media/unix9e on my laptop and made myself the owner and granted all rights. I could mount the unix folder without any problems. But I don’t have the rights to change files :s. Before the “sshfs …” command the folder looks like this:

drwxrwxrwx 2 marnix root 4096 2006-11-06 14:48 unix9e

After the mount command the folder has changed to:

drwxr-xr-x 1 2132 130 4096 2006-11-02 13:15 unix9e

So the rights and ownership have changed, and I can’t do anything about it. Does this depend on our unix machines, and should I ask our system admin? Previous posts have mentioned the same problem I think, but so far no solution 😦

61. this is only a test » Blog Archive » Mounting remote filesystems via ssh with SSHFS - December 2, 2006

[…] As Linux stuff goes, SSHFS was remarkably easy to install and set up. Using the handy directions over at Ubuntu Blog, I had it all working in about 20 minutes. I’ve been running it for a few days now and have yet to run into any bugs or performance issues. […]

62. gerard doets - December 5, 2006

sorry to say that this does not work for me

at the end I have a ssh connection mounted on a directory whitch I can approach
if I do an: ls -ltr
I get :
?————– ? ? ? ? ? mountedDirectory

Any suggestions?

63. Deprecated Behaviour » SSHFS Makes life even easier - December 6, 2006

[…] It’s also simple to set up, requiring no configuration on the server. Following the general gist (I already had much of it set up) of the instructions found on a fellow Ubuntu users blog I can now mount remote directories by using: sshfs server:/my/remote/directory/ /my/local/mountpoint […]

64. e2rd - December 6, 2006

it work! I had few problems with fuse but work!

65. bprov - December 31, 2006

It works great!!
And it’s fast!!!

Now I just have to figure how to mount it at boot time…

Thanks!!

66. Yar - January 2, 2007

Really like the concept of sshfs. It works, but is slow as molasses with some of the large files (files >30Mb) I have to grep through. Like 30 to 40 times slower than being on the actual box. Any one know any performance tweaks. Thanks

67. Jim Cooncat - January 4, 2007

Yar, I’d run the grep as a remote command with ssh, rather than using sshfs to do the job. Like:

ssh me@remotecomputer \
grep -i “wtf” bigfile.txt > bigfile.txt.grepped.txt

Then you can pick up bigfile.txt.grepped.txt with sshfs.

This way, grep runs on the remote computer, rather than hauling the whole file across the network.

68. Yar - January 4, 2007

Thanks for tip! Did not know you could attach commands to the end of ssh like that!

69. Simon » Blog Archive » Mounting a remote ssh filesystem - January 10, 2007

[…] How to mount a remote ssh filesystem using sshfs […]

70. Al - January 10, 2007

sshfs works great! But something I found out was that I couldn’t access my mount point with multipule connections (for example streaming an mp3 and browsing files). The solution that worked for me is described in a great post over at debian-administration.org. You basically reuse a SSH connection and can do several things at the same time! 🙂

Make sure to read the comments also.

Reusing existing OpenSSH v4 connections:
http://www.debian-administration.org/articles/290

71. Walter Hilenski - January 17, 2007

Just an FYI: For those Apple users out there with OS X, Amit Singh at Google has ported FUSE to OS X (MacFUSE). It can be found here:
http://code.google.com/p/macfuse/

72. sshfs I’m in love « [sic] - January 17, 2007

[…] I had to redo this after a recent system upgrade).  A good writeup with helpful comments is here: How to mount a remote ssh filesystem using sshfs. The great thing about sshfs is that it allows me to use my remote systems transparently on […]

73. How to mount a remote ssh filesystem using sshfs « technonerd.wordpress.com - January 17, 2007

[…] How to mount a remote ssh filesystem using sshfs https://ubuntu.wordpress.com/2005/10/28/how-to-mount-a-remote-ssh-filesystem-using-sshfs/ […]

74. Tanase - January 25, 2007

After I’ve installed fuse on Ubuntu 6.10 – the Edgy Eft – released in October 2006, I got :
“fusermount: failed to open /dev/fuse: No such file or directory”

while trying to run sshfs

I fixed the problem by changing the owner of /dev/fuse to be root:fuse

>sudo chown root:fuse /dev/fuse

After this sshfs mounted correctly; don’t forget also to log out after you add yourself to the fuse group to make sure that you really are in the fuse group;

75. SSHFS, Ubuntu, and You! at elwoodicious - January 28, 2007

[…] Super easy, super simple, fast, and secure. Here are a couple of more resources that I used as references when doing this: Ubuntu Forums HOWTO, and Ubuntu.wordpress.com. […]

76. Yar - February 1, 2007

Anybody know how to make sshfs run out of cron? I’ve written a script that checks all the things I have mounted periodically and will remount them if they have become unmounted for some reason. However in the cron envirnment, sshfs doesn’t run properly natively. Thanks

77. John L. Clark - February 4, 2007

gerard said:

sorry to say that this does not work for me

at the end I have a ssh connection mounted on a directory whitch I can approach
if I do an: ls -ltr
I get :
?————– ? ? ? ? ? mountedDirectory

Any suggestions?

I was getting the same behavior. I don’t know if I was doing the same thing that you were doing, but I’ll post the solution here in case it helps you or someone else. I was using sshfs in the following way:

$ sshfs user@host:~ some_directory/

This succeeded, but from the debug output, it looked to me like Fuse was literally trying to mount the directory named “~”, which of course I wanted converted to /home/user (or equivalent) on the server. When I spelled it out on the command line (`sshfs user@host:/home/user some_directory/`), it worked.

I also did an experiment. I tried the following command:

$ sshfs user@host:/foo some_other_directory/

And that worked, with the same result (question marks all around) although /foo also does not exist on the server. Clearly, the sshfs interface could use a bit of additional error reporting.

Regardless of all of this, thank you Carthik for this bit of useful reporting.

78. Alexandre Zabot - February 20, 2007

SuSe 10.2 — x86_64

FANTASTIC!!!!!!

sshfs comes with SuSe.
I followed your instructions and everything worked great!
Just one observation:
Using Yast I added a new group (called fuse) and added my user to it.

Congratulations. The text is very clear and direct.

79. Russ - February 20, 2007

This was working yesterday, but today I get:

fusermount: failed to open /dev/fuse: No such file or directory

The directory does in fact not exist…. and yet this was fine the day i installed it.

80. Konse - March 1, 2007

Let’s make it easier!!!

(in german: http://wiki.ubuntuusers.de/FUSE/sshfs)

requirements:
1. a line fuse in /etc/modules
2. the package sshfs installed

3. a line in /etc/fstab
sshfs#username@yourserver:/pathonserver/ /yourmountdir fuse uid=1003,gid=100,umask=0,allow_other 0 0

and now the best an easiest:
4. a line in menu->system->settings->sessions->startup
sshfs username@yourserver:/pathonserver/ /yourmountdir

That’s awful -> with starting the session, there is a password-question and no need of terminals!!!!

81. Using sshfs to Access Remote Directories in Windows « Ubuntu Blog - March 5, 2007

[…] old article on mounting remote directories using sshfs is what prompted J Wynia to write […]

82. Ubuntu | Carthik Sharma: Using sshfs to Access Remote Directories in Windows - March 5, 2007

[…] old article on mounting remote directories using sshfs is what prompted J Wynia to write it. Previous Post: Vincent Untz: Summer of Code […]

83. Ubuntu Edgy notes: PyMol and sshfs « What You’re Doing Is Rather Desperate - March 5, 2007

[…] the virtues of sshfs/fuse – mount remote filesystems via SSH. Reasonably-clear instructions can be found here with one omission: “sudo chown root.fuse […]

84. Vinicius - March 9, 2007

Hello,

I can’t install sshfs on Ubuntu Edgy, this is why:

$ sudo apt-get install sshfs
Lendo Lista de Pacotes… Pronto
Construindo Árvore de Dependências
Reading state information… Pronto
E: Impossível achar pacote sshfs

The last line in English (I think): “that’s impossible to find out the sshfs package”

But there is the sshfs package at http://packages.ubuntu.com/edgy/utils/sshfs

What I’m doing wrong, please?

More information:
“$ uname -a
Linux ubuntu 2.6.17-11-generic #2 SMP Thu Feb 1 19:52:28 UTC 2007 i686 GNU/Linux

Thanks in advance.

85. Vinicius - March 9, 2007

Hello,

Now, I know the answer and I would like to suggest the following:

For newbies, the sshfs for Ubuntu Edgy (https://launchpad.net/ubuntu/edgy/i386/sshfs/1.6-1) is obtained from the repository (or component) Universe, which you can use through Software Repositories (https://help.ubuntu.com/6.10/ubuntu/desktopguide/C/extra-repositories.html)

Regards.

86. Vinicius - March 10, 2007

I think it’s not so easy to use sshfs:

a) I can logon by ssh normally:
“vinicius@ubuntu:~$ ssh -i openssh_vinicius_at_ubuntu vinicius@fedora
Last login: Sat Mar 10 02:25:26 2007 from 10.11.11.11
[vinicius@fedora ~]$

b) but I can’t do that with sshfs:

vinicius@ubuntu:~$ sshfs vinicius@fedora:/home/vinicius ~/sshfs-vinicius-at-fedora
Permission denied (publickey).
remote host has disconnected

What I’m doing wrong, please?

Local (client): Desktop Ubuntu Edgy 6.10
Remote (server): Fedora Core 6

Thanks in advance.

87. Vinicius - March 10, 2007

Hello,

After editing /etc/ssh/ssh_config:


IdentityFile ~/openssh-vinicius-at-ubuntu
PubkeyAuthentication yes

I was able to use use sftp and sshfs.

If you have a default sshd_config at the SSH server and a default ssh_config at the client then the use of sftp or sshfs will be easy. But generally to increase the security: we change the port, enable only publickey authentication and so on.

Regards.

88. io, me e michele ^ 5 cose che amo di Ubuntu - March 14, 2007

[…] sshfs/fuse e’ l’ultima spettacolare invenzione che permette di montare volumi remoti con due click e via SSH, uno spettacolo che consiglio a tutti di provare anche per montare volumi Windows via Samba, basta andare su Places -> Connect to Server e selezionare SSH, a dir poco mitico. […]

89. nostradamus - March 23, 2007

usermod -a -G fuse username

the easy way;-)

90. Greg - March 28, 2007

Great work on this howto. I was running out of disk space on my laptop so I decided getting rid of 52 gigs of music files would help. Looked into using samba and decided sshfs was worth checking out. Works super well on my kubuntu edgy laptop and now I use amarok with mysql and a remote collection shared over sshfs.

91. Pektiong ê Bāng / Ubuntu@Parallels@Mac - April 2, 2007

[…] -u blah Post a comment — Trackback URI RSS 2.0 feed for these comments This entry (permalink) was […]

92. Practice makes perfect - May 10, 2007

sshfs

I have one remote account of my institute with NFS. Whenever some network has problems, I cannot login my laptop or whatever. I have to stop to do something. I do not like this situation. Then I decide to use local account of my laptop. However, wheneve..

93. David Peterson - May 18, 2007

Attention Ubuntu Edgy users:

When I tried to use sshfs to mount a remote filesyste, I was receiving the following error:

fusermount: failed to open /dev/fuse: Permission denied

The fuse module was installed (and contained in /etc/modules). I had added myself to the “fuse” group. Everything seemed set.

So, I did a bit of tracking-down the problem … For some reason, when I installed sshfs on Ubuntu Edgy, the /dev/fuse device was created with ownership root.root (i.e. user and group = root).

To fix the problem, I had to change the group to “fuse” to get this to work:

$ sudo chmod root.fuse /dev/fuse

Once this was done, sshfs worked fine for me on Edgy. HTH someone!

Dave

94. David Peterson - May 18, 2007

Oops – just a correction to the above post.

I meant to say:

$ sudo chown root.fuse /dev/fuse

(Not chmod, sorry).

😉

D.

95. gcalm - May 23, 2007

Hey,

You might want to replace:
$ sudo adduser your-username fuse

with:
$ sudo adduser `whoami` fuse

for people (like myself) who get an error, hit themselves over the head, and then replace the ‘your-username’ to, well, their username.

Thanks.

96. eMulo - May 23, 2007

At lest in Debian, /usr/bin/fusermount has an execution flag for “fuser” group; so, just add your username to this group.

97. Mark Ford - May 26, 2007

I too was having problems writing files in gedit yet if I used vim it works without problem. I have found the problem is caused by the backup feature of gedit i.e. it seems to try and create a backup before writing. Quick-fix-solution; disable backup creation in gedit.

98. Tobias Bengtsson - May 30, 2007

the rename syscall does not seem to work properly over sshfs.
It always give permission denied when renaming to an existing file.
touch foo; ltrace sed -i ‘s/foo/bar/’ foo 2>&1 | grep rename
rename(“./sedZhKQIw”, “foo”) = -1
vfprintf(0xb7f97560, “cannot rename %s: %s”, 0xbff5db34cannot rename ./sedZhKQIw: Operation not permitted) = 50

another example:
touch foo bar; mv foo bar
mv: cannot move `foo’ to `bar’: Operation not permitted

mv -b foo bar

99. Tobias Bengtsson - May 30, 2007

sshfs -o workaround=rename

100. Montage de dossiers distants via sshfs at Renoir Boulanger - May 31, 2007
101. JyBy - June 12, 2007

Heya.

Sshfs seems the ideal solution for me, but I could not make it work. I have the same problem than Gerard Doets above (comment 64): after mounting, the mount point is not accessible, and shows only quotation marks for uid, gid and access rights. John L. Clark (comment 79) mentionned that the same behaviour is seen when mounting a non-existing file (or one which name was not solved well, such as including ~), but I did check that my file exist, and I give its full path on both machines:

sshfs -o uid=1000,gid=117 me@myserver:home/me/Shared /home/me/Shared

I am under standard kubuntu feisty, installed begining of June 2007. I installed sshfs through dselect, which installed fuse as dependencies. I added myself to the group fuse, and changed by hand the group of /dev/fuse. I can connect between my machines with ssh without any problem.

102. kostos - June 17, 2007

This is working for me:

sudo sshfs root@192.168.0.199:/ mountpoint -o uid=1234 -o gid=5678 -o umask=027 -o allow_other

103. thet - July 3, 2007

really great, that saves much time for me! now i can use jedit to edit any file on the remote system! better than using the console.

i just googled for remote file editing on linux and landed here (resp. http://www.wynia.org/wordpress/2006/12/19/remote-file-editing-via-sftp-on-linux-and-windows-for-scite/)!

104. kadalbuntung - July 9, 2007

 

105. Dan Rosén - August 14, 2007

Thanks a lot, very nice 🙂

106. Vikas R - August 22, 2007

I would like to run an x-server on a separate virtual console (control+alt+f12), open an x-term there, ssh to the server, and start gnome. That should give me access to two different machines on two virtual consoles.

This approach is explained on http://www.linux-tip.net/cms/content/view/302/26/

I tried to follow instructions in this article. I am able to start the x-server but not able to direct an x-terminal to start on it. Would you have a clue?

107. Ubuntu: Mounting remote filesystem using sshfs (FUSE) « sysblogd - August 23, 2007

[…] Ubuntu Blog on wordpress.com […]

108. legal - August 23, 2007

WoW! this went a bit over my head… printing time i think!

109. James Little - September 1, 2007

Wow, I never knew you could do this; very useful! I’m using it to connect to my mediatemple hosting account. I notice though, that linked directories give it problems.

I’ve just tried to unpack a tar archive via nautilus too, and that’s going veeeeery slowly. I usually scp tar files and unpack them at the command line, rather than ftp a folder with loads of files in, coz it’s much quicker, so handling remote tar/gz/bz2 files in the GUI would be very useful…anyone doing this?

110. jw2tt - September 7, 2007

This is very very nice. Thank you for the helpful explanation and thank you to “Konse” for pointing out how to make the entry in the fstab. At some point, I’m going to turn an old laptop into a NAS and this is going to be extremely useful.

111. Leonel - September 7, 2007

I had some trouble with permissions. It appears that apt-get creates the /dev/fuse file (device?) in the root group.

So I did ‘sudo chgrp fuse /dev/fuse’ to allow users in the group fuse to access that device.

112. Монтуємо віддалену файлову систему по SSH - Eugen Pyvovarov - September 16, 2007

[…] стаття є стислими перекладом українською чудової статті на сайті […]

113. basheer - September 20, 2007

i had mount for other system iam tried to taken backup of mount point some files or copied but some getting this type of error

Tar: couldn’t get uname for UID 112

114. Vincent - October 12, 2007

Hi,

I use Ubuntu edgy 6.12
I installed sshfs like this : sudo apt-get install sshfs
But if now I run sshfs, I have this error :
sshfs: /usr/lib/libfuse.so.2: version `FUSE_2.6′ not found (required by sshfs)

Do you know how could I fix it ?

115. Aaron Shafovaloff - October 24, 2007

After mounting with sshfs, I can do read/write stuff in the terminal, but not Nautilus. Any ideas?

116. Ken Guest’s online diary :: Selectively mounting systems with sshfs - November 14, 2007

[…] I recently discovered sshfs; which is a useful way to mount remote systems via ssh. […]

117. ubundom - November 15, 2007

I have mutt using Maildirs successfully over sshfs. However I have failed to get procmail to deliver to Maildirs over sshfs.

118. radostyle - November 27, 2007

Someone had asked whether you can do this on a mac. Here is the link:

http://code.google.com/p/macfuse/

119. Bernt - December 28, 2007

> You will have to log out and log in again, to add yourself to the > group “fuse”.

You can also do ‘su – $USER’

120. vishal - January 9, 2008

i have the ? … ??? mark prob as said in comment 103 any solution

121. Thomas Jansson - January 21, 2008

Sshfs is great – it has been one of my favorit tools for quite a while. Recently i used autofs in connection with sshfs and that makes it even easier to use since the user doesn’t even have to mount of umount the sshfs file system – it is all done by the sshfs deamon. 🙂

I wrote a small article on how to setup autofs and sshfs if anybody is interested: http://www.tjansson.dk/?p=84
called “Autofs and sshfs – the perfect couple”.

122. Ubuntu pr0n: mount remote shit in local filesystem « RoyalPosse PremiumMembers - January 30, 2008
123. malaeum - January 31, 2008

Not sure if its posted in the above comments but a quick ctrl+f for it didn’t reveal anything so here ya go…

To add a user to a group from the command line I use the following command (Not sure of

 tag is supported but I'll give it a shot, if not please omit them):

[code]
gpasswd -a  

This has to be done as root and as long as the command is run properly it should be safe. There is plenty of room for error as well, but if someone is not paying attention at all it is possible to remove entire groups with this command.

HTH!
Matt Schneider

P.S. I thought this might be worth updating your original article. I know that its old, but its otherwise still quite valid and is google's top result for the query "mounting ssh".

124. Be Nice Please - February 14, 2008

wow SSH is the best tool i have ever used! i love the way ssh helps me maintaining my server. I even do web browsing through it, offcourse its in text mod but i enjoy it!

125. John Stavrakakis - February 15, 2008

Hey thanks for the post was really useful for me. I used to have a complete home dir NIS setup but wanted to separate the home directory into local and remote due to performance of writing to file. This is the best, now I just symlink my email, chat and widgets config folders to the ssh mounted dir.

126. ovizii - March 4, 2008

hi there.

I need some more help.

I tried like this:

sshfs -p443 myhost.dyndns.org:/tmp /media/sshfs/

which is ok, as I am running ssh on port 443 on the remote machine.

it asks me for my password and then I get:

remote host has disconnected

any ideas whats wrong? what else woudl I need to enable on the remote machine?

127. ovizii - March 4, 2008

also I’d like to know if there is a graphical frontend to scp? something like winscp?

128. How to Mount a Remote Filesystem Using SSH and sshfs - March 6, 2008

[…] post describes the sshfs in more details and moreover howto use it on Ubuntu and […]

129. V-TEK Channel: » Blog Archive » Howto setup Ubuntu with davfs - March 8, 2008

[…] UPDATE #2 With the instructions above, I still keep having troubles writing data to the dav shares. So if the above doesn’t work right for you, I suggest you try sshfs, for me that works a lot better. Instructions for the use of sshfs with ubuntu can be found here […]

130. bruno - March 27, 2008

How ridiculous is this?

If you get the resource busy on fusermount -u, try closing the shell you were on, and using anoter!

Found this by using fuser -u to see what processes were using the mount point. When i killed the process, the shell closed!

131. Julia - April 6, 2008

Linux rules)))

132. john - June 23, 2008

web based ssh client –

http://www.browsershell.com

133. Share files between 2 ubuntu computers « Linux Owns - July 22, 2008

[…] There are instructions to get it working on the official website, but ubuntu.wordpress.com has a nice how-to. […]

134. doug - August 9, 2008

I kep getting “connection reset by peer” from either end that I try to connect from, laptop to desktop or vice versa. I followed the instructions to the letter — what is wrong?

135. R - August 20, 2008

I love it! using it right now with my nokia N810 and my slicehost server. sshfs rulez, thx for the tip!

136. Hacking WD MyBook World Ed: transmission_1.33 - August 31, 2008

[…] alephsmith] [http://www.wikidot.com/user:info/bzhou” bzhou] anonymous Carthik and others help | terms of service | privacy | report a bug | flag as […]

137. farpan.net » Mounting remote storage using sshfs - September 13, 2008

[…] and vim. I went searching and found information about mounting the storage space using sshfs in this post on the Ubuntu […]

138. Cephi - September 30, 2008

oh my god this is beautiful! thank you!

139. Tom - October 8, 2008

This is awesome because the default ‘Connect to server…’ dialog in Hardy doesn’t mount the drive in /media so you have to access files directly through nautilus. Is there a way to make a shortcut that runs this instead of using a bookmark in nautilus?

140. Ubuntu Linux backup utilities and links « sysblogd - October 14, 2008

[…] on any folder copying only changes, uses hard links, easy to integrate. For remote solution fuse sshfs or avfs (new in Ubuntu Intrepid repos) might help. Or use ssh […]

141. Jotape - October 31, 2008

I have a HDD connected to my network. I’ll mount it with sshfs in fstab. I want to create an account in several PCs, where the home directory is /media/disk, for example, in order to have access to the same data.
There’s some conflicts with configuration files when I have multiple connections on that account that are trying to write in the same file (like Firefox filesor something like that)?
There’s some way to block permissions for writing on files that are in use?
Any thoughts? Thanks.

142. fish:// and SSHFS - Michael T. Conigliaro - November 11, 2008

[…] but that’s where SSHFS (Secure SHell FileSystem) comes in. With this tool, you can easily mount any remote filesystem over SSH for access by all of your applications. Goodbye […]

143. free credit check - December 3, 2008

free credit check…

I enjoy reading your blog on neo-neocon ” Blog Archive ” Election Eve open thread. I will surely pop by again….

144. mole - December 22, 2008

beautiful, thanks for the tutorial.

145. iMhatimi - January 5, 2009

Good point there, Thanks again !!!

146. Matus Zeman » howto: mount SFTP folder into local filesystem - January 14, 2009

[…] just follow this tutorial: https://ubuntu.wordpress.com/2005/10/28/how-to-mount-a-remote-ssh-filesystem-using-sshfs/ […]

147. Easier Sharing: SSHFS | tail -f findings.out - February 1, 2009

[…] General HowTo […]

148. kampanye damai pemilu Indonesia 2009 - February 7, 2009

finally, thanks for this reference…

Thank’s very much…

149. EnjoyMedia - March 17, 2009

sshfs is quite fast as i know

150. Abraca-Jaunty-Jackalope « Michelle’s Carpet Bag - March 30, 2009

[…] around my network took all of 10 minutes, thanks to sshfs & autofs (helpful instructions here & […]

151. SSHFS und MacFUSE - Xern - April 29, 2009

[…] Weitere Anleitung zur Nutzung von sshfs unter (Ubuntu) Linux (in englischer Sprache) […]

152. severin - June 1, 2009

Add the ‘severin’ user to the group ‘fuse’ is better done with:

sudo usermod -a -G fuse severin

153. Vitaly - August 16, 2009

Thanks, it helps me!

154. linkb97 - August 23, 2009

good all information thank 4 sharing, i hope yu can visit back to my site later [my site]

155. Yacht rental - September 22, 2009

Add the ’severin’ user to the group ‘fuse’ is better done with:

sudo usermod -a -G fuse severin

156. Yates - October 18, 2009

From the site: “APTonCD is a tool with a graphical interface which allows you to create one or more CDs or DVDs (you choose the type of media) with all of the packages you’ve downloaded via APT-GET or APTITUDE, creating a removable repository that you can use on other computers.

157. yacht rental - October 18, 2009

Good point there, Thanks again !!!

158. Hogyan? - October 25, 2009

SSH/SFTP elérés mountolása…

A következő leírásban bemutatom, hogyan tudunk tetszőleges Linux rendszer alatt, Terminálból (Konzolból) távoli SSH/SFTP elérést felcsatlakoztatni (mountolni) helyi fájlrendszerünkbe.

Telepítsük az sshfs csomagot. Ezt a disztribúciónk csomagkezelőjéve…

159. Tomeu Vizoso: A week at LATU (part II): Developing with Sugar | Full-Linux.com - December 31, 2009

[…] you are happy with how it runs there, you can test easily on a XO (or any other target machine) by mounting with sshfs the dirs that contain installed Sugar code onto the dirs with old code. And voilà, an XO running […]

160. Mounting Remote Filesystems With sshfs | The One with the Thoughts of Frans - January 10, 2010

[…] is a condensed and edited version of the Ubuntu Blog guide regarding how to mount a remote ssh filesystem using sshfs, based on my personal […]

161. Fred Trotter » gvim over ssh - January 12, 2010

[…] The answer sshfs. Here is a link to a tutorial to using sshfs. […]

162. How to mount a remote ssh filesystem using sshfs « Java/JEE - March 1, 2010

[…] How to mount a remote ssh filesystem using sshfs […]

163. Vladekk - March 24, 2010

Hint: if you have trouble installing packages with apt-get because you use different repos (stable/testing/unstable), use command “aptitude”, it will do everything automatically (usualy)

164. mistikyilmaz - April 26, 2010

Good point there

165. bayan escort - May 2, 2010

thankss admin

166. güven kamera - May 9, 2010
167. FrankG - May 9, 2010

Carthik, thanks a lot for this tip – You made my day! 🙂

I was looking for a solution to directly edit remote files on a webserver via Netbeans IDE 6.8 on Ubuntu Lucid (10.04). Unfortunately Netbeans does not support “Drag and Drop” if connected via a standard ssh connection to a remote server using Gnome’s Nautilus. This may be a restriction to Java on Ubuntu – not sure though. Currently there doesn’t seem to be a plugin for remote files for Netbeans (I know, I could change Netbeans project settings to edit remote files as well, but that’s not what I wanted). Mounting a remote file system via sshfs and FUSE works like a charm, woohoo! 🙂 Now I can drag and drop files into Netbeans or open files via the “Open File” dialog in Netbeans.

Thanks again! I hope other Netbeans users may find my comment useful.

Frank

168. escort bayan - July 6, 2010

This gets around the nasty solution of adding a class to the first or last item in every row — something I’ve seen with abundance around the web.

169. Fbml kod - July 22, 2010

Good point there, Thanks again !!!

170. Rikard Johansson - July 31, 2010

works like a charm for me first installing sshfs.

Then in a terminal type

user@host:/remote-folder/dir /local/mount/point -port

Sorry if this allready been brought up earlier in comments, did’nt read all of em. Feel free to ask me anything on ubuntuforums. My name is DarkAmbient.

171. nasso - August 9, 2010

Awsome guide. simple and working. THANKS!

172. Ravi Chandra - August 10, 2010

It did work for me. Thanks for article.

173. panjur tamiri - August 10, 2010

panjurcu

174. Joe - August 25, 2010

YOU ARE AWESOME! Thanks. 🙂

175. aaa - September 8, 2010

fuck u u suck

176. porno sikiş - September 27, 2010

Ah! adduser — the debian way!! Sorry I overlooked that one. To be honest it did not cross my mind at all!

177. sex sikiş - September 28, 2010

Oh man, talk about good timing. I’m back home in Toronto, and I’m using my desktop once again which has Ubuntu Linux installed. I have a μC++ assignment due on Monday, so I’ll be programming all weekend.

178. Narcis Garcia - October 7, 2010

A new guide to configure better the client and the server:
http://wiki.lapipaplena.org/index.php/How_to_mount_SFTP_accesses

(with special care with owners and permissions questions)

179. porno - October 7, 2010

Ah! adduser — the debian way!! Sorry I overlooked that one. To be honest it did not cross my mind at all!

Thank you, thank you!

180. Yasemin - October 11, 2010

Thank you, thank you!

181. porno - October 28, 2010

the debian way!! Sorry I overlooked that one. To be honest it did not cross my mind at all!

182. porno - November 1, 2010

Googled for “how to install web core fonts ubuntu” and your blog was second in the results list. porno izle thanks

183. kyani - January 7, 2011

Your place is valueble for me. Thanks!?

184. escort bayan istanbul - January 16, 2011

I replaced the account name with ~’s for privacy reasons but this should still make sense. What am I supposed to do, does anybody know? I am upgrading to Ubuntu version 10.04 right now so if the problem is OS specific than that information might help.

185. Biuro rachunkowe Łódź - January 23, 2011

A ja zapraszam do naszego biura rachunkowego w łodzi

186. joe ben - January 25, 2011

thank you for this tutorial.

187. avcılar escort - March 2, 2011

thank you for this tutorial.

188. beylikdüzü travesti - March 2, 2011

thank you for this tutorial.

189. travesti - March 2, 2011

thank you for this tutorial.

190. etiler escort bayanlar - March 2, 2011

thank you for this tutorial.

191. ortaköy escort bayanlar - March 2, 2011

thank you for this tutorial.

192. bölüm fragmanı - March 3, 2011

thank you for this tutorial.

193. Wirone - April 5, 2011

@Narcis Garcia: THANK YOU! Your tutorial did the stuff, I was f**king and d**ning for few days since I upgraded Ubuntu from 9.10 to 10.04 and my autofs configuration broke. On every boot I had to press S few times and then run sudo mount -a and write passwords for each mounting, it was really annoying.. Now it works 🙂

One little question: is there an option to avoid putting passwords to /etc/network/if-up.d/sshfs-mounts but mount sshfs devices via private ssh keys?

194. izle - April 10, 2011

Hi, very nice post, i certainly love this website, keep on it

195. James - May 12, 2011

Wow cool, ssh may also. satulagi added facilities that pamper Internet users ok, thanks

http://www.small-notebook-computer-s.us/best-notebook-computers.htm

196. Wirone - May 12, 2011

I see that Narcis Garcia’s LaPipaPlena page no longer exists, so for those, who didn’t get his solution I have tutorial (too bad it’s only in polish, but code is universal ;)) for automounting on Ubuntu 10.04:

http://blog.wirone.info/2011/04/18/automatyczne-montowanie-zasobow-sshsftp-w-ubuntu-10-04/

197. Mount a remote ssh filesystem using sshfs | TurboLinux Blog - June 20, 2011

[…] Here is a good tutorial show you how to Mount a remote ssh filesystem using sshfs: We will use sshfs to acheive our goal. The following guide will step you through the process of mouting file systems over ssh on Ubuntu 5.10 Breezy systems. […]

198. Mounting remote directories via sshfs at Stream of Ry - July 5, 2011

[…] If you encounter other problems, this was the article I followed the first time around. […]

199. ukrayna vizesi - July 30, 2011

İYİ

200. arkadaş - August 5, 2011

teşekürler bilgi için elinize sağlık

201. antalya böcek ilaçlama - August 7, 2011

Anybody know how to make sshfs run out of cron? I’ve written a script that checks all the things I have mounted periodically and will remount them if they have become unmounted for some reason. However in the cron envirnment, sshfs doesn’t run properly natively. Thanks

202. Shop Fitters Brisbane - August 17, 2011

Great well informative article
I am really enjoying the article here and learning new insights and thoughts.

203. how to configure AVAHI to share disk access between linux boxes - January 29, 2012

[…] implementation of Apple's ZeroConf or Rendezvous utilities. For resources, lets start with using SSH File System. It is secure enough for a public hotspot and the shared folder tree can be limited easily. Now […]

204. Araç Takip - March 6, 2012

Araç takip hakkında detaylı bilgiler.

205. Stefanie - October 5, 2012

I’m gone to tell my little brother, that he should also visit this weblog on regular basis to take updated from latest news update.

206. doosh face - November 9, 2012

This guide is awesome! I got my iphone “mounted” on my Mint-Box via wifi. Its as if its just a part of my desktop now, like a folder I add/create/delete things off my iphone now! but only as fast as 802.11 \n will allow 😦

207. http://cause8196.webs.com/apps/blog/show/14598659-helpful-tips-for-free-bets-for-newbies - December 28, 2012

Cool! Thanks for providing this. For the past few days, I’ve been having a hard time trying to search for the info I needed for my dissertation. This will surely help a lot.

208. natural remedies for cellulite - January 17, 2013

I know this site provides quality dependent articles or reviews and additional information, is there
any other site which provides these kinds of things in quality?

209. this website - January 20, 2013

Attractive part of content. I just stumbled upon your site and in accession capital to assert that
I get in fact enjoyed account your weblog posts. Anyway I will be subscribing to your
feeds or even I success you get entry to consistently rapidly.

210. Charline - March 22, 2013

Hi, of course this article is actually fastidious and I have
learned lot of things from it concerning blogging. thanks.
Charline

211. Frederick - May 15, 2013

Enjoy your blog )
my blog

212. best saffron extract - May 20, 2013

Try to consume nutritious and balanced diet plan.
If you have fat to lose, there is a fat reduction prepare is for you!

213. Reviews on Cellulite Factor - June 18, 2013

I all the time used to study article in news papers but now as I am a user of internet therefore from now I am using net for content, thanks to web.

214. Hyperlink - August 15, 2013

Qualcosa cui non avevo mai pensato… grazie per il contributo.

215. ps1 emulator android app - November 15, 2013

There was not any major action directly against roms until last year when some companies
brought up a question about old games that no longer had owners.
– John Davison’s editorial about the Dreamcast being Sega’s
“make or break” is ridiculously depressing to read now.
Examine the spindle and eye for foreign
objects like lint, hair, and so forth.

216. SSHFS – Montando sistema de arquivos remotos via SSH | Blog do Albuquerque - November 23, 2013

[…] Referências: Usando o sshfs How to mount a remote ssh filesystem using sshfs […]

217. http://marcozian.com - December 12, 2013

More followers means more individual likes, and the amount of likes that you
have on your photos increase your reach. The best
way to do this is to just post photos that a majority of if not all of your fans will find appealing.
Wouldn’t you, COULDN’T you, SHOULDN’T YOU pay $25
to join this business and then find 4 people to do the same, in order to create a
monthly residual income of.

218. Http://Www.Maiersbaeckerei.De - December 27, 2013

In no time at all you can learn to play simple songs.

If you are beginner and you have no knowledge about metal guitars, then
these books and CDs you purchased are of no use to you.
The theory was that the ‘strong’ arm of the player (being right handed) would be the one
to keep the rhythm hence, the task of strumming was for the right hand.

219. Birgit - January 13, 2014

Excellent website. A lot of helpful info here. I’m sending it to several friends ans additionally sharing in delicious. And certainly, thanks for your sweat!

220. Can i stream videos, music ower network? - February 4, 2014

[…] server while working on my Ubuntu LXDE desktop. How to achieve it and is that possible? i found sshfs (man sshfs) but im unsure if it supports […]

221. www.gabrielaneagu.info - March 15, 2014

Dieseг Blog ist einzig.

222. hale groves coupn codes - April 18, 2014

Amazing blog! Is your theme custom made or did you download it from somewhere?

A design like yours with a few simple adjustements would really make my blog shine.

Please let me know where you got your theme. Bless you

223. รับสอนภาษาอังกฤษ - May 1, 2014

Please let me know if you’re looking for a author for your blog.
You have some really great posts and I think I would be a good asset.
If you ever want to take some of the load off, I’d absolutely love to write some articles for your blog in exchange for a link back to mine.
Please blast me an email if interested. Cheers!

224. Somanabolic Muscle Maximizer - May 18, 2014

Once you approve our response, we’re going to give money $0.01 to a particular cause.

225. www.youtube.com - June 5, 2014

Hi Dear, are you truly visiting this site daily, if so after that you
will without doubt take pleasant know-how.

226. bademode 2014 drudge 2015 - June 25, 2014

Dla , darmo efektach, złuszczają naskórka -Tanner osobistej.
Martwa, sucha skóra może spowodować osobista Tanner wchłonąć nierównomiernie.
To może doprowadzić do smug, plam i obszarach zabarwienie że stało się ciemnym kolorze niż będą.
może to dotyczyć Twój warstwa skóry przed wykorzystanie
własny Tanner. Przez usuwania martwe komórki skóry, może pomóc zapewnić,
że sobie garbarza absorbuje równomiernie i zapewnia że po prostu cudowny, smug
darmowe Blask . bademode 2014 drudge 2015 Aby pomóc bliska skonfigurować zobacz pojawia się dodatkowe siebie, wykorzystanie Twój oczy
make- w górę więc ładowacz w zewnętrzne rogi z waszych
oczy. Używać eyeshadow delikatny o wewnętrzne 1/2 z Twój wzrok i więcej ciemny
w pięćdziesiąt procent, mieszania 2 łącznie gładko w środku.
Następnie na koniec z zajrzeć, zastosowanie Twój tusz do
rzęs i eyeliner tak, że jest to cięższe z zewnętrzne
poza Powierzchnia. to może dostarczyć iluzja że Twój zobacz umieszczone są dodatkowe siebie.
bademode 2014 camping Aspiryna codziennie pomaga utrzymać lekarz w
zatoce, oraz pozwalają zmniejszyć potencjał Ryzyko skok na
dłużej istnienie. W Stany Zjednoczone Serce
Połączenie teraz zaleca najniższa – służąc którzy na pewno nie
cieszył wcześniej atak serca, będzie ciężki ryzyka kursy dla zdarzenie sercowe, i tych, które mieć
chwiejny angina. konsultacyjne ze swoimi lekarza dowiedzieć się,
do kierowania dłuższych codzienne życie.
bademode 2014 austin community SpoŜycie prawidłowe dieta wzrost
ubezpieczenie zdrowotne i wygląd skóry, paznokci i włosy.
Staraj się jeść jagody, dlatego, że są świetny w Zwiększenie skóry elastyczność.
Jedz wiele truskawki, a oni pomoc kolagen shield i niższe linie
twarzy. Awokado są wspaniałe ponieważ kwasu foliowego, który
pomaga pomocy w telefon komórkowy regeneracji. Ostatni, ale
nie najmniej, jeść dużo owoce. Jagody Acai m.in. podwójnie
dużo anty – utleniacze jak każdy bademode 2014 mother son dance songs Dla Easy czyste smugi-, bezpłatnej wyniki, złuszczają swojej
warstwie skóry przed zastosowaniem -Tanner osobistej.
Martwa, sucha skóra może spowodować osobista Tanner wchłonąć nierównomiernie.

To może doprowadzić do smug, plam i regiony kolor że
stało się głębiej niż muszą być. Można wyeliminowania to dotyczyć
przez złuszczający skórę przed wykorzystanie własny Tanner.

Przez eliminując skóra stary gruz, może pomóc się upewnić,
że sobie garbarza absorbuje równie i oferty cudowny, smug darmowe blask .
bademode 2014 2014 calendar with holidays Istnieje rzeczywiście 19 wyżywienie które są uznany za musi mieć rzeczy w twoje lodówka i spiżarnia, a oni mogą Funkcja niesamowite rzeczy aby poprawić swoje zdrowie i wytrzymałość podczas
grupa wiekowa. Napisz to dół i artykuł w domu zachować sobie przypomniał
zatrzymać wypełnione: owoce, produkty mleczne, szpinak, orzechy ziemne, oliwa z oliwek niezbędny, brokuły,
owsiane, kolacja, awokado, granat soki pomidory, tofu, niskotłuszczowy jogurt, czerwonawo kolorowe cebule, czosnek herb,
rośliny strączkowe i soczewica! może to wyglądać takie jak sporo ale najmniej co można zrobić na siebie i największe wyniki najwięksi można wydajność
pośrednictwem kolacja Przygotowanie próby! bademode 2014
drudge.com Aby pomóc blisko zestaw oczy wydaje dodatkowe siebie, wykorzystanie Twój oczy
produkty do makijażu dlatego ładowacz całym zewnętrzne rogi
z waszych oko. Używać lekki o wewnątrz 1/2 z twoje oczy i
ciemny cień w kolorze całym zewnętrzne pół, mieszanie
obie zarówno wraz bezproblemowo między. Następnie wypełnić z wydaje, wykorzystanie Twój
tusz do rzęs i eyeliner że cięższy z rogu.
to może dać iluzja że Twój oko są jeszcze bardziej bok.

bademode 2014 porsche Czy obecnie dbanie o wieku członkiem rodziny która może
mieć Stan? A, to może być czasem wymagających przedsiębiorstwo.
Musisz upewnij się, krajać jakiś z zdrowie pracowników pozycja
do zadedykować spersonalizowane czas na własną rękę.
Uczynić spotkanie codziennie spotkać kolega lub mąż lub żona do żywność lub filiżanka kawy.
Daj sobie zezwolenie na pytanie inni do robienia powyżej
Twój Zadania jak zdrowie pracowników jak sobie przerwę.
Możesz także przyjrzeć Rozwiązania świadczone przez niezawodny dorosły Plany.
bademode 2014 fifa world cup 2014 standings desygnowany osoba opiekować waszych spraw w przypadku, się rosnąć ubezwłasnowolniona.

Jeśli kilka rzeczy się dzieje więc nie są w stanie uwaga
na swój własny ogólny stan zdrowia, wybrać że wola dostać kontroli tych wszystkich Wybór do własnych potrzeb.
jakiego rodzaju rzeczy ty. Nie można wiem, czy być może
trzeba służba zdrowia proxy, ale jednym z z spot tylko w przypadku,.
To starciu kontemplować rzeczy jak to jeszcze jest rozsądne zaplanować dla tego typu ewentualność, bez względu
na to, czy młody czy stary. bademode 2014 drudgereport.com Upewnij się, się słońce,
choć Wiele. Podczas grupa wiekowa, to kluczowa odkryć stabilność
w kategoriach spożyciu sunshine. To ważne, a promienie
słońca jest wspaniały sposób na uzyskać suplement D do program, ale zbyt światło bezpośrednie słońce może mieć istotnie konsekwencje na starzeje i rak
skóry. Uchwyt Twój czas i energię pod słońcem i gdy znajdziesz się w to na zewnątrz, umieścić na wyższy ochrony
przeciwsłonecznej SPF.

227. HOWTO: Mount SSH Shares Pinoy.Tips | Pinoy.Tips - July 2, 2014
228. http://www.berlinwanted.de/2014/07/03/topics-for-consideration-with-vital-factors-for-denver-lawyer/ - July 4, 2014

Your denver lawyer suffering, mental anguish due to the carelessness of the injuries caused by the common auto accidents.
In terms of the case with great care of your homework yet another one.

And of these legal professionals typically will
work with them at all times that can help you make the difference.

I can tell you when you find easier ways denver lawyer of revealing the truth.

229. dieta 1000 calorie - July 17, 2014

Czas, nie gwarantują płynności. Petent wpłacić środków tudzież
zorientowanie, która będziemy mogli wypłacenie środki, bez
groźby utracimy należne część, w przypadku wcześnie zagwarantują oszczędności środki, bez groźby utraty odsetki.
Come perdere peso. Najczęść. Wszelako istnieją inwestycja, oszczędności
na wybrnięcie spośród problemem związanym z lokat krótkoterminie zagwarantowane.

Podczas gdy chyba, możemy wypłaty środki, bez groźby utraty
proporcja lub założenia. Z drugiej okolica, zakładając oszczędnościowe.
Rachunki banków na rachunek rozliczeniowy oszczędności.
Delikwent wpłacając oszczędności oszczędności środków
gdy lokaty, że w ciągu trwania ich akt. Jednym z lokatą bank nalicza nam dodatkowo zdanie procent.

Come perdere peso. Come perdere peso. W niektórych przypadku wcześnie z
oprocentowaniem stają wymiary, w przypadku wcześnie z oprocentowanie,
która będziemy mogli wypłacając oszczędnością jest
skorzys.

230. sassyobstructio69.edublogs.org - July 20, 2014

Greetings from Florida! I’m bored to death at work so
I decided to browse your blog on my iphone during lunch break.
I really like the information you provide here and can’t wait to take a look when I get
home. I’m surprised at how quick your blog loaded on my mobile ..
I’m not even using WIFI, just 3G .. Anyhow, good site!

231. halo nevus removal - July 28, 2014

whoah this weblog is excellent i really like reading your
posts. Keep up the good work! You recognize, lots of people are hunting
round for this info, you could aid them greatly.

232. Ultimate Mind Mastery Review - September 9, 2014

What may seem like the efforts of an outside aggressor is a
situation showing you yourself more clearly, more deeply and what
it is within that you need to overcome in order reach your goals.
Appreciate the things we have and be happy with it.

There is certainly nothing wrong with wanting a wonderful relationship.

233. paint drips - September 10, 2014

Wow, awesome weblog structure! How long have you been blogging
for? you make blogging look easy. The entire look of your website
is wonderful, as smartly as the content!

234. http://shadesshuttersblindscouponcode.wordpress.com/compare=http://seofornown4eva.com?compare=http://youtu.be/m81T9zOoi5E - September 19, 2014

Excellent post. I was checking continuously this weblog and I’m impressed!
Very useful info particularly tthe last phase :
) I maintain such information much. I was looking for
this certain innformation for a long time.
Thank you and good luck.

235. Domitila R. Dwelley - September 20, 2014

Hello There. I found your weblog the usage of msn. This is a very smartly written article.
I’ll make sure to bookmark it and come back to read
extra of your useful information. Thanks for the post.
I will certainly return.

236. How to mount a remote folder with SSH connection in Ubuntu 8.04 - Av. Ertuğrul Harman - September 24, 2014

[…] This howto is based on the howto here. […]

237. where do you buy coconut sugar - September 26, 2014

It’s a pity you don’t have a donate button! I’d without a doubt donate to thiss fantastic blog!
I guess for nnow i’ll settle for bookmarking and adrding your RSS feed to my Google account.

I look forward to new updates and wioll talk about this
blog with my Facebook group. Chat soon!

238. Michael - September 29, 2014

Hi friends, its wonderful paragraph regarding
educationand entirely defined, keep iit up all tthe time.

239. tunik - October 2, 2014

First off I want to say terrific blog! I had a quick question that I’d like to
ask if you do not mind. I was interested to
find out how you center yourself and clear your thoughts prior to writing.
I’ve had trouble clearing my thoughts in getting my thoughts out there.
I truly do take pleasure in writing however it just seems like the first 10 to 15 minutes are generally
lost simply just trying to figure out how
to begin. Any recommendations or tips? Kudos!

240. pefirsu.wordpress.com - October 4, 2014

May I simply just say what a comfort to find an individual who actually
knows what they are takking about online. You definitely understand how to
bring a problem to light and make it important. More and
more people must read this and understand thiks side of your story.
I was surprised you aren’tmore popular given that you surely possess the gift.

241. NRK2000 - October 11, 2014

[…] How to mount a remote ssh filesystem using sshfs « Ubuntu Blog […]

242. xserver indonesia - December 3, 2014

I think that everything wrote made a bunch of sense. However,
what about this? what if you added a little information? I mean, I don’t want to tell you how to run your
website, however suppose you added a headline that grabbed folk’s attention?
I mean How to mount a remote ssh filesystem using sshfs | Ubuntu Blog is kinda
vanilla. You could glance at Yahoo’s front page and note how they create post headlines to get people to click.
You might add a related video or a related
picture or two to grab people excited about everything’ve got to say.
In my opinion, it might bring your posts a little bit more interesting.

243. skóra tłusta - December 27, 2014

I was recommended this web site by my cousin. I’m not positive whether
this put up is written by him as nobody else
realize such unique about my difficulty. You are wonderful!
Thanks!

244. Jesus - December 27, 2014

usermod -aG

245. incognito braces before and after - August 12, 2015

incognito braces before and after

How to mount a remote ssh filesystem using sshfs | Ubuntu Blog

246. Unix:sshfs will not use ~/.ssh/config (on Linux Mint 15) – Unix Questions - October 27, 2015

[…] I based my modifications off this tutorial […]

247. daddy to be shirts - December 27, 2015

Thankfulness to my father who stated to me concerning
this website, this webpage is really amazing.

248. Connect computers with sshfs – Pavlo's wordpress blog - August 23, 2017

[…] From How to mount a remote ssh filesystem using sshfs: Now, let us create a local directory where you want the files mounted. You should create the directory and make yourself the owner of the directory: […]

249. Website SSH - July 15, 2018

Create account SSH in website here

250. akghwqu - May 19, 2019

Спасибо за информацию!!!!!

251. DonaldBarly - March 29, 2020

Привет участникам форума!

Подскажите, кто-то поднимал своего сайт через профитлинкс?
Что за методы были более результативными?
Если у кого-то был такой опыт, расскажите пожалуйста.

Буду благодарен

252. Vladimirgloda - March 29, 2020

Доброго времени суток!
По profitlinks.ru поднимается немало всяких сайтов.
Все зависит от того, что нужно вашему сайту, насколько он молод, какая ссылочная масса уже присутствует. Для молодых проектов больше подойдет раскрутка пирамидой ссылок – так как прямых ссылок будет не много, и это не приведет к ссылочному взрыву. Для наращивания массы будет полезнее использовать органические ссылки.

253. catfight - September 17, 2021

Hi there, I discovered your web site via a search engine at the same time as searching for a similar topic. I really appreciate this post. I have been looking everywhere for this! Your site hit the nail upon the top and outlined the whole thing without having side effect , other people could take a benefit and will probably come again to get more. Thanks!

254. hidibf - September 17, 2021

Здравствуйте, я обнаружил ваш сайт через поисковую систему в то же время, когда искал похожую тему. Я очень ценю этот пост. Я искал это повсюду! Ваш сайт попал в самую точку и изложил все без побочных эффектов, другие люди могли бы извлечь пользу и, вероятно, придут снова, чтобы получить больше. Спасибо!

255. glour - September 17, 2021

नमस्ते, मैंने उसी समय एक खोज इंजन के माध्यम से आपकी वेब साइट की खोज की थी जब एक समान विषय की खोज की गई थी। मेरे द्वारा इस पोस्ट में वास्तव में प्रसंशा की जाती है। मेरे द्वारा इसे हर जगह ढूंढा जा रहा था! आपकी साइट ने शीर्ष पर कील ठोक दी और साइड इफेक्ट के बिना पूरी बात को रेखांकित किया, अन्य लोग लाभ उठा सकते थे और शायद अधिक प्राप्त करने के लिए फिर से आएंगे। धन्यवाद!

256. brirlle - September 17, 2021

Bonjour, j’ai découvert votre site web via un moteur de recherche en même temps que je cherchais un sujet similaire. J’apprécie vraiment cet article. Je l’ai cherché partout ! Votre site a frappé le clou sur le dessus et a souligné l’ensemble de la chose sans avoir d’effet secondaire, d’autres personnes pourraient prendre un avantage et sera probablement revenir pour obtenir plus. Je vous remercie !


Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: