在Ubuntu10.10 中增加 Samba服务

来源:互联网 发布:安卓运行windows xp 编辑:程序博客网 时间:2024/06/05 17:47

sudo apt-get install samba smbfs

####图形界面
###sudo apt-get install system-config-samba

mkdir /home/flexitime/share

chmod 755 /home/flexitime/share

sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak

sudo nano /etc/samba/smb.conf
----------------------------

找到下关键字:
# security = user
替换为:

# by flexitime
security = user
username map = /etc/samba/smbusers

 

# 在文件最后增加

# by flexitime

 

###这个是只读的
[iso]
comment = Shared Folder with username and password
path = /stgb
read only = yes
create mask = 0755
directory mask = 0755

 

###这个是可写的
[stgb]
comment = Shared Folder with username and password
path = /stgb
writeable = yes
read only = no
create mask = 0777
directory mask = 0777
valid users = flexitime


###################
然后顺便把这里改一下,找到[global]把 workgroup = MSHOME 改成
workgroup = WORKGROUP
display charset = UTF-8
unix charset = UTF-8
dos charset = cp936
####################
########

------------------
sudo useradd wuser
sudo smbpasswd -a wuser

// by delete user: sudo smbpasswd -x wuser

sudo nano /etc/samba/smbusers
---------------------
#by flexitime
wuser="windows user"
fleiximte=""
---------------------
sudo testparm
sudo service smbd restart

原创粉丝点击