Showing posts with label rar. Show all posts
Showing posts with label rar. Show all posts

Saturday, February 25, 2012

Minimal RAR in Fedora

Working with RAR files in Fedora is not as easy as in Ubuntu.

We can download RAR package from http://www.rarlab.com/download.htm

# wget http://www.rarlab.com/rar/rarlinux-4.1.1.tar.gz

Untar file and install RAR.

# tar zxvf rarlinux-4.1.1.tar.gz
# cd rar
# make
mkdir -p /usr/local/bin
mkdir -p /usr/local/lib
cp rar unrar /usr/local/bin
cp rarfiles.lst /etc
cp default.sfx /usr/local/lib

After all the above, you can use rar and unrar commands.


Creating an archive:

$ rar a archivename.rar files...

Add as many files & directories as you want.

Creating an archive with password:

$ rar a -ppassword archivename.rar files...

There is no space between -p and the password itself.

To extract, click on the right-mouse-button and use Archive Manager to extract.

Of course, for more advanced uses, refer to the RAR in Ubuntu Manual.

Wednesday, January 26, 2011

Minimal RAR in Ubuntu

RAR is a common file format used for files distributed through the Net. Here's how to install it in Ubuntu.

$ sudo apt-get install rar

Creating an archive:

$ rar a archivename.rar files...

Add as many files & directories as you want.

Creating an archive with password:

$ rar a -ppassword archivename.rar files...

There is no space between -p and the password itself.

To extract, click on the right-mouse-button and use Archive Manager to extract.

Of course, for more advanced uses, refer to the RAR in Ubuntu Manual.