windows网络磁盘映射到linux目录

1. 安装软件

yum install samba

2. 添加端口到防火墙

-A INPUT -m state --state NEW -m tcp -p tcp --dport 139 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 445 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p udp --dport 137 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p udp --dport 138 -j ACCEPT

3. 配置
修改配置前最好先备份一下
/etc/samba/smb.conf

[global]
workgroup = WORKGROUP  
security = share  #修改global下的security为share,这样就无需使用用户账号登录了
map to guest = bad user  
#============================ Share Definitions ==============================  
[MyShare]  #添加一个自己的配置
path = /share #用来被映射的目录,注意权限的问题,如果是代码操作的话,需要有other用户有写操作   
browsable =yes  #可预览
writable = yes  #可写
guest ok = yes  
read only = no 

你可能感兴趣的:(windows网络磁盘映射到linux目录)