ssh登陆不用输入密码。
1.ssh-keygen -t rsa
生成密钥,路径~/.ssh/.
2.ssh-copy-id caz28@192.168.0.xxx
copy公钥到远程服务器。
也可以先把 id_rsa.pub 复制到服务器,再把内容添加到服务器的 ~/.ssh/authorized_keys 文件.
以后就可以用下面命令直接登录:
ssh 192.168.0.xxx
sshfs挂载:
挂载远程work目录到本地swork目录。
sshfs caz28@192.168.0.xxx:/home/caz28/work/ /home/caz28/swork/
sshfs卸载:
sudo umount swork
sshfs自动挂载
/etc/fstab 文件里添加:
sshfs#cuianzhu@192.168.0.107:/home/caz28/work/ /home/caz28/swork/ fuse comment=sshfs,noauto,users,exec,uid=1000,gid=1000,allow_othe r,reconnect,transform_symlinks,BatchMode=yes 0 0