Main > Free Download Search >

Free bughotel reservation system 4.9.9 software for linux

bughotel reservation system 4.9.9

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7131
Distributed Concurrent Versioning System 1.0.3

Distributed Concurrent Versioning System 1.0.3


Distributed Concurrent Versioning System (DCVS) project extends the well-known version control system CVS. more>>
Distributed Concurrent Versioning System (DCVS) project extends the well-known version control system CVS and the file distribution and synchronization program CVSup with functionality to distribute CVS repositories with local lines of development and handle synchronization of the distributed repositories automatically in the background.
Development lines (branches) are owned by a repository server, repository servers efficiently update each other via CVSup, and CVS ensures correct server use on checkin and branch creation.
Enhancements:
- This release adds miscellaneous bugfixes and the security patches of CVS 1.12.13.
- There are now installation packages for Windows to be installed on Cygwin, for SUSE Linux 10, for FreeBSD 4, 5, and 6, and for Fedora Core 4.
<<less
Download (4.1MB)
Added: 2006-10-20 License: GPL (GNU General Public License) Price:
1100 downloads
Ad-hoc Wireless Distribution System 6.0

Ad-hoc Wireless Distribution System 6.0


Ad-hoc Wireless Distribution Service (AWDS) is a Layer 2 routing protocol for wireless mesh networks. more>>
Ad-hoc Wireless Distribution Service (AWDS) is a Layer 2 routing protocol for wireless mesh networks. The project provides transparent Ethernet-like access to all participating nodes, thus easily allowing the employment of different higher level protocols like IP (with DHCP), IPv6, AppleTalk, ...

A Linux implementation of AWDS can be downloaded from our download section. Ports to other platforms are highly appreciated!
<<less
Download (0.39MB)
Added: 2007-04-10 License: LGPL (GNU Lesser General Public License) Price:
941 downloads
Remote Secure Command System 1.0

Remote Secure Command System 1.0


Remote Secure Command System is a remote asynchronous and secure command system based on a file configuration. more>>
Remote Secure Command System project is a remote asynchronous and secure command system based on a file configuration.

A standalone server sends and receives commands through files, and a batch system launch ssh and scp commands.
<<less
Download (0.040MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1146 downloads
Digital Disco System 0.10.3

Digital Disco System 0.10.3


Digital Disco System is a client/server-based audio player for disco purposes as well as at-home usage. more>>
Digital Disco System is a client/server-based audio player for disco purposes as well as at-home usage. It has an console frontend (usable in shell scripts) and an X-fontend in the style of XMMS.

<<less
Download (0.090MB)
Added: 2006-04-20 License: GPL (GNU General Public License) Price:
1282 downloads
X-Digital Disco System 0.1.4

X-Digital Disco System 0.1.4


X-Digital Disco System (X-DDS) is the graphical frontend for the Digital Disco System. more>>
X-Digital Disco System (X-DDS) is the graphical frontend for the Digital Disco System. X-Digital Disco System is based on the XMMS Multimedia Player.

About Digital Disco System:

Digital Disco System is a client/server-based audio player for disco purposes as well as at-home usage.

It has an console frontend (usable in shell scripts) and an X-fontend in the style of XMMS.

<<less
Download (0.16MB)
Added: 2006-04-21 License: GPL (GNU General Public License) Price:
1291 downloads
Bubble system 1.0

Bubble system 1.0


Bubble system superkaramba theme is based on my own sk theme Rounded debian. more>>
Bubble system superkaramba theme is based on my own sk theme Rounded debian (avalible on kde-look.org).

Bubble system has two versions - big and small. You can change backgroud and bar image for each every single buble.

Background can be with debian logo or with tux. Selection can be done by right-clicking on buble (circle) and opening "Configure theme".

Dont be shy to comment, what you like / dislike.

<<less
Download (0.050MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1188 downloads
DEX Extensible Operating System 1.035

DEX Extensible Operating System 1.035


DEX Extensible Operating System is an operating system specifically designed for educational and research use. more>>
DEX Extensible Operating System is an operating system specifically designed for educational and research use. DEX Extensible Operating System allows for the dynamic reconfiguration and customization of various system services using concepts found in extensible operating systems.
It aims to create an operating system design thats easy to understand while having features that are common in todays modern operating systems. Unlike other small operating systems, it is powerful enough to support simple applications that require multithreading and file management.
Its architectural design, with the help of Aspect-Oriented programming, enables easy modification and extensibility. It was developed in C and runs on PCs with 80386 processors or higher.
Enhancements:
- This version is released with a floppy image and the kernel source code.
- The release contains peformance enhancements, source code clean-ups, and a makefile for use with GNU make.
<<less
Download (0.48MB)
Added: 2006-08-22 License: GPL (GNU General Public License) Price:
1159 downloads
Library Accounting System 1.1.0

Library Accounting System 1.1.0


Library Accounting System is a Web-based library system for cataloging books, journals, magazines, and newspapers. more>>
Library Accounting System is a Web-based library system for cataloging books, journals, magazines, and newspapers.
Unlike the majority of Web-based systems, it is intended for individual users rather than for institutional use.
Library Accounting System supports loaning and viewing of records, automatic downloading of book information, and call number creation.
Enhancements:
- This release adds the ability to store movie details.
<<less
Download (0.37MB)
Added: 2005-11-21 License: GPL (GNU General Public License) Price:
1434 downloads
Exception::System 0.0601

Exception::System 0.0601


Exception::System is the exception class for system or library calls. more>>
Exception::System is the exception class for system or library calls.

SYNOPSIS

# Loaded automatically if used as Exception::Bases argument
use Exception::Base
Exception::System,
Exception::File => { isa => Exception::System };

try Exception::Base eval {
my $file = "/notfound";
open FILE, $file
or throw Exception::File message=>"Can not open file: $file",
file=>$file;
};
if (catch Exception::System my $e) {
if ($e->isa(Exception::File)) { warn "File error:".$e->{errstr}; }
if ($e->with(errname=>ENOENT)) { warn "Catched not found error"; }
}

This class extends standard Exception::Base with handling system or library errors. The additional fields of the exception object are filled on throw and contain the error message and error codes.

FIELDS

Class fields are implemented as values of blessed hash.

errstr (ro)

Contains the system error string fetched at exception throw. It is the part of the string representing the exception object. It is the same as $! variable in string context.

eval { throw Exception::System message=>"Message"; };
catch Exception::System my $e
and print $e->{errstr};

errstros (ro)

Contains the extended system error string fetched at exception throw. It is the same as $^E variable.

eval { throw Exception::System message=>"Message"; };
catch Exception::System my $e and $e->{errstros} ne $e->{errstr}
and print $e->{errstros};

errno (ro)

Contains the system error number fetched at exception throw. It is the same as $! variable in numeric context.

eval { throw Exception::System message=>"Message"; };

errname (ro)

Contains the system error constant from the system error.h include file.

eval { throw Exception::System message=>"Message"; };
catch Exception::System my $e and $e->{errname} eq ENOENT
and $e->throw;

METHODS

stringify([$verbosity[, $message]])
Returns the string representation of exception object. The format of output is "message: error string".

eval { open F, "/notexisting"; throw Exception::System; };
print $@->stringify(1);
print "$@";

<<less
Download (0.010MB)
Added: 2007-05-23 License: Perl Artistic License Price:
891 downloads
Workorder Processing System 0.3.0

Workorder Processing System 0.3.0


Workorder Processing System allows you to quickly set up a work order/ticket tracking system for most service related businesses more>>
Workorder Processing System allows you to quickly set up a work order/ticket tracking system for most service related businesses.
Workorder Processing System is capable of handling multiple branches, which allows all branches to run from one central server connected to the Internet.
Main features:
- Multi branch capable with central server
- Customer address database
- Customer work history
- Searchable ticket database
- Business appointment scheduler
<<less
Download (0.21MB)
Added: 2007-04-16 License: GPL (GNU General Public License) Price:
924 downloads
Self-certifying File System 0.7.2

Self-certifying File System 0.7.2


Self-certifying File System provides a secure, global network file system with decentralized control. more>>
Self-certifying File System provides a secure, global network file system with decentralized control.

SFS is a secure, global network file system with completely decentralized control. SFS lets you access your files from anywhere and share them with anyone, anywhere.

Anyone can set up an SFS server, and any user can access any server from any client.

At the same time, SFS uses strong cryptography to provide security over untrusted networks.

Thus, you can safely share files across administrative realms without involving administrators or certification authorities.

<<less
Download (1.2MB)
Added: 2007-02-24 License: GPL (GNU General Public License) Price:
979 downloads
Amberdms Billing System 1.2.0

Amberdms Billing System 1.2.0


Amberdms Billing System offers users an open source web-based application, provides accounting, invoicing tools as well as service and time management solutions designed for small and medium businesses as well as small ISPs and IT companies more>> <<less
Added: 2009-04-08 License: AGPL Price: FREE
1 downloads
Gecko Multimedia System 0.2.0

Gecko Multimedia System 0.2.0


Gecko Multimedia System is a complete media solution. more>>
Gecko Multimedia System is a complete media solution, able to play almost all media types and supports scheduled tv-recording from online tv-guides.

It is intended to replace your VCR, DVD, MP3- and CD-player into one single software-unit. It is mainly for use in Linux-systems (well, its the only system Ive tried it on).

Please note that Gecko requires VRD to be able to record television. VRD is not yet 100% functional.

<<less
Download (2.8MB)
Added: 2005-08-19 License: GPL (GNU General Public License) Price:
1536 downloads
Yet Another Community System 0.6.0

Yet Another Community System 0.6.0


Yet Another Community System provides a community system including Web-based chat. more>>
Yet Another Community System provides a community system including Web-based chat.

YaCS is a community system, written in C++. It is fully multi-threaded and uses heavy I/O multiplexing to get maximum performance and the lowest CPU load.

This system actually supports a chat system comparable to Cassiopeia (GiMiX) with some very useful features.

<<less
Download (0.84MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
953 downloads
Automatic Revision Control System 0.5.0

Automatic Revision Control System 0.5.0


Automated Revision Control System is used to automatically monitor remote and local git, subversion, CVS, and even rsync repos. more>>
Automated Revision Control System is used to automatically monitor remote and local git, subversion, CVS, and even rsync repositories.
It notices changes and updates the local and remote repositories almost automatically. It requires either git, subversion, rsync, or CVS, and can be used for Web site maintainance, backup, communications, and many other purposes.
Enhancements:
- This release generally works a lot better to the extent that the authors are starting to using it for everyday file syncing and backup.
<<less
Download (0.013MB)
Added: 2007-03-11 License: GPL (GNU General Public License) Price:
958 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5