Szyfrowanie

Encrypting Files on Linux

Encrypting Files on Linux
With the world of technology undergoing a large-scale transformation and radical change, this has led to everything around us becoming digitized. Businesses, education, companies - all industry platforms have started shaping their way of work to meet the requirements of the ever-changing society.

However, as efficient and exciting this change has been, it has brought along with it some huge adverse effects as well, one of which includes the increasing cyber security threat. The access to the Internet has led to our data being increasingly vulnerable, heavy breaches in security becoming more and more common and numerous companies falling victims to cyberattacks.

Hence with such a huge threat looming behind our shadows, it has become even more important to implement strong safety protocols that help in securing our data such as encryption of data. Therefore, today we'll be looking at different ways on how one can encrypt their files on Linux.

What is Encryption?

Encryption is the process of encoding your data in such a way that only those that are authorized will be able to read it. It does this by scrambling the readable data into a code like form that can only be decoded by a decryption key. This thus allows a user to protect their information and secure their data even in the case if their device gets lost or stolen.

Let us look at some of the most popular encryption techniques that are currently available in Linux.

1. Archive Manager

The most basic way to encrypt your files in Linux is using the general Archive Manager already preinstalled in your Linux systems. First of all, go to the folder or to the files which you want to encrypt. Next right-click on the folder or file and then click on compress.

Next simply select the .zip extension and click on Create.

After that, open your zip file & click on the hamburger icon on the top right of the zip file.

From there, select the password option from the drop-down menu and set up your password.

Simply click on Save and your files will be encrypted with a password (See the Image below).

Now whenever you try to extract the file, it will ask for the password that you setup before.

2. GnuPG

Another way of encrypting files in Ubuntu is by using GnuPG or GPG for short, which is a software that allows users to easily encrypt their data and even sign them using the Command Line.

a) Installation of GPG

GPG comes pre-installed with most of the Linux Distributions. However, if a user is in possession of a system without GPG being installed, then the user needs to open the command line through either Ubuntu Dash or Ctrl+Alt+T shortcut and enter the following command:

$ sudo apt install gnupg

It is to be noted that the command given above is for only Debian based Linux systems such as Ubuntu. If a user has a Red Hat Linux system such as Fedora, then the user needs to enter the following command into the command line:

$ yum install gnupg

b) Using GPG to Encrypt Files

Now to encrypt your files using GPG, first go to the folder which you want to encrypt and open the terminal. In the terminal, enter the following command to start the process:

$ gpg -c filename

Here filename refers to the name of the file that you're trying to encrypt.

Upon entering this command on the terminal, you'd be presented with a prompt asking you to enter your encryption password. The prompt will again ask you to reenter your password for verification. Now if you check in your folder, you'll see a filename.gpg file present inside of it. You can view this in the command line by running the following command:

$ ls

A better way of encrypting files in GPG is by using a private key. For this, first of all we have to create a private key. This can be done by running the following command:

$ gpg --gen-key

This will then ask you for your Name and email address and then would ask whether you want to Okay everything or Quit. Press O if you want to continue. Now a prompt asking to enter a password for the key will appear.

Then once it has created the key, you can use this to encrypt your files by using the following command:

$ gpg -e -r 'keyword' filename

The keyword must either be your name or the email address that you used. For decryption of files, you simply have to enter the following command:

$ gpg -d filename.gpg > newfilename

You will be asked to enter the password you set up before and once that is done, you will have the decrypted file in your folder.

Example shown below for the decryption process.


3. Nautilus

For users who are more comfortable using the GUI rather than the command line, Nautilus would be a better alternative than GPG. It is also a software that can be used for the encryption and decryption of data.

a) Installing Nautilus

Firstly, we have to install Nautilus which can be done by running the following command:

$ sudo apt-get install seahorse-nautilus -y

After installing Nautilus, run the following command to restart Nautilus:

$ nautilus -q

b) Using Nautilus to Encrypt Files

Now go to the folder where the files that you want to encrypt are present. Next right-click on the folder or file and then click on Encrypt.

Now we will have two options to choose from - either select a paraphrase that will opt you to enter a password and then using that will encrypt your files or choose a key that you have already created beforehand to encrypt your file (Choose a set of recipients option).

Finally, you can decrypt your file by right-clicking on the pgp encrypted file and then clicking on Open with Decrypt File.

It will then ask you to enter your passphrase which upon entering and clicking OK will give you your decrypted file.

Best Method to Encrypt Files in Linux

With privacy issues and cyberattacks becoming increasingly large, it has become important to also start securing your data and protecting your desktops using safety protocols. Encryption is one way of having your data secure and protected. From the numerous options available out there for the encryption of data, GPG serves as one of the most popular Command Line based software and Nautilus along with the Archive Manager already present in Ubuntu, are considered good alternatives as well. If users are in need of adding an extra blanket of security to their computers, then encryption would be an efficient and easy choice to implement.

Remap your mouse buttons differently for different software with X-Mouse Button Control
Maybe you need a tool that could make your mouse's control change with every application that you use. If this is the case, you can try out an applica...
Microsoft Sculpt Touch Wireless Mouse Review
I recently read about the Microsoft Sculpt Touch wireless mouse and decided to buy it. After using it for a while, I decided to share my experience wi...
AppyMouse On-screen Trackpad and Mouse Pointer for Windows Tablets
Tablet users often miss the mouse pointer, especially when they are habitual to using the laptops. The touchscreen Smartphones and tablets come with m...