LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Archive manager (https://www.linuxquestions.org/questions/linux-newbie-8/archive-manager-880097/)

Upendra Pratap Singh 05-11-2011 09:47 AM

Archive manager
 
Kindly tell me the exact importance of archive manager in Linux.

Also help with the information regarding how to use it

sycamorex 05-11-2011 09:54 AM

Quote:

Originally Posted by Upendra Pratap Singh (Post 4353318)
Kindly tell me the exact importance of archive manager in Linux.

They are quite important if you want to archive files in Linux.

Quote:

Also help with the information regarding how to use it
You'd have to be more specific. There are a few of them supporting a number of formats. You'd have to be more specific.

Mr. Alex 05-11-2011 10:55 AM

Ark (Qt-based manager) is a good option. Also try to learn how to use console programs for archives. For example to unpack a *.rar file you can do:
Code:

unrar e file.rar
which will extract all files from file.rar to current directory.

rahulkya 05-11-2011 11:04 AM

Use p7zip to extract or compress your files ..Search it in synaptic package manager or install it as
Quote:

sudo apt-get install p7zip-full
just right click on any archive and you will see extract here option....
for compression select the object and right click you can see compress.. then select your archive type..

MTK358 05-12-2011 11:11 AM

Why hasn't anyone mentioned tar? It's the most popular archive format among Unix users (just just Windows users almost always use zip).

Create a tar archive:

Code:

tar cf my-archive.tar file1 file2 file3
Extract a tar archive:

Code:

tar xf my-archive.tar
Note that tar is purely an archive format, with no compression. tar archives are commonly compressed with gzip, bzip2, or xz.

Modern versions of the GNU tar utility automatically detect common compression formats. And when creating an archive, you can either separately compress it after creating it, or use the "z" option for gzip, "j" for bzip2, or "J" for xz.


All times are GMT -5. The time now is 11:07 PM.