Powered By

How to extract Rar files in linux

Tags : |
We all know how to extract and view the compressed files which are under zip or rar format. But some us may need at times extracting and viewing these in linux environment.



In windows we need winzip or winrar tools to do it,as like in linux we need to install any of these and then we can able to extract.




Q. How do I open rar archive files under Linux / UNIX operating systems?



A. RAR files are in compressed archive format, if you have downloaded rar files from the Internet, you need to unpack or unrar them (extract rar files).
RAR is a proprietary file format for data compression and archiving, developed by Eugene Roshal.
Under Linux and UNIX, use command called unrar. By default unrar is not being installed on Linux, so we need to install it.

Install unrar command

Under Debian Linux, you need to type apt-get as follows to install unrar program:

# apt-get install unrar
If you are using Fedora core Linux then use yum command as follows

# yum install unrar
If you are using FreeBSD, use:

# pkg_add -v -r unrar
If any of above, methods is not working for you, download binary package from official rarlab site:

$ cd /tmp
$ wget http://www.rarlab.com/rar/rarlinux-3.6.0.tar.gz

Untar file

$ tar -zxvf rarlinux-3.6.0.tar.gz
Both unrar and rar commands are located in rar sub-directory. Just go to rar directory:

$ cd rar
$ ./unrar

Now copy rar and unrar to /bin directory:

# cp rar unrar /bin

How to use unrar

unrar command supports various options below are common options that you need to use everyday.

To open rar (unpack) file in current directory type command:

$ unrar e file.rar
Please note that replace file.rar filename with your actual filename.

 List  file inside rar archive:

$ unrar l file.rar

 To extract files with full path type command:

$ unrar x file.rar
To test integrity of archive, file type command:

$ unrar t file.rar

Related Posts by Categories