smb 共享

简单版

1.YUM安装SMB

yum -y install smb

2.备份配置文件,并新建一个新的配置文件

cd /etc/samba/

mv smb.conf smb.conf.bak

vim smb.conf


security = share                    #share为匿名共享
[test]
        comment = test smb      #描述
        path = /tmp/test            #共享路径
        writable = yes                #是否可写
        public = yes                  #公共目录(匿名时使用)
        browseable = no         #不可见共享
chmod 757 /tmp/test/

3. service smb restart

完。。。


你可能感兴趣的:(smb)