ubuntu14.04搭建Samba服务器实现文件共享

一、安装 samba 的核心插件:

1、sudo apt-get install samba 如果安装遇到问题,使用sudo aptitude install samba

二、修改 cd /etc/samba 下的配置文件 smb.conf :

2、sudo vim /etc/samba/smb.conf

三、添加配置文件:

将:security=user 改为security=share

在smb.conf的最后添加

x210v3_bsp

comment=samba ##这个是说明,随意填

path=/root/x210v3_bsp ## 这个是要分享的路径

public=yes

create mask=0777

directory mask=0777

writable=yes

available=yes

##要能修改文件夹,要么就将/var/www/html权限设置为777,或者加上如下设置

forceuser=root

forcegroup=root

如果需要多个共享文件夹

添加多段

四、重启 samba 服务器:

/etc/init.d/smbd restart

五、查看ubuntu主机服务器的ip地址,在windows下输入"\\192.168.0.112",就可以访问了。

问题:

"net usershare"返回错误 255:net usershare add: cannot share path /home/jacky/skynet as we are restricted to only sharing directories we own.

Ask the administrator to add the line "usershare owner only = false"

to the global section of the smb.conf to allow this.

解决方案:

vim /etc/samba/smb.conf

在 usershare allow guests = yes 下面添加 usershare owner only = false

wq保存退出即可

最好是再次重启一下Samba:"/etc/init.d/smbd restart"

在windows下删除文件或者文件夹,samba服务器备份删除的文件:

1、修改 cd /etc/samba 下的配置文件 smb.conf

sudo vim /etc/samba/smb.conf

2、在smb.conf中添加:

#以下参数用于配置回收站。

vfs object = recycle

recycle:repository = .deleted/%U

recycle:versions = Yes

recycle:keeptree = Yes

recycle:maxsixe = 0

recycle:exclude = .tmp|.mp3

recycle:noversions = *.doc

3、重启samba服务器:

/etc/init.d/smbd restart

这样在共享文件夹根目录下(例如:我创建的是/work有了一个隐藏的文件夹.deleted)

相关推荐
XIAOHEZIcode21 小时前
Ubuntu 终端美化全栈指南:Bash 到 Kitty 踩坑实录
linux·ubuntu·命令行
张飞飞飞飞飞14 天前
Tmux命令使用教程
linux·服务器·ubuntu
盼小辉丶14 天前
Ubuntu极速部署OpenClaw完全指南(本地模型+DeepSeek)
linux·ubuntu·openclaw
黑白园14 天前
【环境搭建】Ubuntu安装(一)
linux·ubuntu
Moshow郑锴14 天前
Ubuntu用SDKMAN轻松管理多个Java 版本
java·ubuntu·sdkman
error:(14 天前
Ubuntu 22.04 GNOME远程桌面配置问题排查与解决全流程
linux·运维·ubuntu
Java知识技术分享14 天前
在windows上使用wsl安装Ubuntu~linux系统
linux·人工智能·windows·ubuntu
天疆说14 天前
在 Ubuntu 24.04 上安装 MATLAB R2021b
数据库·ubuntu·matlab
Clang's Blog14 天前
Ubuntu(20.04/22.04/24.04)国内环境一键安装 Docker、JDK17 和 Maven
ubuntu·docker·maven
izcll14 天前
ubuntu系统安装软件的方法
linux·运维·ubuntu