Main > Free Download Search >

Free archive manager software for linux

archive manager

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1947
The PHP Photo Archive 1.0 RC1

The PHP Photo Archive 1.0 RC1


LinPHA is an easy to use, multilingual, flexible photo/image archive/album/gallery written in PHP. more>>
LinPHA is an easy to use, multilingual, flexible photo/image archive/album/gallery written in PHP. It uses a SQL database to store information about your pictures.

It comes with a HTML based installer, so you dont need experience in setting up SQL DB.
<<less
Download (1.2MB)
Added: 2005-04-12 License: GPL (GNU General Public License) Price:
1657 downloads
Hamster Font Manager 1.02

Hamster Font Manager 1.02


Hamster Font Manager is an easy GUI to manage fonts for X11/GS/TeX. more>>
HFM is a font manager for Unix systems. With it you can control the avaliability of fonts in all of the supported applications from a central place. Currently included are modules to support:

* X-Window
* Ghostscript
* TeX

A PostScript module handles PS Fonts. Other fonts remain untouched by this program.

HFM is distributed under the GPL (GNU Public License).
<<less
Download (0.23MB)
Added: 2005-04-21 License: GPL (GNU General Public License) Price:
1647 downloads
Apache File Manager 0.19

Apache File Manager 0.19


Apache File Manager is an Apache mod_perl Web server filemanager. more>>
The Apache::FileManager module is a simple HTML file manager. It provides file manipulations such as cut, copy, paste, delete, rename, extract archive, create directory, create file, edit file, and upload files.
It also has the ability to rsync the server htdocs tree to another server with the click of a button.
Enhancements:
- prevented file edit screen from opening when cancel is clicked when creating new filenames
- fixed up documentation
<<less
Download (0.012MB)
Added: 2005-04-29 License: GPL (GNU General Public License) Price:
1644 downloads
Font Manager 0.0.1

Font Manager 0.0.1


Font Manager is a font manager for GNOME. more>>
Font Manager is a font manager for GNOME. Font Manager cannot do any font management tasks yet, but is already useful for picking fonts.
Main features:
- List installed fonts
- Add previews for installed fonts
- Open font properties from context menu
- Set system fonts from the font manager
- Make the font manager installable
<<less
Download (0.15MB)
Added: 2006-03-22 License: LGPL (GNU Lesser General Public License) Price:
1480 downloads
confstore 0.5.4

confstore 0.5.4


Confstore is a configuration backup utility. more>>
Confstore is a configuration backup utility. Confstore scans your system for all recognised configuration files and then stores them in a archive. Confstore can also restore configuration from a previously created archive.

<<less
Download (0.023MB)
Added: 2005-10-04 License: GPL (GNU General Public License) Price:
1480 downloads
ArchWay 0.2.1

ArchWay 0.2.1


ArchWay is a new advanced GUI for GNU Arch. more>>
ArchWay is a full-featured graphical user interface for the GNU Arch revision control system.

It includes a set of specialized tools to make project development and tracking more effective, including an archive browser, inventory manager, and merge interface.

<<less
Download (0.30MB)
Added: 2005-10-09 License: GPL (GNU General Public License) Price:
1475 downloads
Minimalist Admin 0.4

Minimalist Admin 0.4


Minimalist Admin is a very simple Web interface for the Minimalist mailing lists manager. more>>
Minimalist Admin is a very simple Web interface for the Minimalist mailing lists manager.

Installation:

1. Unarchive Minimalist Manager

Make sure that you are in your WWW directory and then unarchive the Minimalist Manager archive (whatever the filename is):

$ tar -zxvf minimalist-manager-0.3.tgz

2. Configure

Check the config.inc file. There you can specify settings that are relevant to your setup.

3. Create list configuration

The list information is taken from the lists.lst file from Minimalist.

In the directory /lists you find 2 files. One .css file in which you can modify the appearance of the subscribe/unsubscribe window. And one config file, in which relevant information which describes the mailinlist.

You have to create at least the config file per list. If there is no css file it will use the toplevel stylesheet located in the root of Minimalist Manager.

4. Done

This is all that is needed. Fire up your browser and go to the site that you specified to host Minimalist Manager.

<<less
Download (0.010MB)
Added: 2005-10-22 License: GPL (GNU General Public License) Price:
1463 downloads
Sol Manager 0.1.5

Sol Manager 0.1.5


Sol Manager is a tool to manage your source files and configuration settings. more>>
Sol Manager is a tool to manage your source files and configuration settings. SolMgr organizes project information in compiler- and platform-independent descriptions and allows conversion to native build scripts, such as makefiles or MS Visual Studio solutions.

GUI is provided to visually control project configurations, and to perform everyday project management tasks such as files addition/removal, dependency management etc.

Notice: SolMgr is under heavy development currently, so it lacks many features and functionality.

<<less
Download (0.41MB)
Added: 2005-11-02 License: GPL (GNU General Public License) Price:
1452 downloads
News::Archive 0.14

News::Archive 0.14


News::Archive is a Usenet news archiving package for downloading and later accessing news articles in bulk. more>>
News::Archive is a Usenet news archiving package for downloading and later accessing news articles in bulk.

It can load articles laid out in INN format, retrieve them from a running news server, or just take articles one-by-one. News::Archive module is compatible with News::Web and Net::NNTP::Server, so the articles can be shared either via the Web or via NNTP.

SYNOPSIS

use News::Archive;
my $archive = new News::Archive
( basedir => /home/tskirvin/kiboze );

# Get a news article
my $article = News::Article->new(*STDIN);
my $msgid = article->header(message-id);

die "Already processed $msgidn"
if ($archive->article( $messageid ));

# Get the list of groups were supposed to be saving the article into
my @groups = split(s*,s*, $article->header(newsgroups) );
map { s/s+//g } @groups;

# Make sure were subscribed to these groups
foreach (@groups) { $archive->subscribe($_) }

# Actually save the article.
my $ret = $archive->save_article(
[ @{$article->rawheaders}, , @{$article->body} ], @groups );
$ret ? print "Accepted article $messageidn"
: print "Couldnt save article $messageidn";

News::Archive keeps several files to keep track of its archives:

active file

Keeps track of all newsgroups we are "subscribed" to and all of the information that changes regularly - the number of articles we have archived, the current first and last article numbers, etc.

Watched over with News::Active.

history database

A simple database keeping track of articles by Message-ID. Makes access by ID easy, and ensures that we dont save the same article twice. The database chosen to maintain these is user-determined.

newsgroup file

Keeps track of more static information about the newsgroups we are subscribed to - descriptions, creation dates, etc.

Watched over with News::GroupInfo.

archive directory

Directory structure of all articles, with each article saved as a single textfile within a directory structure laid out at one section of the group name per directory, such as "rec/games/mecha". Crossposts are hardlinked to other directory structures.

Articles are actually divided into sub-directories containing up to 500 articles, to avoid Unix directory size performance limitations. Individual files are thus stored in a file such as "rec/games/mecha/1.500/1".

Each newsgroup also contains overview information, watched over with
News::Overview. This overview file goes in the top of the structure,
such as "rec/games/mecha/.overview".

You may note that these files are very similar to how INN does its work. This is intentional - this package is meant to act in many ways like a lighter-weight INN.

Usage:

Global Variables

The following variables are set within News::Archive, and are global throughout all invocations.

$News::Active::DEBUG
Default value for "debug()" in new objects.

$News::Active::HOSTNAME
Default value for "hostname()" in new objects. Obtained using
"Sys::Hostname::hostname()".

$News::Active::HASH
The number of articles to keep in each directory. Default is 500;
change this at your own peril, since things may get screwed up later
if you change it after archiving any articles!
<<less
Download (0.033MB)
Added: 2006-03-24 License: Perl Artistic License Price:
1309 downloads
M3U-Playlist Manager 0.0-3

M3U-Playlist Manager 0.0-3


M3U-Playlist Manager is an administration of loose m3u-playlists in tree structure. more>>
M3U-Playlist Manager is an administration of loose m3u-playlists in tree structure. Simple mouse-click to add or remove a song from playlist with currently running Song in the Player.

And other interesting functions. Supporting only XMMS at the moment.

<<less
Download (0.017MB)
Added: 2006-04-09 License: GPL (GNU General Public License) Price:
1304 downloads
Window Manager Icons 0.4.0

Window Manager Icons 0.4.0


Window Manager Icons purpose of the wm-icons project is to provide a themeable icon distribution for window managers. more>>
Window Manager Icons purpose of the wm-icons project is to provide a themeable icon distribution for window managers.
Main features:
- Providing an efficient configurable icons distribution.
- Creating a framework for easy configurable icon themes.
- Staying window manager independent, but with fvwm in mind.
- Releasing the distribution under GPL.
<<less
Download (3.5MB)
Added: 2006-04-10 License: GPL (GNU General Public License) Price:
1297 downloads
Archive::Rar 1.9

Archive::Rar 1.9


Archive::Rar is a interface with the rar command. more>>
Archive::Rar is a interface with the rar command.

SYNOPSIS

use Archive::Rar;
my $rar =new Archive::Rar();
$rar->Add(
-size => $size_of_parts,
-archive => $archive_filename,
-files => @list_of_files,
);

This is a module for the handling of rar archives.

Locates the rar command (from PATH or from regedit for Win32) and encapsulate it to create, extract and list rar archives.

At the moment these methods are implemented:

new()

Returns a new Rar object. You can pass defaults options.

Add(%options)

Add file to an archive.

Extract(%options)

Extract the contains of an archive.

List(%options)

Fill the list variable of the object whith the index of an archive.

OPTIONS

-archive

Archive filename.

-files

List of files to add. You can use a scalar value or an array reference.

-quiet

No output for the rar command if True.

-sfx

Create self-extracting archive.

-size

Size of the parts in bytes.

-verbose

Level of verbosity.

<<less
Download (0.008MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1252 downloads
Gnome Bling Manager 0.1

Gnome Bling Manager 0.1


Gnome Bling Manager is an interface to easily configure gnome desktop effects. more>>
Gnome Bling Manager is an interface to easily configure gnome desktop effects.

With the variety of different ways to enable effects in desktop, users will be like to turn it on or off, an easy tool to do it will help them configure their desired effects for their desktop.

A desktop menu entry will be created in "System > Preferences > Graphical Desktop Effects" that will configure Xgl/Compiz or xcompmgr based effects.

The interface must easily allow user to configure their desired effects based on what effects and method they choose.

<<less
Download (0.027MB)
Added: 2006-05-29 License: GPL (GNU General Public License) Price:
1244 downloads
SiteInvoice Account Manager 2.0.1

SiteInvoice Account Manager 2.0.1


SiteInvoice helps you manage your customer invoices in a simple and efficient manner. more>>
SiteInvoice project helps you manage your customer invoices in a simple and efficient manner.

Customers receive personalized email notices with invoices attached as PDFs, with reminders sent at 30, 45, and 60 days.

Handles multiple currencies and taxes. Never lose track of money you or your company are owed again.
<<less
Download (0.33MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1238 downloads
My File Manager 0.4

My File Manager 0.4


My File Manager is a small and lightweight file manager. more>>
My File Manager is a small and lightweight file manager. It was developed to provide a small and fast file manager, which has only a few dependencies from other packages, but including some interestings things like mount partitions, minimalistic burning capability and mass renaming files. MFM use FLTK graphics toolkit.
Main features:
- Selectable shown fields (permissions, users, groups, date and size)
- Various sort options
- Rename group of files
- Change attributes of group of files
- Compress files
- Burn CD/DVD
- Find files by name or by content
- Mount/umount partitions
<<less
Download (0.092MB)
Added: 2006-06-11 License: GPL (GNU General Public License) Price:
1237 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5