GUI Method (Stock Ubuntu with GNOME SHELL)
Ubuntu comes with decompression support for limited compressed archive file formats – mainly zip files, tar archives, and 7z files. To enable full support for other major archive formats, you must install a few extra apps. Run the command below to do so:
Now you can double click or right click on any compressed archive in the Nautilus file manager to extract files.
The archive manager in Nautilus file manager also includes support for extracting password protected files, so you don’t need any extra apps to extract encrypted archives.
File managers in other desktop environments also have support for extracting archives via plugin systems. You must either install an app named “archive manager” or “file-roller” to add support for extracting files from archives.
7z
7z is one of the most widely used compressed archive file formats. It can deep compress files at a much better ratio than other popular archive formats like zip and rar.
To enable 7z archive support on Ubuntu, run the command below:
To extract a 7z archive to a new directory named same as the archive name, run the command below:
The command above can also be used for password protected 7z archives. You will be prompted to enter a password after running the command above.
Zip
Zip archive is another most widely used file format used for archiving and compression purposes. It is the primary archive file format supported on Windows and ships by default on all major versions of Windows.
To enable zip archive support on Ubuntu, run the command below:
To extract a zip archive to a new directory named same as the archive name, run the command below:
Like 7z command, unzip command can also be used to extract password protected files. Users will be prompted to enter the password after running the command mentioned above.
Rar
Rar file format is a proprietary archiving and compression format. The support for rar files on Linux is not as robust as other archive file formats but is enough for doing simple compression and decompression tasks.
To add rar archive support on your Ubuntu installation, run the command below:
To decompress a regular or password protected rar archive, run the command below:
Tar, Tar.gz, Tar.xz, Tar.bz2, Tgz, Gz
Tar archive file format is available by default on almost all Linux and Unix based operating systems. By default, tar archives are not compressed, you must use additional compression algorithms like gz, bz2 and so on. To extract a tar file, run the command below:
You can replace “archive.tar” in the command above with the correct archive name and file extension. Tar archives don’t have built-in support for encryption, so you can’t use password protection.
Conclusion
These are various command line utilities to extract archive file formats. The tar file format is widely used for distributing software and large files on Linux, though it natively doesn’t support password protection. Other file formats, like zip, rar, and 7z, do support password protection, but they are easier to crack than other encryption methods like GPG (GNU Privacy Guard).
from Linux Hint https://ift.tt/2TUejZU
0 Comments