Results 1 to 10 of 60

Thread: HOWTO: Mount SSH Shares

Threaded View

  1. #1
    Join Date
    May 2005
    Beans
    366
    sshfs has the advantage over a KIOslave or GnomeVFS that any program can use it. For instance, in Kubuntu Amarok wasn't able to play my remote music through fish:/ but worked fine using sshfs.

    1) Install the software
    sudo apt-get install sshfs

    2) Add fuse to /etc/modules
    sudo nano /etc/modules

    3) Add yourself to the 'fuse' group, then log out and log in again.
    sudo adduser your-username fuse

    4) Create a mountpoint and give yourself ownership
    sudo mkdir /media/mount-name
    sudo chown your-username /media/mount-name

    5) Mount the filesystem
    sshfs remote-system-name:/remote-folder /media/mount-name

    6) Unmount the filesystem
    fusermount -u /media/mount-name

    Directions taken from http://ubuntu.wordpress.com/2005/10/...m-using-sshfs/ More info on sshfs is available at http://fuse.sourceforge.net/sshfs.html

    I've run into a strange problem on two Kubuntu machines where, after using sshfs, you're unable to unlock your own computer. Logging in works fine, but you can't return from a password-protected screensaver. My solution was to start a new session, change my password, then return to the old session and use the new password to unlock it.
    Last edited by sciurus; January 5th, 2006 at 03:56 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •