
Notes
Just fleeting thoughts that pop into my mind. Or perhaps things I’ve been thinking about that don’t really warrant a full-on post.
-
Setting up samba share on my home network
Secure shell into file server.
Install samba if not already present:
sudo apt-get install sambaCreate samba password with :
sudo smbpasswd -a YOUR_USERNAME
Configuring the share:
sudo nano /etc/samba/smb.conf# /etc/samba/smb.conf [media] path = /home/YOUR_USERNAME/Share available = yes valid users = YOUR_USERNAME read only = no browsable = yes public = yes writable = yesRestart samba:
sudo restart smbd
