OiPenguin;244832 Wrote: > > The fuse/sshfs suggestion is attempted as well, however when I try > > Code: -------------------- > > sudo sshfs [EMAIL PROTECTED]:/remote/folder/to/mount /home/user/local/mountpoint -------------------- > > I get an error saying "sshfs missing host" - This shouldn't be an IP > issue since "ssh [EMAIL PROTECTED]" works well. > Just tried to set up fuse and sshfs on my server and all worked like a charm: These were the steps taken: 1. Installed fuse and sshfs 2. Added 'fuse' to /etc/modules and did a 'modprobe fuse' once 3. Added my user to the 'fuse' group and logged out and in again 4. Created a directory as local mount point 5. Mounted the remote directory with 'sshfs [EMAIL PROTECTED]:/home/val /home/taco/tux/' No sudo needed it seems and you unmount with 'fusermount -u /home/taco/tux' and you can also add a line like this to your /etc/fstab to not have always remember the remote path: [EMAIL PROTECTED]:/home/taco /home/val/media/taco_home fuse user,noauto 0 0
A quick googling turned up that this error may happen when the colon or/and the slash are missing in the server URL, something you didn't forget in your example, but maybe better check a second time in your actual command. ;) Bye, signor_rossi. -- signor_rossi ------------------------------------------------------------------------ signor_rossi's Profile: http://forums.slimdevices.com/member.php?userid=11941 View this thread: http://forums.slimdevices.com/showthread.php?t=40283 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/unix
