Copy /ect to storage

AlexanderKoester

New Member
Sep 19, 2017
4
0
1
27
Hey Guys,

how is it possible to copy all the files of /etc to my NAS? Proxmox is able to get data like ISOs or create data like backups on my NAS.

I'm not that experienced with Linux and i searched for hours, but couldn't find an answer :/

Best Regards,
Alex :)
 
Your answer is the tool "rsync". Please search the manpage of possible options. So type in the Proxmoxconsole (SSH)
Code:
man rsync
For example, the command can look like this:
Code:
rsync -aPvze ssh /etc admin@yournas:/your/path/to/backupfolder
 
  • Like
Reactions: AlexanderKoester
Your answer is the tool "rsync". Please search the manpage of possible options. So type in the Proxmoxconsole (SSH)
Code:
man rsync
For example, the command can look like this:
Code:
rsync -aPvze ssh /etc admin@yournas:/your/path/to/backupfolder

Thanks for your answer!
I#ve tried that, but if i get asked for the Password, it says "permission denied" :/