首页 > 代码库 > 二:Unit 7

二:Unit 7

Unit7访问网络文件系统

 

 

cifs网络文件系统访问

 

1.安装共享访问客户端

yum install samba-client -y

2.识别共享服务器共享目录

smbclient -L //172.25.254.253

 技术分享

 

 技术分享

 

3.访问共享

命令访问)

 技术分享

 


挂载访问)

mount //172.25.254.253/westos /mnt -o username=guest

 

 

 

4.开机自动挂载cifs

方法1)

vim /etc/fstab

//172.25.254.253/westos /mntcifsdefaults,username=guest 0 0

 

方法2)

vim /etc/rc.d/rc.local

mount //172.25.254.253/westos /mnt -o username=guest

 

 

 

nfs网络文件系统的访问

 

1.安装访问共享软件

yum install nfs-utils -y

 

2.识别共享

showmount -e 172.25.254.250

 

3.使用共享

mount 172.25.254.250:/nfsshare/nfs1 /mnt

 

4.自动挂载

方法1)

vim /etc/fstab

172.25.254.250:/nfsshare/nfs1 /mnt nfs defaults 0 0

 

方法2)

vim /etc/rc.d/rc.local

mount 172.25.254.250:/nfsshare/nfs1 /mnt

 

chmod 755 /etc/rc.d/rc.local

 

 

###########autofs自动挂载服务

1.服务功能

默认使用mount挂载共享时当不使用共享也会处于挂载状态

浪费共享服务器资源

Autofs可以实现使用时自动挂载,当闲置时自动卸载

 

2.安装服务

yum install autofs -y

systemctl start sutofs

 

3.访问

cd /net/172.25.254.250/nfsshare/nfs1

 

4.设定空闲卸载时间

vim /etc/autofs.conf

:15 timeout = 3        ##闲置3秒后系统自动卸载网络设备

 

 

5.实现自定义共享挂载点

vim /etc/auto.master

最终自定义挂载点的上层目录    子配置文件

例:/mnt            /etc/auto.nfs

 

vim 子配置文件

最终挂载点        网络共享目录

vim /etc/auto.nfs

pub1    172.25.254.250:/nfsshare/nfs1

*      172.25.254.250:/nfsshare/&    ##指定任意共享挂载


本文出自 “12110289” 博客,谢绝转载!

二:Unit 7