How To Setup Samba on Ubuntu 20.0.4
Contents
Install Samba Server on Ubuntu 20.04
Install the Samba from Ubuntu repository with following commands in your Ubuntu terminal.
sudo apt upgrade
sudo apt install sambaAfter install, check status and version.
smbd --version
systemctl status smbd
systemctl status nmbdExample:
Edit /etc/samba/smb.conf
Example: Add the following lines
[global]
workgroup = WORKGROUP
server string = Samba
netbios name = ubuntu
security = user
map to guest = bad user
dns proxy = no
[Public]
path = /share
browsable =yes
writable = yes
guest ok = yes
read only = no
create mask = 644Create the Directory /share
Create the directory “/share" that is configured on the smb.conf file
sudo mkdir /share
sudo chmod 777 /shareRestart Samba Server
sudo systemctl restart smbd
Discussion
New Comments
No comments yet. Be the first one!