Samba allows you to share folders from PocketNode accessible by Mac, Windows, Linux, and iOS devices.
/etc/samba/smb.conf:
[global]
workgroup = WORKGROUP
server string = PocketNode
security = user
map to guest = Bad User
dns proxy = no
[shared]
path = /shared
browsable = yes
writable = yes
guest ok = yes
create mask = 0777
directory mask = 0777
public = yes# Create shared directory
mkdir -p /shared
chmod 777 /shared
# Set Samba password for user
echo -e "android\nandroid" | smbpasswd -a android -s
# Start services
smbd
nmbd- Finder β
Cmd + Kβsmb://192.168.100.175/shared - Or: Finder sidebar β Network β PocketNode
- File Explorer β address bar:
\\192.168.100.175\shared
- Files β
...menu β Connect to Server βsmb://192.168.100.175/shared
# Mount temporarily
mount -t cifs //192.168.100.175/shared /mnt/pocketnode -o guest
# Or use file manager: smb://192.168.100.175/sharedEdit /etc/samba/smb.conf and add:
[downloads]
path = /var/lib/transmission-daemon/downloads
browsable = yes
writable = no
guest ok = yesRestart: killall smbd && smbd