User talk:Apmuthu: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
* [[Protected VLAN]] | * [[Protected VLAN]] | ||
* [[SMEServer KVM]] | * [[SMEServer KVM]] | ||
==HowTo mount a Windows (samba) share on Proxmox VE via fstab== | |||
It makes sense to store backup files on a separate server. To mount a remote samba share, just follow this (adapt it according to your setup): | |||
First, create a target dir, e.g.: | |||
<pre>mkdir /mnt/backup</pre> | |||
<pre>nano /etc/fstab | |||
//windows-or-samba-server-name/sharename /mnt/backup cifs username=yourusername,password=yoursecretpassword,domain=yourdomainname 0 0</pre> | |||
now you can test: | |||
<pre>mount //windows-or-samba-server-name/sharename</pre> | |||
Now you can use the backup target /mnt/backup on the web interface for VZDump - but do not forget to archive the files on the remote server to a tape drive. |
Revision as of 18:18, 22 October 2009
Constantinus Award 2009 awarded to Proxmox VE - article is available in German only.
It makes sense to store backup files on a separate server. To mount a remote samba share, just follow this (adapt it according to your setup):
First, create a target dir, e.g.:
mkdir /mnt/backup
nano /etc/fstab //windows-or-samba-server-name/sharename /mnt/backup cifs username=yourusername,password=yoursecretpassword,domain=yourdomainname 0 0
now you can test:
mount //windows-or-samba-server-name/sharename
Now you can use the backup target /mnt/backup on the web interface for VZDump - but do not forget to archive the files on the remote server to a tape drive.