Debian Samba/SMB Freigabe erstellen (Windows Client kompatibel)
sudo apt install samba
Benutzer hinzufügen (Beispiel Benutzername veeam-agent
):
sudo useradd --no-create-home veeam-agent
sudo passwd veeam-agent
sudo smbpasswd -a veeam-agent
/etc/samba/smb.conf
anpassen:
Die Section [homes]
auskommentieren oder available = no
einfügen.
Freigabe erstellen:
[veeam_datastore]
path = /mnt/veeam_datastore
read only = no
guest ok = no
valid users = veeam-agent
sudo systemctl restart smbd.service