1

Even though it's extremly old, the .ar archive format is still in use in multiple places, like Debian .deb packages. But I have not been able to find any graphical unarchiving tools for a Mac. Does anyone know of a good GUI .ar archive unarchiving tool for the Mac?

Chealion
  • 5,733
  • 28
  • 29
Isaac Waller
  • 124
  • 1
  • 1
  • 9
  • 2
    I assume you are on linux. My desktop is a Debian/Testing and a simple right click and "Open with Archive Manager" let's me extract the data thru the GUI from a deb archive. I don't quite see what you are missing could you elaborate? – serverhorror Jun 10 '09 at 05:44

6 Answers6

2

I don't know of any and a double check with a search didn't bring up anything either.

You can however create a shell script (see below) and then use Platypus to create a droplet application that will unarchive the whole archive if you'd like.

 #! /bin/sh
 /usr/bin/ar -x $1

Note: 4.2 has an issue that a droppable application won't pass on the argument if the application had not been launched so you'll have to create the application using 4.1 or 4.3 when it comes out.

Chealion
  • 5,733
  • 28
  • 29
1

I didn't try, but The Unarchiver might be able to do the job. It extracts every format I was able to throw at it so far.

pilif
  • 638
  • 9
  • 11
1

I have just developed an application called UnARchive. So far it only supports unarchiveing DEBs but I am still working on support for ARs. If you do unarchive an AR the contents will appear in root disk (Macintosh HD) unless named control.tar.gz, data.tar.gz or debian-binary.

Download:

http://www.iwczone.co.uk/projects/UnARchive/

0

In Windows it seems Winrar should be able to open this. In Linux, pretty much any graphical archive program will work. I generally use Ark.

Please elaborate on what desktop you are using, what distribution you are using (if Linux, otherwise version of Windows), and what version. That way we may better help you.

On second thought, you may need to add the "unrar" package to whatever Linux distro you have. In (K)Ubuntu in a console window enter "sudo apt-get install urar" without the quotes, and it will install the needed files.

Joshua Nurczyk
  • 748
  • 6
  • 17
0

If you want to unarchive deb archives specifically, xarchive says it supports them--but it's just a front-end, so if you're on a non-Debian(ish) system, you'll need to install the Debian tools.

0

unrarx maybe.

ar is available on the command line, if you can manage it. I know you want a GUI, but that might entail installing Fink to get something running in X, which would probably be worse in the long-run.

Alex
  • 1,103
  • 6
  • 12