基础部分之访问网络共享文件系统
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础部分之访问网络共享文件系统相关的知识,希望对你有一定的参考价值。
访问网络共享文件系统
一、访问windows
1.安装samba
yum install samba-client
smbclient -L //ip
mount //ip/目录名 /mnt/ -o username=guest
永久访问
vim /etc/fstab
//ip/目录名 /挂载点 cifs defaults,username=guest 0 0
mount -a 检测
二、linux之间的共享
1.手动挂载
yum install nfs-utils
showmount -e ip
mount ip:/分享的目录 /挂载点
2.自动挂载
yum install autofs
systemctl start autofs
cd /net/ip/分享的目录
vim /etc/sysconfig/autofs
timeout =5
3.自定义挂载方式
vim /etc/auto.master
最终挂载点的上层目录 自策略文件
/westos /etc/auto.nfs
vim 自策略文件(vim /etc/auto.nfs)
最终挂载点 网络挂载资源
nfs1 172.25.254.250:/nfsshare/nfs1
systemctl restart autofs
以上是关于基础部分之访问网络共享文件系统的主要内容,如果未能解决你的问题,请参考以下文章