首页 > 代码库 > RH134 UNIT7
RH134 UNIT7
第七单元 访问网络文件共享服务
1.CIFS
CIFS 是针对windows操作系统的本地文件网络文件系统
安装samba-client.x86_64
识别共享
smbclient -L //ip
挂载
mount //ip/sharename /mnt -o username=guest ###挂载共享文件 windows中匿名用户为guest
自动挂载
2.NFS
NFS是由linux,unix及其他类似操作系统使用的互联网标准协议
安装nfs-utils
yum install nfs-untils -y
识别分享
showmount -e ip
挂载
mount ip:/sharenfs /mnt
自动挂载
自动挂载需要安装autofs
yum install autofs -y
启动autofs服务
systemctl start autofs
system status autofs ###查看autofs服务状态
开启autofs服务后输入cd /net/ip 命令即可自动挂载并进入分享目录
自定义挂载点
配置autofs文件主配置文件
vim /etc/auto.master ###autofs的主配置文件
/nfs /etc/auto.nfs ###/nfs挂载上层目录 /etc/auto.nfs策略文件
编辑/etc/auto.nfs 策略文件
* ip:/nfsshare/& ###自策略文件内容
配置结束重启autofs服务
systemctl restart autofs
RH134 UNIT7