您的位置:首页 > 运维架构 > Linux

Linux (Ubuntu) 下文件共享服务 Samba 安装

2013-09-11 13:21 459 查看
安装

sudo apt-get install samba

配置,每个 linux 用户独立访问各自的 home 目录

打开配置文件,找到 homes 配置组,如下修改

sudo vim /etc/samba/smb.conf

[homes]
comment = Home Directories
browseable = no

# By default, the home directories are exported read-only. Change the
# next parameter to 'no' if you want to be able to write to them.
read only = no

# File creation mask is set to 0700 for security reasons. If you want to
# create files with group=rw permissions, set next parameter to 0775.
create mask = 0644

# Directory creation mask is set to 0700 for security reasons. If you want to
# create dirs. with group=rw permissions, set next parameter to 0775.
directory mask = 0755

# By default, \\server\username shares can be connected to by anyone
# with access to the samba server. Un-comment the following parameter
# to make sure that only "username" can connect to \\server\username
# The following parameter makes sure that only "username" can connect
#
# This might need tweaking when using external authentication schemes
valid users = %S


设置用户密码

sudo smbpasswd -a <user>

重新启动

service smbd restart

附:

远程挂载samba文件系统

sudo mount -t cifs -o username=<>,password=<> //<service>/<path> /<mount-point>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: