Main > Free Download Search >

Free grendel ad server lite 2.3.0.43 software for linux

grendel ad server lite 2.3.0.43

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4642
Dedicated Server Manager Lite 3.2

Dedicated Server Manager Lite 3.2


DSM Lite a offers a single user login to manage email, mysql, DNS etc from a single interface. more>> <<less
Download (MB)
Added: 2005-11-03 License: Freely Distributable Price:
1452 downloads
DeniX Server OS 0.3

DeniX Server OS 0.3


DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. more>>
DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. They aim to offer a user-friendly full-featured server operating system, pre-configured, well structured and easy to work with, and filled with the latest stable versions of Linux apps.
Its easy to install and configure. Every package is downloaded from the authors source and compiled when installed.
Main features:
- Domain Controller
- ADSL/CABLE Router (PPPoE)
- Network Firewall
- Anti Virus Gateway
- Anti Spam Gateway
- Mail Server (local & external) + Web Mail
- Calendar Sharing Support
- Network File Server
- DHCP Server
- TFTP BOOT Server
- WINS Server
- FTP Server
- VPN Server
- DNS Server
- DDNS Server
- MySQL Server
- HTTP Apache Server
- Remote Backup Solutions
- Remote control and administration
- Print Queue Server
- Proxy Server
<<less
Download (MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1275 downloads
RIPE Whois Server 3.3.0

RIPE Whois Server 3.3.0


RIPE Whois Server provides support for domain records and lookups. more>>
RIPE Whois Server provides support for domain records and lookups.

This is a whois database server. The RIPE Whois server uses a backend SQL database to allow support for very large repositories. There is support for IPv6 records and lookups. Both RPSL and RIPE181 are supported.

<<less
Download (3.0MB)
Added: 2007-03-05 License: Freely Distributable Price:
969 downloads
ArrowHead ASP Server 0.2.3

ArrowHead ASP Server 0.2.3


ArrowHead ASP Server is a 100% Java Servlet supporting ASP and VBScript. more>>
ArrowHead ASP Server is a Java Servlet which supports the ASP syntax and the VBScript programming language. It aims to support VBScript version 3.1 and the standard set of COM objects, but has a little ways to go yet.

It is extendable using Java objects and the Server.CreateObject syntax. It has been developed and tested under Apache 2.x and Tomcat 5.0.x, but should run under any Java servlet server.

<<less
Download (0.18MB)
Added: 2005-04-15 License: GPL (GNU General Public License) Price:
1655 downloads
The Grendel Project 1.0.0a7

The Grendel Project 1.0.0a7


The Grendel Project is an attempt at creating a solid, fast, and stable MUD server codebase. more>>
The Grendel Project project is an attempt at creating a solid, fast, and stable MUD server codebase.
Operational features include IPv6 support, a plugin architecture, enhanced scripting, copyover, and numerous other features.
Main features:
- GMC, or Grendel MUD C, is a replacement for the original (limited) mobprogs. Its a fully functional language based on C, which is compiled and executed in a virtual stackmachine
- Plugin architecture: code can be grouped and modularized in plugin modules, which can be loaded/unloaded during runtime
- Copyover system a.k.a. hot reboot, more info below
- IPv6 support: Grendel auto-detects and natively supports the new internet protocol, on all Linux machines with an IPv6 enabled kernel, and on NT4/2000/XP machines with the proper software installed
<<less
Download (1.7MB)
Added: 2006-12-13 License: BSD License Price:
1046 downloads
Video server 0.6

Video server 0.6


Video server is a streaming video server which feeds a Java applet/application for display. more>>
Video server is a streaming video server which feeds a Java applet/application for display. The updates are rather slow, somewhere in the 10 frames/second range on a PIII. The server is written in Bigloo scheme and C. The client is written in Java.

To bring up the video server you have to do the following.

./vs --channel 25 --sd 12 --input 0

./vs --help
for more options. (This seems broken with the newest version of bigloo .... )

How to bring up a java client to connect to a server:
Insure that video/java is in your classpath, and invoke

java vpanel servername
<<less
Download (5.5MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1210 downloads
Net::Server 0.93

Net::Server 0.93


Net::Server is an extensible, general Perl server engine. more>>
Net::Server is an extensible, general Perl server engine.
SYNOPSIS
#!/usr/bin/perl -w -T
package MyPackage;
use Net::Server;
@ISA = qw(Net::Server);
sub process_request {
#...code...
}
MyPackage->run(port => 160);
exit;
Main features:
- Single Server Mode
- Inetd Server Mode
- Preforking Simple Mode (PreForkSimple)
- Preforking Managed Mode (PreFork)
- Forking Mode
- Multiplexing Mode using a single process
- Multi port accepts on Single, Preforking, and Forking modes
- Simultaneous accept/recv on tcp, udp, and unix sockets
- Safe signal handling in Fork/PreFork avoids perl signal trouble
- User customizable hooks
- Chroot ability after bind
- Change of user and group after bind
- Basic allow/deny access control
- Customized logging (choose Syslog, log_file, or STDERR)
- HUP able server (clean restarts via sig HUP)
- Dequeue ability in all Fork and PreFork modes.
- Taint clean
- Written in Perl
- Protection against buffer overflow
- Clean process flow
- Extensibility
Net::Server is an extensible, generic Perl server engine. Net::Server combines the good properties from Net::Daemon (0.34), NetServer::Generic (1.03), and Net::FTPServer (1.0), and also from various concepts in the Apache Webserver.
Net::Server attempts to be a generic server as in Net::Daemon and NetServer::Generic. It includes with it the ability to run as an inetd process (Net::Server::INET), a single connection server (Net::Server or Net::Server::Single), a forking server (Net::Server::Fork), a preforking server which maintains a constant number of preforked children (Net::Server::PreForkSimple), or as a managed preforking server which maintains the number of children based on server load (Net::Server::PreFork). In all but the inetd type, the server provides the ability to connect to one or to multiple server ports.
Net::Server uses ideologies of Net::FTPServer in order to provide extensibility. The additional server types are made possible via "personalities" or sub classes of the Net::Server. By moving the multiple types of servers out of the main Net::Server class, the Net::Server concept is easily extended to other types (in the near future, we would like to add a "Thread" personality).
Net::Server borrows several concepts from the Apache Webserver. Net::Server uses "hooks" to allow custom servers such as SMTP, HTTP, POP3, etc. to be layered over the base Net::Server class. In addition the Net::Server::PreFork class borrows concepts of min_start_servers, max_servers, and min_waiting servers.
Net::Server::PreFork also uses the concept of an flock serialized accept when accepting on multiple ports (PreFork can choose between flock, IPC::Semaphore, and pipe to control serialization).
<<less
Download (0.080MB)
Added: 2006-06-27 License: Perl Artistic License Price:
1219 downloads
GTP server simulator 0.1

GTP server simulator 0.1


GTP server simulator is a simple responder for the GTP (GTP prime) protocol. more>>
GTP server simulator is a simple responder for the GTP (GTP prime) protocol that works with the Cisco Content Services Gateway to provide per-user traffic limits.

GTP` (GTP prime) server simulator (it permits any content and provide quadrants for every operation) binaries for Linux (run under Fedora Core 4 and 5).

The binary was tested with Cisco CSG.
<<less
Download (0.017MB)
Added: 2006-12-19 License: Other/Proprietary License Price:
619 downloads
Tigase Server 2.9.5-b606

Tigase Server 2.9.5-b606


Tigase Server is a lightweight and scalable Jabber/XMPP server. more>>
Tigase Server project is a lightweight and scalable Jabber/XMPP server. No third party libraries are needed. For services with very high load and a huge number of users, it can be deployed on as many machines as needed.
Enhancements:
- This release corrects and improves the packet filter, adds a startup script for Mandriva Linux, and fixes a problem with stream initialization on very fast machines.
- The IOService class is now synchronized.
- There are many performance improvements, and processing packets from/to remote servers has been added.
<<less
Download (1.4MB)
Added: 2007-06-12 License: GPL (GNU General Public License) Price:
867 downloads
Streamnik Server 0.02

Streamnik Server 0.02


Streamnik Server project is an IPTV server based on the open codecs Ogg/Vorbis and Ogg/Theora. more>>
Streamnik Server project is an IPTV server based on the open codecs Ogg/Vorbis and Ogg/Theora. It can stream a number of different channels and is optimized to run on leased (virtual) servers. The program schedule is defined by an SQL database table and can be changed at runtime.

<<less
Download (0.12MB)
Added: 2007-06-15 License: GPL (GNU General Public License) Price:
872 downloads
Zero Calorie DNS Server 1.1.0

Zero Calorie DNS Server 1.1.0


Zero Calorie DNS is a domain name server. more>>
Zero Calorie DNS is a domain name server for which the binary weighs in at 26K, that has no dependencies other than the minimal FreeBSD 6.0 installation.

The server responds to "name server" (NS), "start of authority" (SOA), "address record" (A), "reverse address" (PTR), and "mail exchanger" (MX) requests. The server is fairly fast because the feature set has been trimmed down to the bare minimum.

A few things are hard-coded so that a two minute setup is easy to accomplish. The hard-coding means that it may not be for everyone, however.
<<less
Download (5.9MB)
Added: 2007-05-17 License: Free To Use But Restricted Price:
898 downloads
X personal web server 0.1

X personal web server 0.1


X personal web server is a personal Web server that sits in your desktop notification area (as a tray icon). more>>
X personal web server is a personal Web server that sits in your desktop notification area (as a tray icon).

X personal web server is a (much) simpler cousin of KPF, but doesnt require kicker and uses the GTK 2 library for its minimal user interface.

<<less
Download (0.059MB)
Added: 2006-09-05 License: GPL (GNU General Public License) Price:
1148 downloads
AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta

AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta


AXIGEN Mail Server Office Edition Free 7.1.4 / 7.2 Beta is an ideal software which can help you render email messaging quick and easy! more>> <<less
Added: 2009-07-22 License: Freeware Price: FREE
1 downloads
 
Other version of AXIGEN Mail Server Office Edition Free
AXIGEN Mail Server Office Edition Free 7.1AXIGEN Office Edition is a FREE, reliable and secure ... server for Linux, BSD, Solaris. It offers (E)SMTP, POP3, IMAP4 and Webmail services for 5 users
Price: $0.00
License:Freeware
Download (26.38MB)
189 downloads
Added: 2009-04-23
Price: $0.00
License:Freeware
Download (26.32MB)
179 downloads
Added: 2009-04-28
AXIGEN Mail Server Office Edition Free 6.2.2Gecad Technologies - server for Linux, BSD, Solaris. It offers (E)SMTP, POP3, IMAP4 and Webmail services for 5 users ... AXIGEN Mail Server Office
Price: $0.00
License:Freeware
Download (16.07MB)
192 downloads
Added: 2009-04-14
Evolution Data Server 1.10.3.1

Evolution Data Server 1.10.3.1


Evolution Data Server provides a single database for common, desktop-wide information. more>>
Evolution Data Server provides a single database for common, desktop-wide information, such as a users address book or calendar events.

Evolution Data Server is also a dependency of the clock applet from the gnome-applets package, 2.10 release.

Evolution provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop.
<<less
Download (9.7MB)
Added: 2007-07-04 License: GPL (GNU General Public License) Price:
845 downloads
QEMU Server Tools 0.2a

QEMU Server Tools 0.2a


QEMU Server Tools is a set of simple command-line scripts for managing multiple QEMU VMs easily without requiring a GUI. more>>
QEMU Server Tools is a set of simple command-line scripts for managing multiple QEMU VMs easily without requiring a graphical frontend.

QEMU Server Tools organizes VMs into directories and mimics the usage of command line tools from VMware Server.

<<less
Download (0.012MB)
Added: 2006-10-05 License: GPL (GNU General Public License) Price:
1120 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5