我正在尝试使用fuse和sshfs来安装驱动器。我用来执行此操作的命令是
sudo sshfs computer2@24.97.20.3:/Volumes/1TB\ Extra/MoodleMount /mnt/CampusServer -o allow_other,uid=33,gid=33
每次都很好。无需密码,因为ssh keygen已保存在服务器上。这是我的fstab文件。
/dev/xvda / ext3 defaults,errors=remount-ro,barrier=0 1 1
sshfs#computer2@24.97.20.3:/Volumes/1TB\040Extra/MoodleMount /mnt/CampusServer allow_other,uid=33,gid=33
我拿出-o因为它给了我更多的问题。将第二行添加到fstab文件后,运行“mount -a”
时出现以下错误mount: unknown filesystem type 'gid=33'
有关我做错的任何建议吗?
答案 0 :(得分:1)
您忽略了在fstab行中包含文件系统类型。你应该使用
sshfs#computer2@24.97.20.3:/Volumes/1TB\040Extra/MoodleMount /mnt/CampusServer fuse.sshfs allow_other,uid=33,gid=33