Linux系统下smb实验步骤
第一步
挂载
mount /dev/cdrom /media/cdrom
rpm -qa | grep samba
启动service smb start ====/etc/init.d/smb start
我们共享一个目录:这个目录可以让一个组读写
第二步
(groupadd share 新建用户 share 建立用户 user1
并利用加入到组 usermod -g share user1到组)
useradd user1
passwd user1(123)
groupadd share
usermod -g share user1
第三步
我们追加权限
chown :share /home/share
chmod -c g+wxr /home/share(权限模式改变成0775rwxrwxr-x)
第四步
我们编译samba的配置文件
vi /etc/samba/smb.conf
[share]
comment = samba's share
writable = yes=@share=write list
path = /home/share
还需要吧这个用户写入到smbpasswd里面
cd /etc/samba
ls
smbpasswd -a user1
我们从客户端验证一下
运行\\192.168.0.200
看效果祝愿大家好运。
相关推荐
joyssh 2015-03-06
amorfait 2008-01-03
kyssfanhui 2007-07-09
airfish000 2007-05-01
yczgh 2011-05-19
ECSHOP专属建设 2016-10-17
旭灿 2014-11-30
linjava 2012-03-17
dqcoffee 2012-03-16
thone00 2011-08-25
newdye 2014-08-14
ningningmingming 2010-08-28
86477414 2010-05-26
ftafta 2010-02-26
thone00 2010-01-28
六六哥 2009-02-07
wyjq 2019-06-25
dantesite 2008-10-07