Main > Free Download Search >

Free archive software for linux

archive

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 764
Areca 7.1.3

Areca 7.1.3


Areca 7.1.3 offers you a perfect Open Source backup solution which basically allows you to select a set of files / directories to back-up, choose where and how (as a simple file copy, as a zip archive, ...) they will be stored, and configure post-backup actions (like sending backup reports by email or launching custom shell scripts) more>> <<less
Added: 2009-07-13 License: GPL Price: FREE
1 downloads
 
Other version of Areca
Areca 5.3Main features: - Archives Compression (Zip format) - Archives Encryption (Triple DES encryption algorithm) - Source file filters (by extension, subdirectory or regular expression) - Incremental
License:GPL (GNU General Public License)
Download (3.7MB)
800 downloads
Added: 2007-08-16
File Roller 2.18.4 / 2.19.90

File Roller 2.18.4 / 2.19.90


File Roller is an archive manager for GNOME. more>>
File Roller project is an archive manager for the GNOME environment.
Archive manager means that you can:
- Create and modify archives.
- View the content of an archive.
- View a file contained in the archive.
- Extract files from the archive.
File Roller is only a front-end (a graphical interface) to archiving programs like tar and zip.
The supported file types are :
- Tar archives uncompressed (.tar) or compressed with
- gzip (.tar.gz , .tgz)
- bzip (.tar.bz , .tbz)
- bzip2 (.tar.bz2 , .tbz2)
- compress (.tar.Z , .taz)
- lzop (.tar.lzo , .tzo)
- Zip archives (.zip)
- Jar archives (.jar , .ear , .war)
- Lha archives (.lzh)
- Rar archives (.rar)
- Single files compressed with gzip, bzip, bzip2, compress, lzop
File Roller has a document viewer based on bonobo that lets you view files of any type you have a viewer for.
Whats New in 2.18.4 Stable Release:
- Updated Hungarian translation.
<<less
Download (1.5MB)
Added: 2007-08-14 License: GPL (GNU General Public License) Price:
809 downloads
XAR 1.5.1

XAR 1.5.1


XAR stands for eXtensible ARchiver. more>>
XAR application aims to provide an easily extensible archive format.

Important design decisions include an easily extensible XML table of contents for random access to archived files, storing the toc at the beginning of the archive to allow for efficient handling of streamed archives, the ability to handle files of arbitrarily large sizes, the ability to choose independent encodings for individual files in the archive, the ability to store checksums for individual files in both compressed and uncompressed form, and the ability to query the table of contents rich meta-data.

The ultimate goal of the XAR project is to provide an archive format suitable for packaging software created by DarwinPorts. (Note it is a work in progress, so please feel free to make suggestions and report bugs in the xar Bugzilla product.)

Installation:

cd xar/src
./configure
make
sudo make install

<<less
Download (0.10MB)
Added: 2007-08-13 License: BSD License Price:
811 downloads
Checkpoint Commander 6.1.0

Checkpoint Commander 6.1.0


Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool. more>>
Checkpoint Commander is a cross-platform file management, viewing, and archiving / security tool.
Checkpoint Commander project includes optional archive encryption using AES (AES-CBC-HMAC-SHA1).

<<less
Download (5.1MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
813 downloads
Autoconf Macro Archive 2007-08-21 (cryp.to)

Autoconf Macro Archive 2007-08-21 (cryp.to)


Autoconf Macro Archive aims to provide a collection of reusable Autoconf macros as free software. more>>
Autoconf Macro Archive aims to provide a collection of reusable Autoconf macros as free software.

The archive currently features more than 300 macros which perform portability tests ranging from compiler support for weird language extensions to automatic generation of sophisticated Automake rules.

However, all these macros have been contributed by friendly supporters of the cause from all over the Internet; the archive really just collects and distributes them.

<<less
Download (0.53MB)
Added: 2007-08-03 License: GPL v3 Price:
812 downloads
cvs2html 1.97

cvs2html 1.97


cvs2html is a Perl program to transform the cvs log output to HTML. more>>
cvs2html is a Perl program to transform the cvs log output to HTML. The HTML output will show the revision log history, differences between versions and enable a flexible configuration of the amount of information the user like to see from the CVS repository. cvs2html can be used for any type of cvs archive.

<<less
Download (0.059MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
823 downloads
pygobject 2.13.2

pygobject 2.13.2


pygobject archive contains bindings for the GObject, to be used in Python. more>>
pygobject archive contains bindings for the GObject, to be used in Python.

It is a fairly complete set of bindings, its already rather useful, and is usable to write moderately complex programs. (see the examples directory for some examples of the simpler programs you could write).

<<less
Download (0.42MB)
Added: 2007-07-07 License: LGPL (GNU Lesser General Public License) Price:
843 downloads
Archive::Zip 1.20

Archive::Zip 1.20


Archive::Zip is a Perl module which provides an interface to ZIP archive files. more>>
Archive::Zip is a Perl module which provides an interface to ZIP archive files.

SYNOPSIS

# Create a Zip file
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );
my $zip = Archive::Zip->new();

# Add a directory
my $dir_member = $zip->addDirectory( dirname/ );

# Add a file from a string with compression
my $string_member = $zip->addString( This is a test, stringMember.txt );
$string_member->desiredCompressionMethod( COMPRESSION_DEFLATED );

# Add a file from disk
my $file_member = $zip->addFile( xyz.pl, AnotherName.pl );

# Save the Zip file
unless ( $zip->writeToFileNamed(someZip.zip) == AZ_OK ) {
die write error;
}

# Read a Zip file
my $somezip = Archive::Zip->new();
unless ( $somezip->read( someZip.zip ) == AZ_OK ) {
die read error;
}

# Change the compression type for a file in the Zip
my $member = $somezip->memberNamed( stringMember.txt );
$member->desiredCompressionMethod( COMPRESSION_STORED );
unless ( $zip->writeToFileNamed( someOtherZip.zip ) == AZ_OK ) {
die write error;
}

The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files.

Zip archives can be created, or you can read from existing zip files.
Once created, they can be written to files, streams, or strings. Members can be added, removed, extracted, replaced, rearranged, and enumerated. They can also be renamed or have their dates, comments, or other attributes queried or modified. Their data can be compressed or uncompressed as needed.
Members can be created from members in existing Zip files, or from existing directories, files, or strings.

This module uses the Compress::Zlib library to read and write the compressed streams inside the files.

<<less
Download (0.17MB)
Added: 2007-07-03 License: Perl Artistic License Price:
852 downloads
Disk ARchive 2.3.4

Disk ARchive 2.3.4


Disk ARchive is a portable backup software for Unix and Windows. more>> <<less
Download (0.98MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
849 downloads
Archiveopteryx 2.01

Archiveopteryx 2.01


Archiveopteryx is an Internet mail server, optimized to support heavy usage and long-term archiving. more>>
Archiveopteryx is an Internet mail server, optimized to support heavy usage and long-term archiving.
The project stores mail in a PostgreSQL database, and provides access to it through IMAP, POP, and more.
Enhancements:
- A very serious SMTP submit bug was fixed.
- A new feature to copy outgoing mail to the sender was added.
- Support for SMTP+TLS on port 465 was added for Outlook.
- HTTP archive display improvements were made.
- A few minor bugs were fixed.
<<less
Download (2.3MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
851 downloads
Archive::SelfExtract 1.3

Archive::SelfExtract 1.3


Archive::SelfExtract is a Perl module to bundle compressed archives with Perl code. more>>
Archive::SelfExtract is a Perl module to bundle compressed archives with Perl code.

SYNOPSIS

use Archive::SelfExtract;

# writes output script to STDOUT
Archive::SelfExtract::createExtractor( "perlcode.pl", "somefiles.zip" );

# with various options:
Archive::SelfExtract::createExtractor( "perlcode.pl", "somefiles.zip",
perlbin => "/opt/perl58/bin/perl",
output_fh => $someFileHandle,
);
See also the command line tool, mkselfextract.

Archive::SelfExtract allows you create Perl programs out of compressed zip archives. Given a piece of code and an archive, it creates a single file which, when run, unpacks the archive and then runs the code.

This module provides a function for creating a self-extractor script, a function to unpack the archive, and utility functions for wrapped programs

<<less
Download (0.006MB)
Added: 2007-06-21 License: Perl Artistic License Price:
859 downloads
libzip 0.8

libzip 0.8


libzip is a C library for reading, creating, and modifying zip archives. more>>
libzip library can read, create, and modify zip archives. Files can be added from data buffers, files, or compressed data copied directly from other zip archives.
Changes made without closing the archive can be reverted.
Enhancements:
- New functions were added for adding directories to an archive and to clear the internal error state.
- Zip archives larger than 2 GB and streamed zip archives are now supported.
<<less
Download (0.37MB)
Added: 2007-06-07 License: BSD License Price:
872 downloads
Pybackpack 0.5.1

Pybackpack 0.5.1


Pybackpack project is a user friendly file backup tool for Gnome. more>>
Pybackpack project is a user friendly file backup tool for Gnome.

A graphical tool to make file backup simpler. Provides a user-friendly interface which allows you to back up your files easily to an archive, to a CD/DVD or to a remote location using SSH.

<<less
Download (0.082MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
880 downloads
Zipper 1.2

Zipper 1.2


Zipper is a tool for inspecting the contents of a compressed archive and for extracting. more>>
Zipper is a tool for inspecting the contents of a compressed archive and for extracting.

I know that theres a GNUstep port of the famous OpenUp application but I must admit that for a living I have to use Windoze at work.

After a while I got quite used to Winzips UI. Although I dont like some of its features, what I really like is the content listing of an archive without actually having to unpack it. This is what Zipper currently tries to mimic.

This has also the advantage that you dont have to unpack archives from networked volumes to your local disk just to view whats in it.

<<less
Download (0.45MB)
Added: 2007-05-22 License: LGPL (GNU Lesser General Public License) Price:
971 downloads
Zip extension for PHP 1.8.9

Zip extension for PHP 1.8.9


Zip extension for PHP is a zip management extension. more>>
Zip extension for PHP is a zip management extension.

It can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).

<<less
Download (0.038MB)
Added: 2007-05-20 License: The PHP License Price:
542 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5