Windows直接通过smb读写linux系统文件

一句话:原理是通过samba协议,将Linux的目录挂载到Windows.

1. 首先在linux上安装samba

1
apt-get install -y samba

2. 添加samba用户

1
smbpasswd -a yourusername

3. 修改samba配置文件

1
2
3
4
5
6
7
8
vim /etc/samba/smb.conf
# 在末尾或适当的位置添加属性

[yourusername]
comment = my share
path = /home/mydir
broweable = yes
writeable = yes

4. 重启samba服务

1
systemctl restart smbd

5. 映射网络驱动器

在Windows上挂载刚才的目录

在我的电脑(win7叫计算机 win10叫此电脑)右键 -> 映射网络驱动器

1
2
3
文件夹填 \\IP地址或主机名\yourusername(刚才添加的配置项)
勾选 使用其他凭据连接
点击完成,输入用户密码即可。

Windows直接通过smb读写linux系统文件
http://anximin.github.io/2024/01/29/Win_to_linux_with_smbd/
作者
Sylar
发布于
2024年1月29日
许可协议