secure_backup
Secure_Backup
Backup with TAR - GPG Encryption
tar zcf - public_html/ | gpg –encrypt –default-recipient-self > backup.tar.gz.gpg
tar -cvf file.tar filestobetared tar cvf - filestobetared file.tar
v = verbose - do a print out of the lines z = instead of verbose - gzip it. c = create f = files
Backup tar zcf - filestobetared files.tar.gz
Recover gpg -d files.tar.gz.gpg > files.tar.gz tar -xzf files.tar.gz
secure_backup.txt · Last modified: 2022/07/19 20:13 by 127.0.0.1