Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 655 Bytes

Ubuntu配置samba.md

File metadata and controls

45 lines (36 loc) · 655 Bytes
title date tags categories
Ubuntu配置samba
2021-05-29 09:35:00 -0700
ubuntu
samba
技术

安装samba

sudo apt install samba

配置samba

sudo nano /etc/samba/smb.conf
[global]
read raw = Yes
write raw = Yes
socket options = TCP_NODELAY IPTOS_LOWDELAY SO_RCVBUF=131072 SO_SNDBUF=131072
min receivefile size = 16384
use sendfile = true
aio read size = 16384
aio write size = 16384

[sambashare]
comment = Samba on Ubuntu
path = /home/username/sambashare
read only = no
browsable = yes
sudo service smbd restart

设置用户名密码

sudo smbpasswd -a username