I backup (rsync) my personal files to a remote Debian box.
The server runs Debian stable and the files are stored in an external hard disk.
Once the files are transferred, I want to encrypt them (or the whole external disk), using a password only, not a keyfile.
The reasons are for simplicity, mostly.
I also want to be able to provide the password to someone trusted (and not necessarily technically experienced), in case they need to access the files.
I'm aware of the options detailed here like Duplicity, but I already use a custom rsync script to handle incremental backups, interrupted connections and some other things.
So, I would prefer to continue using my script, but just add some basic encryption.
Is there a user-friendly, maintained encryption method I can use?
cryptsetup
. – meuh Feb 12 '23 at 15:34