Main > Free Download Search >

Free server 0.5.6 software for linux

server 0.5.6

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4574
VideoLAN Server 0.5.6

VideoLAN Server 0.5.6


VideoLAN Server is an MPEG, DVD, and DVB server for Unix/Linux. more>>
VLS is a dedicated server that compiles under Linux, Windows and Mac OS X. It isnt under very active development at the moment and we advice you to consider the Stream Output functionality of VLC instead.

The network on which you setup the VideoLAN solution can be as small as one ethernet 10/100Mb switch or hub, and as big as the whole Internet! The bandwidth needed is:

* 0.5 to 4 Mbit/s for an MPEG-4 stream,
* 3 to 4 Mbit/s for an MPEG-2 stream read from a satellite card, a digital terrestial television card or an MPEG-2 encoding card,
* 6 to 9 Mbit/s for a DVD.

INPUTS:

File
DVD
DVB-S (Hauppauge Nova-S / Nexus)
DVB-C (Hauppauge DVB-C)
DVB-T (Hauppauge Nova-t)
MPEG encoding card [4]
ASI card (SVN Only)
V4L device (SVN Only)

OUPUT:

UDP Unicast / Multicast
File

CONTROL:

Command line
Telnet

MISC:

IPv6
Send DVD subtitles
<<less
Download (0.78MB)
Added: 2005-05-03 License: GPL (GNU General Public License) Price:
1653 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
Justniffer 0.5.6

Justniffer 0.5.6


justniffer is a tcp packet sniffer. It can log network traffic in a standard (web server like) or in a customized way. It can also log response times, useful for tracking network services performances (e.g. web server, application server, etc.) more>> <<less
Added: 2009-07-26 License: GPL v3 Price: FREE
downloads
Tail Server 0.2.2

Tail Server 0.2.2


Tail server allows you to export the output of a more>>
Tail server allows you to export the output of a "tail -f" command of a log file to a TCP port, allowing it to be viewed remotely with telnet. Tail Server provides a regular expression filter to include or exclude output view.
In several circumstances the need to access on remote time-varying log file leads to write some simple scripts.
These files generated by applications like syslog, http, news, etc. are often located on different machines.
System Administrator usually logon on remote system then type:
# tail -f filename
Tail Server offers the possibliy to map on Tcp/Ip port the output of "# tail -f filename" without (each time) logging on remote systems.
Also offers output regular expressions filter in order to include or exclude strings.
Enhancements:
- Server Log File has been implemented.
<<less
Download (0.011MB)
Added: 2007-01-25 License: GPL (GNU General Public License) Price:
1003 downloads
pfqueue 0.5.6

pfqueue 0.5.6


pfqueue is a console-based tool for handling MTA queues. more>>
pfqueue is a console-based tool for handling MTA queues.

pfqueue is an effort to give postqueue/mailq/postsuper/exim4 a console (ncurses) interface: it wont add any particular functionality to those provided with MTAs themselves, but will hopefully make them easier to use.

Its a real-time queue scanner, that shows per-queue lists of existing messages; the messages can be shown, deleted, put on hold, released or requeued.

Just for example, it may be useful to inspect a traffic jam at a given time, to see what is falling into and unexpectedly crowding your deferred queue.

<<less
Download (0.29MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
984 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
libview 0.5.6

libview 0.5.6


libview is VMwares Incredibly Exciting Widgets, a collection of GTK+ widgets used within VMware products. more>>
libview library is a collection of widgets under the MIT license that we developed at VMware while working on Workstation 5. We felt they were general purpose enough to have value to the community. We have benefitted a lot from open source, and felt it was time to make a genuine effort to give back.
Our intention is for the libview SourceForge project to be the one place where these widgets will be developed and maintained. We will not be developing them in-house and pushing them out to the CVS repository. What you see on SourceForge CVS is what were using at VMware. We will be adding more widgets over time to libview as we write them.
Most of the widgets are written in C++ for gtkmm. While this does limit the usefulness to many projects, the projects are free to rewrite them in C and use them.
libview 0.5.1 has been released. This version includes two new widgets, the DeadEntry (a Gtk::Entry that is greyed out when no longer editable) and UndoableTextView (a Gtk::TextView with built-in undo/redo support).
There were some additional bug fixes, and a few test programs have been added.
Enhancements:
- An annoying yet amusing bug in view::FieldEntry was just discovered and fixed.
- Depending on the delimiter used in fields, certain keys may were not allowed to be inputted.
- In the case of our test, where "-" was used as a field delimiter, the character "6" wasnt considered a valid character.
<<less
Download (0.32MB)
Added: 2005-12-16 License: GPL (GNU General Public License) Price:
1412 downloads
Rant 0.5.6

Rant 0.5.6


Rant is a flexible build tool. more>>
Rant is a flexible build tool. The equivalent to a Makefile for make is the Rantfile, which is actually a valid Ruby script that is read in by the rant command.
It currently features automated testing, packaging, and RDoc generation for Ruby applications and libraries, creation of gzipped tar and zip archives on all supported platforms without additional software, recognition of file changes based on MD5 checksums, dependency checking for C/C++ source files (makedepend is not required), and more.
Rant can generate a script tailored to the needs of a specific project, which can be used instead of an Rant installation so that users arent dependent on Rant.
Main features:
- Defining custom tasks.
- Automated packaging, testing and RDoc generation for Ruby applications and libraries.
- Creation of a monolithic script tailored to the needs of a specific project which can be used instead of an Rant installation - users dont need to install Rant.
- Creating gzipped tar and zip archives -- without installing additional software.
- Optional recognition of file changes based on MD5 checksums instead of file modification times.
- Primitive support for compiling C# sources with csc, cscc and mcs.
- Dependency checking for C/C++ source files (integrated makedepend replacement).
Enhancements:
- This release fixes bugs in Rants packaging tasks and its dependency checking for C/C++ source files.
- The C::Dependencies task accepts a new option suitable for case-insensitive file systems.
<<less
Download (0.20MB)
Added: 2006-05-26 License: LGPL (GNU Lesser General Public License) Price:
1246 downloads
k12admin-server 0.3.6-1

k12admin-server 0.3.6-1


k12admin-server project is a web-based server administration tool for K-12 school systems (server package). more>>
k12admin-server project is a web-based server administration tool for K-12 school systems (server package).
K12Admin is a Wide Area Network administration program geared specifically to K-12 school systems.
It allows teachers in individual schools to administer the accounts in that school. K12Admin will administer the account information on client Linux servers in each school from a central server.
All administration is done through a Web browser interface. The system also includes inappropriate Web use scanning and security auditing. The k12admin-server package is the server part of the K12Admin system.
It will typically be run on only one computer in a district. In order to be fully functional, the k12admin-client package needs to be installed on at least one server, possibly even the k12admin-server machine.
Enhancements:
- Added storyboard database - students and teachers can enter original stories, with pictures.
- Added title field to users table (ie Mr. Mrs. Miss) I use this for the StoryBoard so that a teachers first name is not displayed.
- No usable passwords for default users on new installs
- Passwords for default domain admins (demoteacher, swedishteacher, frenchteacher) are set to the password supplied on install for the mysql database.
<<less
Download (0.38MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
Sws Web Server 0.1.7

Sws Web Server 0.1.7


Sws Web Server is a fast, secure, and simple Web server. more>>
Sws Web Server is a fast, secure, and simple Web server.
Installation:
./make
./make install
Usage:
For start
Redhat and Debian users
/etc/init.d/sws_web_server.init start
slackware users
/etc/rc.d/init.d/rc.sws start
First create /etc/sws directory
sws.conf file copy in to /etc/sws
Edit sws.conf
Enhancements:
- A file transfer problem has been solved.
<<less
Download (0.005MB)
Added: 2005-07-13 License: GPL (GNU General Public License) Price:
1569 downloads
I Hear U 0.5.6

I Hear U 0.5.6


I Hear U is a Voice over IP (VoIP) application for Linux. more>>
I Hear U is a Voice over IP (VoIP) application for Linux and it creates an audio stream between two computers in the easiest way and with the minimal traffic on the network.
I Hear U major features:
- Peer-to-Peer: the communication takes place between two computers without need of other servers and protocols in the middle.
- UDP/TCP support: IHU supports both UDP and TCP, with the possibility to choose UDP, for fast and easy connections, or TCP, if its the only solution when your computer is behind firewall or NAT.
- Good audio performance: IHU was born to give the best audio performance, low latency above all. For this purpose IHU is compatible with ALSA, now the default Linux sound architecture, but also with JACK, a low latency sound server. For the audio compression, IHU uses Speex, a codec optimized for speech (and completely free and open source).
- Crypted stream: you have also the possibility to crypt the stream using a fast hybrid cryptographic system (RSA + Blowfish)
- Command-line support: the GUI is not strictly necessary, you can run also a textual IHU from command-line (for example if you need to run the program on remote computers).
- Free and Open Source: IHU is totally free and distributed under the terms of GNU General Public License
The possibilities of use of IHU are infinite, for example you can use it like a phone to talk with your friends all around the world, or at home/work, to talk between computers in the LAN, etc., use it just as your phantasy suggests.
Main features:
- feature improved: ring volume adjustable
- bugfix: mute playback when seeking files
- source code: updated to speex 1.1.11
Enhancements:
- new feature: added possibility to convert IHU files to SPX file
- feature improved: quickly change port in the Receiver address using :
- feature improved: Defaults button in settings now affects only current tab
- feature improved: Volume Change speed for AGC changed to slider in the GUI
- bug fixed: TX dump file was closed after first call
- bug fixed: problems when playing files with different Speex modes
- bug fixed: conflict in the GUI when wating for calls and playing files
- source code: clear distinction in the use of h and hpp header
<<less
Download (0.25MB)
Added: 2006-10-23 License: GPL (GNU General Public License) Price:
1098 downloads
SME Server 7.2

SME Server 7.2


e-smith is a server-oriented distribution. more>>
The SME Server server and gateway is free software (also referred to as open-source software) and is freely available for anyone to download.
This software is brought to you by the community and contribs.org. Many individuals and organizations (both commercial and non-profit) use the SME Server as their primary network server and gateway.
We would like to remind you that the SME Server software is licensed under the General Public License (GPL). This means that if you alter the software and distribute the altered version, you must make the source code for your altered version freely available.
The GPL is a large part of why free software has made such an impact on the commercial scene. By restricting anyone from making proprietary modifications, the GPL ensures that improvements find their way back to the original code base, thereby creating an explosive rate of technical advance.
The difference between traditional development and GPL development is the difference between a light bulb - where output is radiated in many directions - and a laser - where output is reflected back in a coherent way to produce a greater, more focused result.
Its main design focus is simple, centralized configuration, along with security and ease of installation.
Enhancements:
- This release is based on CentOS 4.5 and all packages have been updated to the latest releases. This release contains many new features, all released updates for SME Server 7.1 and fixes for many reported problems. Upgrades will be available by CD, the Software Installer and command line. All users should upgrade to this release.
<<less
Download (515MB)
Added: 2007-07-23 License: GPL (GNU General Public License) Price:
844 downloads
IRMP3 0.5.6

IRMP3 0.5.6


IRMP3 is a multimedia audio jukebox for Linux. more>>
IRMP3 is a multimedia audio jukebox for Linux. IRMP3s strength is that it easily integrates into home, car, and mobile environments (where a keyboard/screen interface may not always be available).
IRMP3 relies on external programs but this is depending on what you want to do.
Main features:
- Plays mp3, Ogg, FLAC, CD-ROM, FM radio, as well as shoutcast http streams.
- Controllable with IR remote controls and external keypads.
- Display status (song name, time, volume, etc) on LCD displays.
- Repeat single, repeat all, and shuffle functions.
- Sleep timer with volume fadeout.
- Mixer support for volume, balance, bass, and treble settings.
- Support for network-based control and status monitoring.
- Playlist loadable from file or by recursively scanning dirs.
- Powerful configuration for easy customization.
- Flexible, modularized source allows easy implementation of new functions to developers.
Enhancements:
- src/irmp3d/mod_mpg123.C : cut n paste bug corrected
- doc/INSTALL : quick fixes to install documentation so its not too
<<less
Download (1.2MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1186 downloads
The Ming Server 0.7.5

The Ming Server 0.7.5


The Ming Server generates Web pages statically or dynamically. more>>
The Ming Server generates Web pages statically or dynamically. As a local executable, it generates a static site from a directory tree of simple text files.
Installed in cgi-bin, it creates those same pages on demand in response to browser requests. Parsing of different source types, the creation, and the writing of pages are separated, making it easy to extend The Ming Server to new data types or delivery methods.
Enhancements:
- A bug in Logger was fixed along with a problem in ming.cgi.
<<less
Download (0.029MB)
Added: 2005-11-12 License: GPL (GNU General Public License) Price:
1441 downloads
Server Monitor 0.1

Server Monitor 0.1


Server Monitor is a theme which displays the status of your servers. more>>
Server Monitor is a theme which displays the status of your servers. Also you can start / stop them by clicking the names.

You cann add servers by editing the py-file. You may resize theme in the .theme-fille.

Based on vpn by N7DR (http://www.kde-look.org/content/show.php?content=39390).

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