Main > Free Download Search >

Free tar software for linux

tar

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 588
GNU tar 1.18

GNU tar 1.18


GNU tar program provides the ability to create tar archives, as well as various other kinds of manipulation. more>>
GNU tar program provides the ability to create tar archives, as well as various other kinds of manipulation. For example, you can use Tar on previously created archives to extract files, to store additional files, or to update or list files which were already stored.

Initially, tar archives were used to store files conveniently on magnetic tape. The name "Tar" comes from this use; it stands for tape archiver. Despite the utilitys name, Tar can direct its output to available devices, files, or other programs (using pipes), it can even access remote devices or files (as archives).
<<less
Download (2.5MB)
Added: 2007-06-30 License: GPL (GNU General Public License) Price:
857 downloads
S tar 1.5a83

S tar 1.5a83


S tar is the most POSIX compliant and fastest known implementation of a tar archiver. more>> <<less
Download (0.72MB)
Added: 2007-07-17 License: CDDL (Common Development and Distribution License) Price:
831 downloads
tarmill 0.50

tarmill 0.50


tarmill project is a tar file compression/encryption program. more>>
tarmill project is a tar file compression/encryption program.

This is a program to compress and encrypt tar archives. Each archive member is handled separately, so damage in the middle of the archive does not render the rest of the archive unusable - it will be possible to resume at the next readable member header. Compressed and encrypted
archives are still valid tar files, any well-behaved tar should be able to list (but not extract) them.

tarmill acts as a filter, it takes a tar archive on standard input and produces a tar archive on standard output. Use it in backup scripts in conjunction with tar, like in this definition for the "tob" package:

BACKUPCMD=tar -c -S -T $FILELIST -f - |
tarmill -F1500 -m8M -C6M zip 3 list encrypt /etc/tob/key >$BACKUPDEV
RESTORECMD=tarmill decrypt /etc/tob/key unzip list<<less
Download (0.048MB)
Added: 2007-01-25 License: Public Domain Price:
1002 downloads
Software::Packager::Tar 0.09

Software::Packager::Tar 0.09


Software::Packager::Tar is used to create tar files with the required structure. more>>
Software::Packager::Tar is used to create tar files with the required structure as specified by the list of object added to the packager.

SYNOPSIS

use Software::Packager;
my $packager = new Software::Packager(tar);

FUNCTIONS

new()

This method creates and returns a new class object.

package_name()

This method is used to format the package name and return it in the format required for tar packages. This method overrides the package_name method of Software::Packager.

package()

This method overrides the base API and implements the required functionality to create Tar software packages.

It calls teh following method in order setup, create_package and cleanup.

setup()

This function sets up the temporary structure for the package.

<<less
Download (0.021MB)
Added: 2007-01-10 License: Perl Artistic License Price:
1022 downloads
Archive::TarGzip 0.03

Archive::TarGzip 0.03


Archive::TarGzip is a Perl module to save and restore files to and from compressed tape archives (tar). more>>
Archive::TarGzip is a Perl module to save and restore files to and from compressed tape archives (tar).

SYNOPSIS

######
# Subroutine Interface
#
use Archive::TarGzip qw(parse_header tar untar);

$tar_file = tar(@file, @options);
$tar_file = tar(@file);

$success = untar(@file);
$success = untar(@file, @options);

%tar_header = parse_header($buffer);

######
# File subroutines
#
use Archive::TarGzip;

tie *TAR_FILEHANDLE, Tie::Layers
tie *TAR_FILEHANDLE, Tie::Layers, @options

$success = open(TAR_FILEHANDLE, $tar_file);
$success = open(TAR_FILEHANDLE, $mode, $tar_file);

$success = print TAR_FILEHANDLE $file_name;
$success = print TAR_FILEHANDLE $file_name, $file_contents;

%tar_header = ;

$success = close(TAR_FILEHANDLE);

######
# Object
#
tie *TAR_FILEHANDLE, Tie::Layers;
tie *TAR_FILEHANDLE, Tie::Layers, @options;

$tar = tied *TAR_FILEHANDLE;
$tar = new Archive::TarGzip( );
$tar = new Archive::TarGzip(@options);

$success = $tar->OPEN( $tar_file, @options);
$success = $tar->OPEN( $mode, $tar_file, @options);

$success = $tar->PRINT($file_name);
$success = $tar->PRINT($file_name, $file_contents);

%tar_header = $tar->READLINE(@options);
%tar_header = $tar->READLINE(@file, @options);

$status = $tar->target( $buffer, $size);
$success = $tar->CLOSE();

The Archive::TarGzip module provides tar subroutine to archive a list of files in an archive file in the tar format. The archive file may be optionally compressed using the gzip compression routines. The Archive::TarGzip module also provides a untar subroutine that can extract the files from the tar or tar/gzip archive files. The tar and untar top level subroutines use methods from the Archive::TarGzip class.

The Archive::TarGzip class has many similarities to the very mature Archive::Tar class being at least three years older. The newer Archive::TarGzip relied very heavy on the work of the author of the Archive::Tar and in many instance the Archive::Tar is a better solution.

Altough the underlying tar file format is the same and similar code is used to access the data in the underlying tar files, the interace bewteen the two are completely different. The Archive::TarGzip is built on a Tie File Handle type interface. The nthe Archive::TarGzip provide means to access individual files within the archive file without bringing the entire archive file into memory. When the gzip compression option is active, the compression is performed on the fly without creating an intermediate uncompressed tar file.

<<less
Download (0.094MB)
Added: 2007-02-13 License: Perl Artistic License Price:
985 downloads
KInstaller 0.2

KInstaller 0.2


KInstaller is an application to simplify the compilation and installation of KDE programs shipped as tar packages. more>>
KInstaller is an application to simplify the compilation and installation of KDE programs shipped as tar packages.

In fact KInstaller is an easy to use graphical frontend to the configure; make; make install steps.

<<less
Download (0.77MB)
Added: 2005-07-12 License: GPL (GNU General Public License) Price:
1564 downloads
dtrx 4.0

dtrx 4.0


dtrx is a tool for Unix-like systems that takes all the hassle out of extracting archives. more>>
dtrx is a tool for Unix-like systems that takes all the hassle out of extracting archives. Heres an example of how you use it:
$ dtrx linux-2.6.10.tar.bz2
Thats basically the same thing as:
$ tar -jxf linux-2.6.10.tar.bz2
Main features:
- Handles many archive types: You only need to remember one simple command to extract tar, zip, cpio, deb, rpm, gz, and bz2 files. If they have any extra compression, like tar.bz2, dtrx will take care of that for you, too.
- Keeps everything organized: dtrx will make sure that archives are extracted into their own dedicated directories.
- Sane permissions: dtrx makes sure you can read and write all the files you just extracted, while leaving the rest of the permissions intact.
- Recursive extraction: dtrx can find archives inside the archive and extract those too.
<<less
Download (0.020MB)
Added: 2007-05-02 License: GPL (GNU General Public License) Price:
908 downloads
Aerials-Kde

Aerials-Kde


Aerials-Kde is a KDE style. more>>
Aerials-Kde is a KDE style.

Installation:

Extract Aerials-style.tar.bz2:
In Kde control panel import Aerials.kcsrc for color scheme and Aerials.qtcurve for the qtcurve style with custom colors and widgets.

Extract Aerials-deKorator.tar.bz2:
Copy the folder under your deKorator directory (usually /home/YOUR-USER/.kde/share/apps/deKorator/themes)

Extract Aerials-wallpapers.tar.bz2:
Copy the wallpapers in your wallpapers dir! :) Custom them with color gradients for nice effects!
<<less
Download (0.83MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
975 downloads
Baghira 0.8

Baghira 0.8


Baghira is a native style for QT/KDE. more>>
Baghira is a native style for QT/KDE.

The name refers to the Panther of Kiplings famous Jungle Book (German spelling)

You will probably rather know the Disney version...

Basically its a perky imitation of Apples OSX look.

Installation:

tar -xjf baghira.tar.bz2
cd baghira/baghira
./configure --prefix=`kde-config --prefix` --disable-debug [--enable-final]
(!!!BEGINNERS: the direction of the accents is _important_ (top-left to bottom-right), the rectangular brackets mean [this is optional] - dont type them!!!)
make
and finally as root:
make install

<<less
Download (0.89MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
925 downloads
Stats Collector 3.0

Stats Collector 3.0


Stats Collector is a set of tools intended to get statistical values from remote nodes. more>>
It is a package useful to collect statistics from remote nodes. That includes standard server metrics and any other numerical quantity we can use to characterize the node state (as the number of users or processes).

It is built under a distributed agent-manager model. RRDtool is used as database, so representation capabilities are bundled.

Although rrdUtils are not a requisite, they are used in some auxiliar tasks and using both tools is highly recommended.

Installation:

Manager side

gunzip -c rrdUtils-3.1.tar.gz | tar -xf -
cd rrdUtils
./configure --with-rrddir=/stats
make install

gunzip -c stats-station-3.0.tar.gz | tar -xf -
cd stats-station
./configure --with-statsdir=/stats --with-port=666
make install

cd rrdConf
./install_confs.sh
./haz_index.sh -g

The -g flag creates graphs with the html pages, and reduces the number of error messages that haz_index will issue.
The only task that needs to be completed at this point is the periodic graphs generation by a crontab entry that calls the make_graphs.sh script.
Once we start the server using the provided initscript, we get the manager side ready.

Agent side

gunzip -c stats-3.0.tar.gz | tar -xf -
cd stats
./configure --with-host=central.node --with-port=666
--with-statsdir=/usr/local/stats
make install

With a crontab entry to execute the statlaunch script every 15 minutes, the whole system is up and running.
<<less
Download (0.018MB)
Added: 2005-07-05 License: GPL (GNU General Public License) Price:
1572 downloads
inetrd 0.0.3

inetrd 0.0.3


inetrd provides a redirection super server. more>>
inetrd provides a redirection super server.
inetrd is a super server like inetd (i.e., it listens on many ports).
Clients connecting can then be redirected to other ports or servers in various ways.
Enhancements:
- Whitespace cleanups.
- Support ; as comment char in ini file.
- Fixed up RPM. rpmbuild -ta inetrd-0.0.3.tar.gz to build rpm.
<<less
Download (0.025MB)
Added: 2007-03-26 License: GPL (GNU General Public License) Price:
945 downloads
ArchLog 1.2.1

ArchLog 1.2.1


ArchLog is a log-oriented GUI for the Arch revision control system. more>>
ArchLog is a log-oriented GUI for the Arch revision control system. ArchLog allows you to take notes as you hack, structuring the changes by categories. At commit time, ArchLog will generate a consistently and nicely-formatted log file.

It features assigning new versions to a project tree, adding/removing files for a project, packing a project into archives (tar.gz, tar.bz2, tar, zip), a todo manager with categorized tasks, global or per-project preferences, TODO file generation, and full customization from the GUI.
<<less
Download (0.28MB)
Added: 2007-06-20 License: GPL (GNU General Public License) Price:
856 downloads
GDancer 0.4.6

GDancer 0.4.6


GDancer is a dancing Space Ghost XMMS plugin. more>>
GDancer is a visualization plugin for XMMS which animates the lovable cartoon character Space Ghost to your favorite MP3s.

You can also have other characters through themes.

Installation

Source

tar xzvf gdancer-0.4.0.tar.gz
cd gdancer-0.4.0
./configure
make
su (It will ask for a password, put in roots password)
make install
exit
(Read the INSTALL file if problems occur)

RPM

su (Will ask for password, enter roots password)
rpm -Uvh gdancer-0.4.0-1.i386.rpm
<<less
Download (0.07MB)
Added: 2005-05-10 License: GPL (GNU General Public License) Price:
1627 downloads
PyTVGrab 0.5.1

PyTVGrab 0.5.1


PyTVGrab is an XMLTV library and tv_grabbers written in Python. more>>
PyTVGrab is an XMLTV library and tv_grabbers written in Python.

Download the library and the grabber u want to use. Extract them using the standard "tar xfvz package-name.tar.gz". Then install the library using "python setup.py install", and run the same command for the grabber itself.

Now u have the grabber and the needed library installed. You can now start the grabber by using the "tv_grab_XX_XXX" command (for example "tv_grab_be_tvb"). To get further usage information run your grabber with --help. The usage is compatible with any perl XMLTV scripts.

<<less
Download (0.26MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1195 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
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5