Personal log of yet another digital native.
sudo apt install -y samba
sudo vim /etc/samba/smb.conf
interfaces = 127.0.0.0/8 eth0
bind interfaces only = yes
security = share
guest account = nobody
[tdarr]
path = /cache/tdarr-cache
browseable = yes
guest ok = yes
testparm
returned Ignoring invalid value 'share' for parameter 'security'
security = share
isn’t a thing anymoresmb.conf
sudo apt remove -y samba samba-common && sudo apt purge -y samba samba-common && sudo apt autoremove -y && sudo rm -rf /etc/samba/ /etc/default/samba
sudo apt install -y samba
sudo cp /etc/samba/smb.conf /etc/samba/backup_smb.conf
sudo vim /etc/samba/smb.conf
guest account = nobody
[tdarr-temp]
path = /tmp/tdarr-temp
browsable = yes
guest ok = yes
writable = yes
sudo systemcrl restart smbd
sudo adduser [username]
sudo smbpasswd -a [username]
3. sudo vim /etc/samba/smb.conf
[tdarr]
path = /tmp/tdarr-temp
browsable = yes
guest ok = yes
writable = yes
read only = no
create mark = 666
directory mask = 777
force user = [username]
force group = [username]
4. `testparm`
5. `sudo systemctl restart smbd`
6. This did not work even when mapping drive to enter credentials :(
7. `sudo chown [username]:[username] /tmp/tdarr-temp`
8. It worked.
9. Didn't need mapping of network drive in the end