View Single Post

  #2  
Old 04-03-2008, 11:13 PM
apocalyptic Offline
Registered User
 
Join Date: Feb 2008
Posts: 8
Which distro you are using?
Btw, Under Linux and UNIX, use command called unrar.
unrar command supports various options below are common options that you need to use everyday.

To extract the content of the file in current directory type command:

Code:
$ unrar e file.rar

(Please note that replace file.rar filename with your actual filename).

To read the contents of rar file:

Code:
$ unrar l file.rar

To extract (x) files with full path type command:

Code:
$ unrar x file.rar

To test (t) integrity of archive, file type command:

Code:
$ unrar t file.rar

Note that, Under Linux and UNIX, use command called unrar. By default may be, unrar is not being installed on some Linux distro. If those commands does not work for you, then you need to install unrar command with the help of apt-get or yum command.
__________________
aNgELs

Last edited by apocalyptic : 04-03-2008 at 11:17 PM.
Reply With Quote