How to Samba on Ubuntu Server
- Chris Speed

- Jul 11, 2023
- 1 min read
Install
sudo apt install samba -yVerfiy Installation
systemctl status smbdConfigure
sudo nano /etc/samba/smb.confCreate symbolic to conf file
ln -sf /etc/samba/smb.conf smb.confEdit conf file
[plexbox-files]
comment = plexbox files
path = /media/plex
public = yes
guest ok = yes
browseable = yes
writeable = yes
force user = plexUpdate firewall rules
sudo ufw allow sambaRestart Samba
sudo systemctl restart smbdReferences:
How to Install and Configure Samba on Ubuntu. https://phoenixnap.com/kb/ubuntu-samba


Comments