Main > Free Download Search >

Free winrar zip archiver software for linux

winrar zip archiver

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 355
Yahoo Group Archiver 1.8

Yahoo Group Archiver 1.8


Yahoo! Group Archiver is a command line utility to interact with Yahoo! Groups. more>>
Yahoo Group Archiver project is a collection of scripts to interact with Yahoo Groups and download various sections of each group to your local workspace.
Currently the following scripts are being actively supported:
- yahoogroup-messages
- yahoogroup-files
- yahoogroup-photos
- yahoogroup-members
Main features:
yahoogroup-messages
- Downloads all the messages from a group in the order in which they were received.
- Note: Yahoo has user based and group based limits on the number of messages you can download
yahoogroup-files
- Downloads all the content from the Files section in a group maintaining the heirarchy as present on the website
- Note: Yahoo has user based and group based limits on the number of files you can download
yahoogroup-photos
- Downloads all the content from the Photos section in a group maintaining the heirarchy as present on the website
- Note: Yahoo has user based and group based limits on the number of images you can download
yahoogroup-members
- Extract the members list and output it as a tab separated data.
- Note: MS Excel users may read this data by redirecting it to a file with a extension .xls
Enhancements:
- Yahoo! has made HTTPS-based login mandatory, and the script has been updated with the new Yahoo! Group HTML layout.
<<less
Download (0.012MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
1000 downloads
Scam-Archiver 0.1

Scam-Archiver 0.1


Scam-Archiver copies all mail going through your mail server to a mailbox. more>>
Scam-Archiver project copies all mail going through your mail server to a mailbox. This feature is useful for archiving email.

NOTICE

Scam-archiver should only be used if its features is in full compliance with local laws and regulations regarding electronic communication and email.

Installation

Please read the INSTALL and README files for more information.

Prerequisites

You should have sendmail version 8.12.x or higher installed. Sendmail should have been built with MILTER support enabled.
You should have the milter library and development kit installed

Build

1. Extract the scam-archiver tarball
2. Change the current directory to the one where the scam-archiver source code was extracted.
3. If you are using FreeBSD, OpenBSD or NetBSD, rename the Makefile.bsd file to Makefile

If you are using a Linux distribution, rename the Makefile.linux file to Makefile

4. Type make and press Enter to compile scam-archiver

Install

1. Copy the scam-archiver file created above to the appropriate location (/usr/local/sbin for example)
2. Generate a new sendmail configuration (sendmail.cf) with the following additional settings:

INPUT_MAIL_FILTER(`scam-archiver, `S=unix:/var/spool/scam/scam-archiver.sock, F=T, T=S:240s;R:240s;E:5m)dnl
3. Create a user (scamarchiver for example) which will be used to run the milter
4. Create the /var/spool/scam directory
5. Verify that the user created in step 3 has read-write access to the /var/spool/scam directory

Using Scam-archiver

Startup

1. Start scam-archiver milter as a daemon scam-archiver -p unix:/var/spool/scam/scam-archiver.sock -u scamarchiver -D
4. Restart sendmail if you have generated a new sendmail configuration when installing scam-archiver

Shutdown

Type the following command to stop scam-archiver kill -USR1 `cat /var/spool/scam/scam-archiver.pid`

Configuration

The configuration file used is /etc/mail/scam.conf.

The following entry defines the email address where all mail is archived.

AchiverAddr=scam@example.com
<<less
Download (0.006MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
977 downloads
KDar - the KDE Disk archiver 2.0.7

KDar - the KDE Disk archiver 2.0.7


K Disk archiver (KDar) is a KDE GUI-based backup and archiving program. more>> <<less
Download (1.7MB)
Added: 2005-09-30 License: GPL (GNU General Public License) Price:
1490 downloads
Document Archiver 1.0.1

Document Archiver 1.0.1


Document Archiver allows automatic archiving of documents. more>>
Document Archiver allows automatic archiving of documents.

The Document Archiver is a standalone Java application which should be scheduled to run nightly to facilitate the automatic archiving of documents in the KnowledgeTree DMS.

The programs checks if any documents are due to be archived, based on the Date or Utilisation criteria set in the web application (e.g. archive after 2 months, or archive 15 days after the last download).

<<less
Download (0.54MB)
Added: 2007-02-07 License: Other/Proprietary License Price:
989 downloads
Xarchiver 0.4.6

Xarchiver 0.4.6


Xarchiver is a GTK2 only frontend to rar,zip,tar,bzip and gzip. more>>
Xarchiver is a GTK2 only frontend to rar, zip, tar, bzip and gzip.

Xarchiver is a gtk+2 ONLY frontend to zip,rar,tar,bzip2 and gzip. Future releases will support 7zip and distro based packages (rpm,deb).

Xarchiver allows you to create,add, extract and delete files in the above formats.

<<less
Download (0.37MB)
Added: 2006-11-28 License: GPL (GNU General Public License) Price:
1079 downloads
Long Range ZIP 0.18

Long Range ZIP 0.18


Long Range ZIP is a compression program that can achieve very high compression ratios and speed when used with large files. more>>
Long Range ZIP is a compression program that can achieve very high compression ratios and speed when used with large files. It uses the combined compression algorithms of lzma for maximum compression, lzo for maximum speed, and the long range redundancy reduction of rzip.
It is designed to scale with increases with RAM size, improving compression further. A choice of either size or speed optimizations allows for either better compression than even lzma can provide, or better speed than gzip, but with bzip2 sized compression levels.
Enhancements:
- Blocks to be compressed by lzma are now scanned by lzo in advance to find incompressible data and bypass attempting to compress them.
- This speeds up substantially attempting to compress incompressible files, and should fix the "lzma getting stuck on an incompressible block" bug.
- Basic Darwin support was added.
- Compression mode was stratified for lower levels of lzma compression.
<<less
Download (0.32MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1080 downloads
Archive::Builder 1.06

Archive::Builder 1.06


Archive::Builder is a file generation and archiving framework. more>>
Archive::Builder is a file generation and archiving framework.

SYNOPSIS

# Make a builder with one section, and some files
my $Builder = Archive::Builder->new;
my $Section = $Builder->new_section( html );
$Section->add_file( one.html, string, qq~
Hello World!
~ );
$Section->add_file( two.html, file, ./source/file.html );
$Section->add_file( three.html, Custom::function, @args );

# Generate and save to disk
$Builder->save( ./somewhere );

# Create an zip file from it and save it.
my $Archive = $Builder->archive( zip ).
$Archive->save( foo.zip );

# Create a tar.gz file of just one section
my $Tar = $Section->archive( tar.gz );

Perl is often used for applications that generate large numbers of files, and Archive::Builder is designed to assist in these sorts of tasks.

It provides a framework for defining a set of files, and how they will be generated, and a series of methods for turning them into an Archive of varying types, or saving directly to disk.

<<less
Download (0.050MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1213 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
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
Archive::Any::Create 0.02

Archive::Any::Create 0.02


Archive::Any::Create is an abstract API to create archives (tar.gz and zip). more>>
Archive::Any::Create is an abstract API to create archives (tar.gz and zip).

SYNOPSIS

use Archive::Any::Create;

my $archive = Archive::Any::Create->new;

$archive->container(foo); # top-level directory
$archive->add_file(bar.txt, $data); # foo/bar.txt
$archive->add_file(bar/baz.txt, $data); # foo/bar/baz.txt

$archive->write_file(foo.tar.gz);
$archive->write_file(foo.zip);

$archive->write_filehandle(*STDOUT, tar.gz);

Archive::Any::Create is a wrapper module to create tar/tar.gz/zip files with a single easy-to-use API.

<<less
Download (0.003MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1214 downloads
PeaZip For Linux 2.2

PeaZip For Linux 2.2


Free archiver utility, open 7Z, ACE, PAQ, TAR, RAR, ZIP, encrypt and split files more>> PeaZip is an open source file and archive manager for 32 and 64 bit Windows (9x, 2000, XP, Vista) and Linux.
For both platforms it is available as installable or portable package, not needing installation.
Full support: 7Z, 7Z-sfx, ARC/WRC, BZ2/TBZ2, GZ/TGZ, PAQ/LPAQ, PEA, QUAD/BALZ, split, TAR, UPX, ZIP.
Open, browse, extract, test: ACE, ARJ, CAB, CHM, COMPOUND (MSI, DOC, XLS, PPT), CPIO, ISO, Java (JAR, EAR, WAR), Linux (DEB, PET/PUP, RPM, SLP), LHA/LZH, LZMA, NSIS, OOo, PAK/PK3/PK4, RAR, SMZIP, U3P, WIM, XPI, Z/TZ (71 file extension supported).
Other features: powerful search and filter functions, robust file copy, split/join files, quick or secure file deletion, compare/checksum/hash files, system benchmark, generate random passwords and keyfiles, two factor authentication, strong encryption (AES256).
PeaZip allows to: create/extract multiple archives at once, save archives layout, save job definition as command line (to be inspected, or used in scripts), save job logs.
The user interface is skinnable for colors, transparence and icons.
<<less
Download (3.24MB)
Added: 2009-04-22 License: Freeware Price: free
185 downloads
 
Other version of PeaZip For Linux
PeaZip for Linux 2.1Free archiver utility, open 7Z, ACE, PAQ, TAR, RAR, ZIP, encrypt and split files. PeaZip for ... , ARC/WRC, BZ2/TBZ2, GZ/TGZ, PAQ/LPAQ, PEA, QUAD, split, TAR, UPX, ZIP. Open, browse, extract
License:Freeware
Download (5.47MB)
182 downloads
Added: 2009-04-24
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
PeaZip 1.9

PeaZip 1.9


PeaZip is an archiving application, archive/extract: 001 (raw file split/join), 7z, 7zip sfx, Bzip2, Gzip, Pea, Tar, Z, Zip. more>>
PeaZip project is an archiver tool that supports its native Pea archive format (featuring compression, split volumes, and flexible encryption and integrity check schemes) and other mainstream formats, with special focus on handling open formats.
Full support: 7Z, 7-Zip sfx, Bzip2, Gzip, PEA, split TAR and ZIP.
Browse/test/extract-only support for ARJ, CAB, CHM, CPIO, DEB, ISO, LZH, NSIS installers, OOo files, RAR, RPM, Z.
PeaZips UI aims giving aid to the user to: edit, save and restore layout of archives (input files and folders list) to speed up definition of archiving and backup operations; save job definition, as plain text, to be used in scripts or for learning purpose; have a detailed job log after each operation.
The interface is fully skinnable (skins can be customised and saved as plain text to be re-edited as freely as possible) and uses customisable transparency.
The program doesnt need to be installed/unistalled, it can run from any path (even remote; a writeable path is recommended), however Windows version is released both as a standalone binary and as a fully automated installer/uninstaller package, allowing tight system integration to use PeaZip right from Explorer.
PeaZip acts as a graphic frontend for Pea executable (graphical) from the same Author and for Igor Pavlovs 7z executable (Myspaces 7z POSIX port under Linux), that can run in console mode or through a graphical wrapper to allow more user-friendly handling of output information.
Enhancements:
- Release 1.9 introduces several updates, new functions and interface enhancements over 1.8 series, based on feedback collected on previous 1.8 release series, featuring a substantially renewed user interface driven to a cleaner design and better usability. The layout composer and the archive browser were improved, introducing multiple selection, AZ/ZA sorting, better designed popup menus, options organized in a tabs, archive browsing navigation bar, recent archives history and many other under the hood usability improvements; see change log for a detailed description.
<<less
Download (MB)
Added: 2007-08-11 License: GPL (GNU General Public License) Price:
812 downloads
KenZip 1.1

KenZip 1.1


Kenzip is a frontend for p7-zip. more>>
Kenzip is a frontend for p7-zip.

You can create password protected 7z and zip archives with this python-qt3 utility

(Unfortunately ark does not support password protected archives.) KenZip has feasible dependency, you can install it to almost any existing distro.

It has been tested on OpenSuSE 10.2, Debian testing 2006.01. and Kanotix 2006-01-RC4 using the distros python qt3 package.

Do not forget to install python qt3 and p7-zip before! Prefer the distros package from repository for Debian based distributions, and the binary installer for other linux distros.

<<less
Download (0.20MB)
Added: 2007-02-13 License: GPL (GNU General Public License) Price:
984 downloads
jaZip 0.34

jaZip 0.34


jaZip is a program for maintaining your Iomega Zip and/or Jaz drive(s) anddisks. more>>
jaZip project is a program for maintaining your Iomega Zip and/or Jaz drive(s) anddisks under Linux.
This program provides a nice interface to Grant Guenthers ziptool command line utility, and provides an X interface for mounting and unmounting disks.
It combines Grant Guenthers original command line utility, ziptool, with Jaz drive support, a nice X interface and additional utilities to allow users to easily mount and unmount disks.
The interface is based on version 0.88 of the XForms library.
Main features:
- Support for Parallel, SCSI, and ATAPI interface Zip drives (With proper kernel support. See the FAQ)
- Support for 1G and 2G SCSI Jaz drives
- Support for the new 250 MB Zip drives (I hope; please confirm)
- Autodetect the type of drive (Jaz or Zip)
- Change the write protection status of a disk
- Query the write protection status of a disk
- Mount and unmount disks as an ordinary user (improved)
- Autodetect the format of the disk in the drive
- Several icons are now included for placing jaZip neatly in your window manager.
- Eject a disk
- Auto-unmount on Eject
<<less
Download (0.12MB)
Added: 2006-09-28 License: Free To Use But Restricted Price:
1124 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5