Debian samba 简单配置

 Debian squeeze 给单位架一个内网服务器,大家共享东西,最大权限

 
  
  
  
  
  1. aptitude update  
  2. aptitude install samba 
  3. #会提示填工作组,默认是WORKGROUP 
  4.  
  5. 102 line 
  6.  ;security = user 
  7. 改为 
  8.   security = share 
  9.  
  10. 在后面加上 
  11.  
  12.  
  13. #======================= Share Definitions ======================= 
  14. [any]                                   #随便填。 
  15.         comment = public share          #注释 
  16.         writeable = yes                 #可写 
  17.         create mode = 777               #创建文件权限 
  18.         public = yes                    #匿名可访问 
  19.         path = /public                  #共享目录 
  20.         directory mode = 777            #创建文件夹权限 

 

   
   
   
   
  1. chmod 1777 /public 
  2.  
  3.  
  4. 1是“stickc位”。如果您执行一个ls - l的该文件夹,你会看到一个“T”在它旁边。  
  5. sticky位“T”的意思是:  
  6. “不要让任何人删除此文件夹或改变它的权限” 

如果是服务器上本身的东西,比如说,从移动硬盘拷到服务器上,是拖不下来东西的。

ls -l 发现是600的权限。

还得 chmod -R 777 /public/*

就可以正常下下来了。

 

你可能感兴趣的:(Debian,职场,samba,samba,休闲)