这里我们需要使用到sshfs这个工具,安装这个工具需要epel源
1. 确认你的CentOS 的版本
首先通过以下命令确认你的CentOS 版本
#cat /etc/redhat-release
CentOS release 6.5 (Final)
2. 下载EPEL 的rpm 安装包
现在从上面的地址下载CentOS 版本所对应的EPEL 的版本
#wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
3. 安装EPEL
通过以下命令安装EPEL 软件包
#rpm -ivh epel-release-6-8.noarch.rpm
5. 检查EPEL 源
安装好EPEL 源后,用yum 命令来检查是否添加到源列表
# yum repolist
安装sshfs
yum -y install sshfs
挂载远程 ssh 文件系统:
sshfs root@192.168.1.218:/home/ /mnt/
sshfs 用户名@远程主机IP:远程主机路径 本地挂载点
sshfs -o transform_symlinks -o follow_symlinks user@hostname: /home/username/sshfs
-o transform_symlinks 表示转换绝对链接符号为相对链接符号
-o follow_symlinks 沿用服务器上的链接符号
卸载
fusermount -u /mnt