实验环境
在虚拟机Linux 6.5系统下需要2台Linux系统一台A作为服务端真实机作为测试客户端开启1台Linux系统。
实验目标
A作为服务端配置Samba服务器实现共享服务。
利用Win7真实机测试验证服务器A的共享是否有效。
实验步骤
1. 首先将A,B放到同一网段中为了以后实验方便配置永久起效的静态IP地址验证AB能否通信安装samba服务。
[root@s5 ftp]#yum-y install samba
2. 备份主配置文件编辑主配置文件。
[global]
workgroup = TARENA工作组名
security = share允许匿名访问共享
[tools]
comment = Test Share Direstory.共享目录的描述
path = /usr/src指定共享路径
public = yes所有人都可访问
read only = yes默认的权限为只读
#browseable = no 启用此行则为隐藏共享
[root@s5 ~]#cd/etc/samba/
[root@s5samba]#ls
lmhosts smb.conf smbusers
[root@s5samba]#cp smb.conf smb.conf.gz //备份主 配置文件
[root@s5samba]#vim smb.conf //编辑主配置文件
[global]
security =share
[tools]
comment=Test Share Direstory
path=/usr/src
public=yes
readonly =yes
#browseable=no
3. 启动服务并在win7上验证。
[root@s5samba]#/etc/init.d/smb restart