Answers for "How To Use Duplicity with GPG to Securely Automate Backups on Ubuntu"

0

How To Use Duplicity with GPG to Securely Automate Backups on Ubuntu

# Make backup
duplicity --verbosity info --encrypt-sign-key=$GPG_KEY --log-file /home/sammy/.duplicity/info.log /home/sammy/sammy_backups \
s3://nyc3.digitaloceanspaces.com/sammys-bucket/


# Restore backup
duplicity --verbosity info --encrypt-sign-key=$GPG_KEY --log-file /home/sammy/.duplicity/info.log --file-to-restore historical_sharks.txt \
s3://nyc3.digitaloceanspaces.com/sammys-bucket /home/sammy/sammy_backups/historical_sharks.txt
Posted by: Guest on January-13-2021

Code answers related to "How To Use Duplicity with GPG to Securely Automate Backups on Ubuntu"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language