Setup Samba Share

Setup Samba Share:

bash
1
2
apt update && apt install samba -y
vi /etc/samba/smb.conf

Add this at the end of the config:

plaintext
1
2
3
4
5
6
7
8
9
[media]
path = /var/lib/vz/storage1
browseable = yes
writable = yes
guest ok = no
read only = no
create mask = 0775
directory mask = 0775
valid users = root

Setup a secure password

bash
1
smbpasswd -a root

Add Samba Share Storage to your PC as a network attached storage (local):

bash
1
gio mount smb://root@<proxmox-ip>/storage1