23 lines
752 B
Plaintext
23 lines
752 B
Plaintext
# Samba share on rpi5-vish (192.168.0.66)
|
|
# Shares the NVMe storagepool for access by other hosts on the LAN
|
|
#
|
|
# Mounted by:
|
|
# - homelab-vm: /mnt/pi5_storagepool (creds: /etc/samba/.pi5_credentials)
|
|
# - Atlantis: /volume1/pi5_storagepool (creds: /root/.pi5_smb_creds)
|
|
#
|
|
# To apply: copy relevant [storagepool] block into /etc/samba/smb.conf on pi-5
|
|
# Set SMB password: "REDACTED_PASSWORD" -e 'PASSWORD\nPASSWORD' | sudo smbpasswd -a vish -s
|
|
#
|
|
# pi-5 also mounts from Atlantis via NFS:
|
|
# /mnt/atlantis_data → 192.168.0.200:/volume1/data (media/torrents/usenet)
|
|
|
|
[storagepool]
|
|
path = /mnt/storagepool
|
|
browseable = yes
|
|
read only = no
|
|
guest ok = no
|
|
valid users = vish
|
|
force user = vish
|
|
create mask = 0664
|
|
directory mask = 0775
|