共计 2080 个字符,预计需要花费 6 分钟才能阅读完成。
本文总结了 Ubuntu 16.04 环境下的 samba 安装、配置及使用。下文中的所有命令均使用 root 权限或添加 sudo 命令执行。
1. samba 安装
apt-get install samba samba-common smbclient
2. 查看 samba 服务
samba 安装成功后,会默认启动 samba 服务。
ps -ef | grep smb
3. 修改 samba 配置文件 /etc/samba/smb.conf
#======================= Share Definitions =======================
# Un-comment the following and create the netlogon directory for Domain Logons
# Un-comment the following (and tweak the other settings below to suit)
# to enable the default home directory shares. This will share each
# user’s home directory as \\server\username
[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 = 0775
# 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 = 0775
4. 重启 samba 服务
/etc/init.d/samba restart
5. 调试 samba 功能
5.1 创建 linux 登录账号(例如 test_user/test_password)
adduser test_user
5.2 给上述 test_user 用户创建 samba 密码
smbpasswd -a test_user
5.3 验证
我的 Ubantu ip 是 192.168.131.128,在 windows 机器上输入 \\192.168.131.128\test_user,然后按提示输入密码 test_password,就可以成功访问。
如果因权限不足问题,不能创建、修改该目录下的文件,请检查“3. 修改 samba 配置文件 /etc/samba/smb.conf”是否配置正确。samba 详细配置见 /etc/samba/smb.conf 文件中的注释或用命令 man smb.conf 查看。
更多 Samba 相关教程见以下内容:
CentOS 7.2 安装配置 Samba 服务器 http://www.linuxidc.com/Linux/2017-03/141390.htm
VMWare 虚拟机 Ubuntu 双网卡 访问 samba 速度 翻倍 http://www.linuxidc.com/Linux/2013-06/85445.htm
Ubuntu 15.04 安装 Samba 服务 http://www.linuxidc.com/Linux/2016-03/129201.htm
CentOS7.2 下源码搭建 Samba 文件服务器[原创] http://www.linuxidc.com/Linux/2017-06/144557.htm
samba 安装使用图解 http://www.linuxidc.com/Linux/2017-03/141254.htm
CentOS 7.2 安装配置 Samba 服务器 http://www.linuxidc.com/Linux/2017-03/141390.htm
CentOS 部署 Samba 企业文件共享服务 http://www.linuxidc.com/Linux/2016-06/132609.htm
Samba 共享服务器的搭建优化 http://www.linuxidc.com/Linux/2017-03/141700.htm
CentOS 6.7 下 Samba 服务器的搭建与配置(share 共享模式)http://www.linuxidc.com/Linux/2016-12/138220.htm
Ubuntu 16.04 下 Samba 相关配置 http://www.linuxidc.com/Linux/2016-12/138498.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-07/145445.htm