Linux下使用SSHFS挂载远程服务器文件初体验
背景
初体验
安装
apt-get -y install sshfs #Debian
挂载
sshfs [email protected]:/home /test
取消挂载
umount -f /test
开机自己挂载
echo 'sshfs#[email protected]:/home /test fuse.sshfs defaults 0 0' >>/etc/fstab
apt-get -y install sshfs #Debian
sshfs [email protected]:/home /test
umount -f /test
echo 'sshfs#[email protected]:/home /test fuse.sshfs defaults 0 0' >>/etc/fstab