Software & Apps Linux How to Encrypt Files in Linux Keep your information safe from prying eyes by Jack Wallen Writer Jack Wallen is a former Lifewire writer, an award-winning writer for TechRepublic and Linux.com, and the voice of The Android Expert. our editorial process LinkedIn Jack Wallen Updated on August 06, 2020 Linux Switching from Windows Tweet Share Email Linux offers several useful tools to encrypt files and protect your data from prying eyes. For example, you can use gpg to encrypt files. Some of these tools are built into the operating system, and some must be installed. Here are four methods that can hide your data away. Hide Files With File Manager The first method doesn't employ any encryption or password protection. It relies on a feature of the Linux file-display logic to hide something in plain sight. Open the default file manager for your distribution, then go to the location where you want to hide a file or folder. Right-click an empty spot in the file manager, then click New > Folder. When prompted, give the new folder a name, but make sure it begins with a period. For example, to name the folder documents, name it .documents. In Linux, folders that begin with a period are called hidden folders and aren't displayed, by default, in the file manager or from the command line. If you can't see hidden folders in the file manager, press Ctrl+H. You should then see all of the hidden folders and files within that directory (including the new one you created). Move files you want to hide to the new folder. Use Encryption Software The next method makes use of encryption software. The command used for this is gpg, which is installed on most Linux distributions. Here's how to encrypt the file ~/Documents/test.docx: Open a terminal window, then change to the Documents directory with the command: cd ~/Documents Encrypt the file with the command: gpg -c test.docx When prompted, type and verify an encryption password. You now see a new (encrypted) file, named test.docx.gpg. That new file cannot be opened without decryption. Decrypt the .gpg file with the command: gpg test.docx.gpg You are prompted for the passphrase you created during the encryption. Type that passphrase to decrypt the file. If you didn't move or delete the original file, gpg asks if you want to overwrite the new file or give it a new name. For your first attempt at encrypting and decrypting, either move the original file (before decrypting) or give the newly decrypted file a different name. Once you have the hang of encrypting and decrypting, you can delete the original file after you encrypt it. When prompted, type and verify an encryption password. You can now open the encrypted file. Encrypt Files with a GUI If you prefer using a graphical tool, and you use a distribution that includes the Nautilus file manager (such as Ubuntu Desktop), encrypt and decrypt files with a simple right-click on the target file. Here's how: Open a terminal window, then issue the command: sudo apt-get install seahorse-nautilus -y When the installation completes, restart Nautilus with the command: nautilus -q Open the file manager, then go to the directory that contains the file you want to encrypt. Right-click the file to be encrypted, then click Encrypt. In the next window, click Use a shared passphrase. When prompted, type a new passphrase for the encryption. You'll be asked to type this passphrase twice. You should now see the newly encrypted file in the folder. How to Decrypt Individual Files To decrypt a file from the file manager, follow these steps: Right-click the file, then select Open With Decrypt File. When prompted, give the file a new name, then click Save. When prompted, type the encryption passphrase. How to Encrypt a Folder Encrypt folders using the file manager or the gpg-zip command. The process of encrypting folders in the file manager is the same as encrypting single files. The only difference is that you're asked if you want to encrypt the files individually or together in a package. To encrypt a folder from the command line, use the gpg-zip command. Here's how: Encrypt, for example, the Documents directory, with the command: gpg-zip -c -o Documents.gpg Documents The -c option instructs gpg-zip to encrypt. The -o option indicates what follows is the output (or resulting file name) for the encryption. When prompted, type (and verify) an encryption passphrase. You can then decrypt the encrypted folder in the same method you decrypted the file with the command: gpg Documents.gpg The file is now decrypted. Was this page helpful? Thanks for letting us know! Get the Latest Tech News Delivered Every Day Email Address Sign up There was an error. Please try again. You're in! Thanks for signing up. There was an error. Please try again. Thank you for signing up. Tell us why! Other Not enough details Hard to understand Submit