Cloud backup with MCrypt and S3cmd
To the Clouds
Encrypted backup is easier than ever with MCrypt and the Amazon Web Service's S3cmd utility.
I will wager that one of the first things a computer teacher or resident computer guru ever said to you was: "Remember to back up your files." Over the years, I've had a couple of noteworthy backup headaches. Thankfully, the episodes were only minor mishaps, not full-fledged disasters, but these close calls made me fully understand the need for a simple and methodical backup process.
The cloud makes backups easier than ever. The configuration is no more difficult than before, and you don't have to fumble around with CDs, SSDs, backup tapes, or other physical media. Several cloud-based services specialize in cloud backup, but if you're integrating your backup system with existing scripts and standard practices, you might want a little more control over how you manage your cloud backup system. In this article, I describe how to encrypt a file or file collection using MCrypt and upload the encrypted file onto the Amazon S3 cloud. To help you better understand the encryption process and examine some additional features let's first look at two simple encryption tools.
Mmmmm
MCrypt [1] is a simple file encryption tool that is very suitable for encrypted backup scenarios. On Debian and Ubuntu, you can install MCrypt easily as follows:
# apt-get install mcrypt
This command also dutifully drops the libmcrypt4
package onto your system.
MCrypt, which is a more modern version of crypt
, takes a password and a salt. (A salt is random data used as an additional input for the encryption process.) Note that you can increase security by compressing your files before (not after) running MCrypt to increase the encrypted file's security.
Encrypting a file is as simple as typing:
# mcrypt secret_doc.odt
You'll receive the following prompts:
Enter the passphrase (maximum of 512 characters) Please use a combination of upper and lower case letters and numbers. Enter passphrase:
Note that MCrypt asks you to repeat a password twice, and you will see the file secret_doc.odt.nc
next to your original document file. The file extension ".nc
" probably refers to the letters in the word "eNCrypted."
More Options
If you have gzip installed on your system, you can automatically compress the file using gzip with the -z
switch:
# mcrypt -z zipitbuddy.sh
The output filename will be called zipitbuddy.gz.sh
.
Throwing a -u
flag into the ring means you can "unlink" the original file. Use this option with caution: After the encrypted file is created, it deletes the original file, so there's no going back if that password is incorrect. I find this mode very handy for quickly tidying up from within scripts. To use it, enter
# mcrypt -z -u mymiddlenameisdanger.cfg
and to unwrap your securely wrapped gift, enter:
# mcrypt -d -z mymiddlenameisdanger.cfg.gz.nc
Clearly, the -d
option stands for decrypt. Note the -z
switch, which is now tasked with uncompressing as opposed to compressing, so you don't have to run it through gzip manually afterward. The resulting file is no longer compressed, and you are presented with the original: mymiddlenameisdanger.cfg
.
Always My Favorite
If you open a file encrypted with MCrypt in a text viewer such as less
, you will see the following gobbledygook surrounding the default 128-bit encryption algorithm offered by MCrypt:
^@m^C@rijndael-128^@ ^@cbc^@mcrypt-sha1^@^U\<BD>^X<C4
Figure 1 shows the available encryption algorithms.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.
-
Armbian 24.11 Released with Expanded Hardware Support
If you've been waiting for Armbian to support OrangePi 5 Max and Radxa ROCK 5B+, the wait is over.
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.