Linux挂载远程目录到本地及卸载
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux挂载远程目录到本地及卸载相关的知识,希望对你有一定的参考价值。
这里我们需要使用到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 [email protected]:/home/ /mnt/
sshfs 用户名@远程主机IP:远程主机路径 本地挂载点
sshfs -o transform_symlinks -o follow_symlinks [email protected]: /home/username/sshfs
-o transform_symlinks 表示转换绝对链接符号为相对链接符号
-o follow_symlinks 沿用服务器上的链接符号
卸载
fusermount -u /mnt
本文出自 “小刀” 博客,请务必保留此出处http://quyong.blog.51cto.com/2434342/1865222
以上是关于Linux挂载远程目录到本地及卸载的主要内容,如果未能解决你的问题,请参考以下文章