# yum install nfs-utils
# mkdir /storage
# cat /etc/exports
/storage *(fsid=0,rw,sync,no_root_squash,no_subtree_check,crossmnt)
# service nfs start
samba 共享目录无法访问 解决方法总结
配置完成后使用命令
showmount -e *.*.3.1 查看共享目录
————————————————————————————————————————————————————————————————————
centos7设置共享文件夹(samba)
(三大共享文件的方法)
(smb共享,比较好)
安装并启动samba
[root@Kling ~]# yum -y install samba #使用yum安装samba
[root@Kling ~]# systemctl start smb nmb #启动
[root@Kling ~]# systemctl enable smb #开机自启
[root@Kling ~]# systemctl enable nmb #开机自启
防火墙放行samba
[root@Kling ~]# firewall-cmd --permanent --add-service=samba #放行samba服务
success
[root@Kling ~]# firewall-cmd --reload #重新加载防火墙
success
4,创建共享目录和用户
[root@Kling /]# mkdir /common
[root@Kling /]# useradd kouling
[root@Kling /]# smbpasswd -a kouling
[root@Kling /]# pdbedit -L #查看samba用户
kouling:1002:
修改配置文件
[common]
comment = ziliao
path = /common
allow hosts =10.1.100.0/24
writable = yes
语法检查
[root@Kling /]# testparm
Load smb config files from /etc/samba/smb.conf
Loaded services file OK.
Server role: ROLE_STANDALONE
Press enter to see a dump of your service definitions
设置权限
[root@Kling /]# chown -R 755 /common/
重启服务
[root@Kling common]# systemctl restart smb
[root@Kling common]# systemctl restart nmb
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: vue2、vue3、react响应式原理、组件声明周期阐述与对比
1.Vue2 的响应式原理、组件生命周期: 响应式原理: Vue.js 的响应式原理是通过使用 Object.defineProperty 函数来实现的。在 Vue.js 中,当一个对象被传入 Vue 实例的 data 选项中时,Vue.js 会将这个对象的属…