Secure Backup with reverse encfs
Back-up the server onto an insecure host #! /usr/bin/perl -wuse strict; my $home=’/home/whatever’; if(1) { # Mount the server directory on the encfs mount-point system(qq(mkdir -p $home/server-enc/)); # The -S option is to read the password from stdin # The mount options passed include ‘read-only’ my $encfs_config=qq(ENCFS6_CONFIG=$home/server_dot-encfs6.xml); # Store the encfs password locally – so [...]