当前位置: 首页 > 图文教程 > 服务器 > Linux服务器 > FedoraLinux8配置SAMBA服务的过程

Linux服务器
Linux服务器:关于Apache配置和日志
用redhat9.0来配置一台DHCP服务器
Linux服务器前台常出现的错误提示及含意
让APACHE防止多线程下载
在linux上SubVersion定期完整备份脚本
UNIX服务器共享Vista工作站磁盘目录
Linux系统下基本网络参数DNS的设置
Linux系统的服务器优化及安全配置
不用关闭selinux而成功启动samba的方法
LinuxVirtualServer负载均衡之DR配置实例
Linux基本命令与Tomcat维护
Linux服务器远程控制技术及实战
Linux系统下Web服务器配置详细介绍
误删除后Linux无法解析域名的解决办法
linuxapache目录添加密码
负载均衡技术建设高负载的网络站点
Fedora8下Apache配置与管理
Linux系统下架设DHCP服务器的方法
vsftpd本地用户不能登录问题的解决
Linux+Apache+PHP+JSP的Resin解决方案

Linux服务器 中的 FedoraLinux8配置SAMBA服务的过程


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-18   浏览: 35 ::
收藏到网摘: n/a

1、使用yum命令来安装或更新你的SAMBA包。
 
yuminstallsamba
 
2、samba的配置文件在如下
 
/etc/samba/smb.conf
 
修改其配置如下:
 
#=======================GlobalSettings=====================================[global]#-----------------------NetwrokRelatedOptions-------------------------##workgroup=NT-Domain-NameorWorkgroup-Name,eg:MIDEARTH##serverstringistheequivalentoftheNTDescriptionfield##netbiosnamecanbeusedtospecifyaservernamenottiedtothehostname##InterfacesletsyouconfigureSambatousemultipleinterfaces#Ifyouhavemultiplenetworkinterfacesthenyoucanlisttheones#youwanttolistenon(neveromitlocalhost)##HostsAllow/HostsDenyletsyourestrictwhocanconnect,andyoucan#specifiyitasapershareoptionaswell#workgroup=robinserverstring=MYSERVERnetbiosname=MYSERVER;hostsallow=127.192.168.#---------------------------LoggingOptions-----------------------------##LogFileletyouspecifywheretoputlogsandhowtosplitthemup.##MaxLogSizeletyouspecifythemaxsizelogfilesshouldreach#logssplitpermachinelogfile=/var/log/samba/log.%m#max50KBperlogfile,thenrotatemaxlogsize=50#-----------------------StandaloneServerOptions------------------------##Scuritycanbesettouser,share(deprecated)orserver(deprecated)##Backendtostoreuserinformationin.Newinstallationsshould#useeithertdbsamorldapsam.smbpasswdisavailableforbackwards#compatibility.tdbsamrequiresnofurtherconfiguration.security=share;encryptpasswords=yesguestok=yesguestaccount=root#============================ShareDefinitions==============================[homes]comment=HomeDirectoriesbrowseable=nowritable=yes;validusers=%S;validusers=MYDOMAIN\%S[printers]comment=AllPrinterspath=/var/spool/sambabrowseable=no;guestok=no;writable=Noprintable=yes#Un-commentthefollowingandcreatethenetlogondirectoryforDomainLogons;[netlogon];comment=NetworkLogonService;path=/var/lib/samba/netlogon;guestok=yes;writable=no;sharemodes=no#Un-commentthefollowingtoprovideaspecificrovingprofileshare#thedefaultistousetheuser'shomedirectory;[Profiles];path=/var/lib/samba/profiles;browseable=no;guestok=yes#Apubliclyaccessibledirectory,butreadonly,exceptforpeoplein#the"staff"group;[public];comment=PublicStuff;path=/home/samba;public=yes;writable=yes;printable=no;writelist=+staff[temp]path=/root/tempwriteable=yes;browseable=yesguestok=yes

 3、重启SAMBA服务
 
/etc/init.d/smbrestart
 
4、Enjoy
 
PS:FedoraCore从V2起都有预装SELinux,这个不会配置的可以先把她关掉,关闭的方法如下:
 
修改/etc/selinux/config文件中的SELINUX=""为disabled,然后重启FC.