Ubuntu15.10无保险丝组
Ubuntu 15.10 no fuse group
我正在尝试使用 sshfs 挂载远程文件系统。我可以在网上找到的所有指南都说我需要将自己添加到保险丝组但是当我 运行
sudo gpasswd -a $USER fuse
我明白了
gpasswd: group 'fuse' does not exist in /etc/group
然而当我运行:
sudo apt-get install fuse
我明白了
fuse is already the newest version.
我在 64 位上使用相对较新的 Ubuntu 15.10 安装。
感谢您的帮助
根据我的实验,显式创建 fuse
组并将您的用户添加到其中 不需要 挂载 ssh
文件系统。
总而言之,以下是从 this page 复制的步骤:
- 安装
sshfs
$ sudo apt-get install sshfs
[sudo] password for johndoe:
Reading package lists... Done
[...]
Setting up sshfs (2.5-1ubuntu1) ...
- 创建本地挂载点
$ mkdir /home/johndoe/sshfs-path/
- 将远程文件夹
/remote/path
装载到 /home/johndoe/sshfs-path/
$ sshfs remoteuser@111.222.333.444:/remote/path /home/johndoe/sshfs-path/
- 最后,卸载...
$ fusermount -u /home/johndoe/sshfs-path/
我正在尝试使用 sshfs 挂载远程文件系统。我可以在网上找到的所有指南都说我需要将自己添加到保险丝组但是当我 运行
sudo gpasswd -a $USER fuse
我明白了
gpasswd: group 'fuse' does not exist in /etc/group
然而当我运行:
sudo apt-get install fuse
我明白了
fuse is already the newest version.
我在 64 位上使用相对较新的 Ubuntu 15.10 安装。
感谢您的帮助
根据我的实验,显式创建 fuse
组并将您的用户添加到其中 不需要 挂载 ssh
文件系统。
总而言之,以下是从 this page 复制的步骤:
- 安装
sshfs
$ sudo apt-get install sshfs
[sudo] password for johndoe:
Reading package lists... Done
[...]
Setting up sshfs (2.5-1ubuntu1) ...
- 创建本地挂载点
$ mkdir /home/johndoe/sshfs-path/
- 将远程文件夹
/remote/path
装载到/home/johndoe/sshfs-path/
$ sshfs remoteuser@111.222.333.444:/remote/path /home/johndoe/sshfs-path/
- 最后,卸载...
$ fusermount -u /home/johndoe/sshfs-path/