Setting up shared network between Ubuntu and Mac using Samba
January 23, 2017
Samba Setup (Ubuntu)
Install:
code
sudo apt install -y samba
Config sichern:
code
sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
sudo nano /etc/samba/smb.conf
Beispiel Share:
code
[Movies]
path = /media/NAS/MOVIES/
browseable = yes
read only = no
guest ok = yes
Restart:
code
sudo service smbd restart
User anlegen
code
sudo useradd bumblebee -m -G users
sudo passwd bumblebee
sudo smbpasswd -a bumblebee
Zugriff von macOS
Finder -> Cmd+K -> smb://<ip>