我试图在我的计算机家里(在Debian Jessie下)在学校的远程会话中创建一个目录。 我不想使用任何密码,我想做" cd work"看到我远方的会议。
所以我检查了 sshfs 的手册,该手册在目录中安装了ssh会话。 然后我发现没有遵循符号链接。 所以我使用了选项" -o follow_symlinks "它运作良好。
为了在没有密码的情况下连接工作,我创建了一个公共和私有的ssh密钥(使用 ssh-keygen ),然后我将其发送到服务器(使用 ssh-copy- ID )。当我尝试连接ssh时,服务器不会要求输入密码。 但是当我尝试将此密钥用于sshfs时,服务器不会要求输入密码,但所有符号链接都被破坏 !!
[16-05-17 19:47]ShellCode-Pc:/tmp/test shellcode) ls
ls: cannot access Music: No such file or directory
ls: cannot access VMs: No such file or directory
ls: cannot access Documents: No such file or directory
ls: cannot access Desktop-Windows: No such file or directory
ls: cannot access Videos: No such file or directory
ls: cannot access Bibliotheque: No such file or directory
ls: cannot access Rushes: No such file or directory
ls: cannot access Downloads: No such file or directory
ls: cannot access Pictures: No such file or directory
ls: cannot access ISOs: No such file or directory
Bibliotheque boost_1_60_0 boost_1_60_0.tar.gz Desktop-Windows Documents Downloads ISOs Music Pictures Remise Rushes Videos VMs Wallpapers Www
[16-05-17 19:48]ShellCode-Pc:/tmp/test shellcode)
像 boost_1_60_0 这样的主页文件夹可以,但不是符号链接......我只是不明白为什么。有人有答案吗? :)
答案 0 :(得分:0)
您可能希望使用-o transform_symlinks
而不是-o follow_symlinks
。