> For AI agents: the complete documentation index is available at https://www.tteam.icu/llms.txt, the full documentation bundle is available at https://www.tteam.icu/llms-full.txt.

# 设置smb

```shell
yum install -y samba

cd /etc/samba
vim smb.conf

[ssd]
   comment = ssd
   path = /ssd
   browsable = yes
   read only = yes
   guest ok = yes
   delete veto files = yes
   admin users = buyfakett
   write list = buyfakett
   
chmod -R 755 /ssd
chown -R buyfakett:buyfakett /ssd

useradd buyfakett
smbpasswd -a buyfakett

systemctl enable smb --now
```
