linux 下文件夹共享
Posted k_u_n_h
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 下文件夹共享相关的知识,希望对你有一定的参考价值。
[[email protected] share]# yum install samba -y
[[email protected] share]# cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
[[email protected] share]# vi /etc/samba/smb.conf
#======================= Global Settings =====================================
[global]
workgroup = WORKGROUP
security = share
map to guest = bad user
#============================ Share Definitions ==============================
[MyShare]
#修改为自己的共享路径
path = /share
browsable =yes
writable = yes
guest ok = yes
read only = no
load printers = no
printing = bsd
printcap name = /dev/null
disable spoolss = yes
[[email protected] share]# chkconfig smb on
[[email protected] share]# service smb start
在windows下访问\\IP就可以看见共享文件夹了
遇到无权限访问错误时将文件设为777权限
[[email protected] share]# chmod 777 /share
注意:以上为快捷配置存在安全隐患,物理机器不推荐使用。
以上是关于linux 下文件夹共享的主要内容,如果未能解决你的问题,请参考以下文章