天天看點

Linux (Ubuntu) 下檔案共享服務 Samba 安裝

安裝

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>
           

重新啟動

sudo service smbd restart
           

允許通路外部符号連結

[global]

wide links = yes

allow insecure wide links = yes
           

附:

遠端挂載samba檔案系統

sudo mount -t cifs -o username=<>,password=<> //<service>/<path> /<mount-point>
           

自動挂載,在/etc/fstab增加

//<service>/<path> /<mount-point> cifs username=<>,password=<> 0  0
           

CenterOS

臨時關閉SeLinux

setenforce 0
sestatus
           

啟動SMB服務:

systemctl start smb
           

繼續閱讀