samba服务器的搭建
Posted 是光哥呀
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了samba服务器的搭建相关的知识,希望对你有一定的参考价值。
目录
一、Ubuntu端配置
1、安装samba
sudo apt-get install samba
sudo apt-get install samba-common
samba是实现Ubuntu和Windows之间通过网络传输实现文件的共享,所以要先有一个目标文件夹,文件得有可读可写的权限
2、创建目标文件夹,修改文件夹权限
mkdir hi_study
sudo chmod 777 hi_study/
3、修改samba的配置文件
sudo smbpasswd -a lhg(根据用户名)
这里用户名根据Ubuntu上的用户名
修改samba的配置文件
sudo vi /etc/samba/smb.conf
在文档的末尾加入如下命令,如图
路径一定根据自己文件位置来修改,用户名需要改成自己的
[share]
comment = share folder
browseable = yes
path = /home/lhg/hi_study
create mask = 0700
directory mask = 0700
valid users = lhg
force user = lhg
force group = lhg
public = yes
available = yes
writable = yes
comment = share folder //共享文件夹
browseable = yes //权限
public = yes //公开
writable = yes //可写
4、保存文件后,重启samba服务
sudo service smbd restart
二、Windows端配置
1、“我的电脑” 右键选择 “映射网络驱动器”
2、Ubuntu里输入命令,找出ip号
ifconfig
3、填入配置信息
填入到如图位置,IP地址前需要加入\\,IP末尾加入\\share
以上是关于samba服务器的搭建的主要内容,如果未能解决你的问题,请参考以下文章