Ubuntu 15.10 no fuse group
Asked Answered
R

1

23

I am trying to use sshfs to mount a remote file system. All the guides I can find online say I need to add myself to the fuse group but when I run

sudo gpasswd -a $USER fuse 

I get

gpasswd: group 'fuse' does not exist in /etc/group

however when I run:

sudo apt-get install fuse

I get

fuse is already the newest version.

I am using a relatively new install of Ubuntu 15.10 on 64 bit.

Thanks for any help

Ruhr answered 25/2, 2016 at 18:42 Comment(0)
C
30

Based on my experiments, explicitly creating the fuse group and adding your user to it is NOT required to mount ssh file system.

To summarize, here are the steps copied from this page:

  1. install sshfs
$ sudo apt-get install sshfs
[sudo] password for johndoe: 
Reading package lists... Done
[...]
Setting up sshfs (2.5-1ubuntu1) ...
  1. Create local mount point

$ mkdir /home/johndoe/sshfs-path/

  1. Mount remote folder /remote/path to /home/johndoe/sshfs-path/

$ sshfs [email protected]:/remote/path /home/johndoe/sshfs-path/

  1. And finally, to umount ...

$ fusermount -u /home/johndoe/sshfs-path/

Cohette answered 26/3, 2016 at 5:34 Comment(1)
This is right, but why is creating a fuse group not required yet most tutorials online mention it. The official Ubuntu page gives no explanation for not creating a fuse group!Delainedelainey

© 2022 - 2024 — McMap. All rights reserved.