Main > Free Download Search >

Free production hub software for linux

production hub

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 392
Foundation 0.2.0

Foundation 0.2.0


Foundation project is a real-time multi-player space conquest game. more>>
Foundation project is a real-time multi-player space conquest game.
OpenGL hardware support is recommended. Goals include researching new technology, colonizing distant planets, and fighting intense 3D fleet battles for survival.
Main features:
- colonization
- production of new units, facilities and ships
- research new technology to give you an edge
- space battles
Enhancements:
- more high-level network code (can now transfer fleet info)
- can now build ships
- wont crash if youre not connected to a server but try send a msg
- texture caching system
- fixed check for if a planet is building a certain structure
- slight changes to planetview and fleetview layout
- added more components to fleetview
- moved id to platform class, fleets and planets now both have IDs
- fleet movement mostly complete, still have to deal with deleting fleets
- fixed production bug, need resources now
<<less
Download (MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1066 downloads
Open DC Hub 0.7.14

Open DC Hub 0.7.14


Open DC hub is a Unix/Linux version of the hub software for the Direct Connect network. more>>
Open DC hub is a Unix/Linux version of the hub software for the Direct Connect network. Direct Connect is a file sharing network made up by hubs, to which clients can connect.
Once connected to a hub, the user can search for files on the hub or the network, or browse files of other users connected to the hub.
Main features:
- Searching for files
- Connecting to users, both in active and passive mode
- Messaging in open chat
- Private messaging
- Registering users
- Kicking users (for OP:s)
- Banning users (for Admins)
- Uploading hub address and description to public hub list
- Hublinking, which makes it possible to search on other hubs connected to the network
- Administration of the hub from chat
- Scripting (In Perl)
The hub is run as a daemon, i.e, it runs in the background. Its administrated through a tcp connection, for example with telnet, which makes it possible to administer remotely, given that the user has the administration password. Its also possible to administer the hub directly from the chat in Direct Connect.
The software should run on all POSIX compliant operating systems, but the main testing has so far been done on GNU/Linux-x86 and Solaris-Ultrasparc. Please tell me if you fail or succeed in running it on other platforms.
<<less
Download (0.18MB)
Added: 2005-08-15 License: GPL (GNU General Public License) Price:
922 downloads
microdc 0.11.0

microdc 0.11.0


microdc is a command-line based Direct Connect client that uses GNU readline for user interaction. more>>
microdc is a command-line based Direct Connect client that uses the GNU Readline library for user interaction. microdc was developed from ground up and does not depend on any other program. Despite the command-line user interface, microdc was designed to be user friendly and simple to use.
microdc is currently in beta state - there may be many bugs not yet discovered. It also lacks some features that other clients support, such as file hashing, multiple hub connections, and hub list support.
microdc is free software - it is licensed under the terms of the GNU General Public License (GPL). It is written in C by Oskar Liljeblad, and is designed to compile and run on modern POSIX compatible systems such as Linux.
Main features:
- Nearly full support of the original Direct Connect protocol.
- GNU Readline support.
- Sensible tab-completion of commands, user names, local files, remote files, speed names, and connection names.
- One process per connection for optimal transfer rates.
- Small memory footprint (I think).
<<less
Download (0.45MB)
Added: 2006-10-27 License: GPL (GNU General Public License) Price:
1093 downloads
DConnect Daemon 1.1.0

DConnect Daemon 1.1.0


DConnect Daemon is a daemon that acts as a Direct Connect hub. more>>
DConnect Daemon is a Direct Connects hub working as daemon. It works currently under linux and FreeBSD, but we want to make them work on all Unixes (and under Windows).
DConnect Daemon works as a daemon in background and does not require any Xwindow system. Everything should work without any maintenance, but with possible runtime manipulations.
Main features:
- written in pure C
- utilizes threads - allow to work faster on SMP mashines
- good and strict protocol implementation - as far as we know it...
- access limitation through libwrap
- telnet administration console and traditional with DC client
- flexible configuration
Enhancements:
- Because full support for syslog is included, the old way of logging to files was removed.
- Switch to syslog-ng is recommended as it will make your logs cleaner.
- Silent mode is now switched on so it is impossible to redirect users who should not have access to the service you provide.
<<less
Download (0.34MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
937 downloads
USAGI Project 20060508

USAGI Project 20060508


USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec protocol. more>>
USAGI(UniverSAl playGround for Ipv6) Project works to deliver the production quality IPv6 and IPsec(for both IPv4 and IPv6) protocol stack for the Linux system, tightly collaborating with WIDE Project, KAME Project and TAHI Project.
USAGI Project is run by volunteers from various organizations. At this moment, the volunteers are from Japan, however, we are glad to work with volunteers in any country in the world.
We want to contribute to the Linux community and to the IPv6 community via the delivery of IPv6 protocol stack.
Enhancements:
- Unused code was removed.
- Minor bugfixes were made.
- Some of the additional utilities were reorganized.
<<less
Download (3.7MB)
Added: 2006-05-10 License: Open Software License Price:
1273 downloads
mysqlrowcopy 1.0

mysqlrowcopy 1.0


mysqlrowcopy is a tool that generates insert statements from result sets. more>>
mysqlrowcopy is a tool that generates insert statements from result sets. It produces output similar to what might result from running mysqldump on a single SELECT query.

This project helps eliminate some of the tedium of moving data between QA and production MySQL databases.

Build:

To build mysqlrowcopy, you should run:

./configure
make

A mysqlrowcopy and mysqlrowcopy.debug file are created. They have identical functionality, the .debug version simply has debugging symbols built in (for gdb).

Since mysqlrowcopy is probably going to be I/O bound with modest CPU and RAM usage, the only reason to even build a 64-bit version is to work around potential issues in dynamic linking 32-bit binaries against 64-bit libraries.

RECIPES

1. Migrating a MySQL user account reaper from QA server to a production server.

e.g. MySQL database server qa3.example.com to prod1.example.com:

$ mysqlrowcopy -h qa3.example.com
SELECT * FROM db WHERE User = "reaper" mysql db > reaper.sql
$ mysql -h prod1.example.com mysql < reaper.sql

You could of course simply pipe the output of mysqlrowcopy into mysql and skip the intermediate file.

(Dont forget to RELOAD PRIVILEGES afterwards)

2. Keep your test environment up to date. Populate it with production data every 24 hours. You could run this sequence from cron once a day:

$ mysqlrowcopy -h finance-db.example.com
SELECT * FROM stocks WHERE modified > DATE_SUB(NOW(),INTERVAL 24 HOUR)
finance stocks > day-stocks.sql

$ cat day-stocks.sql | mysql -h finance-test.example.com finance

3. Copy data between tables on different servers that have some similar fields.

Youve got common data in table Zip on a production database:

mysql> desc Zip;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | PRI | | |
| ZIPCodeType | char(1) | YES | | NULL | |
| City | varchar(32) | YES | | NULL | |
| CityType | char(1) | YES | | NULL | |
| State | varchar(32) | YES | | NULL | |
| StateCode | char(3) | YES | | NULL | |
| AreaCode | char(3) | YES | | NULL | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
9 rows in set (0.00 sec)

And youve got table ZipPosition in a research database:

mysql> desc ZipPosition;
+-------------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------------+-------------+------+-----+---------+-------+
| ZIPCode | varchar(5) | | | | |
| Latitude | varchar(12) | YES | | NULL | |
| Longitude | varchar(12) | YES | | NULL | |
+-------------+-------------+------+-----+---------+-------+
3 rows in set (0.00 sec)

You want to load data from production Zip into research ZipPosition.

$ mysqlrowcopy -h production SELECT ZIPCode,Latitude,Longitude common ZipPosition > pos.sql
$ cat pos.sql | mysql -h qa research

Note how we specify ZipPosition on the first line to tell mysqlrowcopy what the destination table is going to be.
<<less
Download (0.021MB)
Added: 2007-03-01 License: GPL (GNU General Public License) Price:
967 downloads
jPodder 1.1

jPodder 1.1


jPodder is the most complete podcasting program on the planet. more>>
jPodder is the most complete podcasting program on the planet. Yes we can claim this as, jPodder was one of the first programs to be created for podcasting and has been innovating ever since.
If you own a portable media player like the iPod or you want to listen to fresh content every day on your PC, then read on cause podcasting is what you are looking for.
With jPodder you can subscribe to websites containing audio. jPodder will download the files to your system and transfer these to your favourite media player.
Main features:
Currently supported languages:
- English
- Dutch
General/GUI
- Multi Platform program (Java based).
- Easy installer. (Creates shortcuts on Windows PCs).
- System tray (Minimize jPodder to download in background).
- GUI Menu and popup menus.
- Build-in User manual.
- Multi-Language (0.9 New!)
RSS Feed management
- Add, Remove & Edit feeds.
- Sort feeds by name.(0.9 New!)
- Move feeds up/down
- View detailed Feed information.
- Feeds stored in easy XML format.
- Extensive status bar.
- Drag & Drop Podcasts link (0.9 New!)
Enclosure previewing
- Preview enclosures incl. name, date, size..
- Show enclosure status (Downloaded, In player..)
- Show previous downloads from this feed.
- Highlights partial downloads.
- Highlights previous downloads.
Downloading
- Scheduled downloads
- Multiple simultaneous downloads
- Single enclosure download
- Smart-Download, Downloads latest only.
- Maximum downloads, Limiter to the number of downloads
- Resume partial downloads
- Manual download retry
- Feed Authentication (0.9 New!)
- Proxy Server support (Including authentication)
- build-in BitTorrent. (Including seeding).
Media Player Interface
- Natively supports transfer to iTunes and WMP.
- Player plugin facility. (0.9 New!)
- MIME-Type association to players (0.9 New!)
Podcast Production (0.9 New!)
- Manage production steps
- Auto-create RSS feed
- MP3 Tag editing
- Add enclosures to RSS feed
- Launch recorder
- FTP Transfer production.
- Auto-test RSS feed.
Logging
- Color coded logging.
- BitTorrent logging.
<<less
Download (11MB)
Added: 2007-01-05 License: GPL (GNU General Public License) Price:
1024 downloads
Hpodder 1.0.0

Hpodder 1.0.0


Hpodder is a tool to scan and download podcasts. more>>
Hpodder is a tool to scan and download podcasts. Such tools are often called podcatchers.
Hpodder is a command-line tool for Linux. The project has quite a few features. A few highlights are that it is easy to learn and use, has automatic discovery of feed metadata, and can import iPodder settings.
Enhancements:
- This is the first production release.
- Feeds or episodes that repeatedly return errors are now automatically pruned.
- Cleaning of download areas was improved.
- Bugs were fixed.
<<less
Download (0.19MB)
Added: 2007-07-30 License: GPL (GNU General Public License) Price:
501 downloads
PiTiVi 0.10.3

PiTiVi 0.10.3


PiTiVi is a non-linear audio/video editor for GNU/Linux using the GStreamer multimedia framework. more>>
PiTiVi is a non-linear audio/video editor for GNU/Linux using the GStreamer multimedia framework.
The GStreamer and PiTiVi team are pleased to announce a new pre-release of PiTiVi.
This release is in beta state, may suffer from hangs and is not yet ready for production. Transcoding/Encoding works though for files.
This release is also the last version based on the 0.8.x GStreamer series. Work is now aimed at the 0.9/0.10 series.
Features of this release:
- UI updates
- Settings control
- Transcoding
Enhancements:
- Improvement of first time user experience.
- Frame-by-frame seeking
- UI improvements for usability
- New graphics
- i18n support, translated in 14 languages
- Critical bugfixes
- Unit tests
- Advanced view disabled by default
<<less
Download (0.48MB)
Added: 2007-06-01 License: LGPL (GNU Lesser General Public License) Price:
882 downloads
GTDInbox 1.33

GTDInbox 1.33


GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool. more>>
GTDInbox is a thunderbird which discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTDInbox (formerly GTDGmail) discreetly integrates into Gmail making it even more suitable as a GTD tool.
GTD - Getting Things Done - is a simple and effective productivity concept: designed so that even the laziest and most scattered of people can be organised and stress free.
Main features:
- Easily Organise GTD Labels
- Quickly Review Outstanding Tasks
- Save Specialised Searches
- Send Myself Tasks and References
- Print Tasks to Cards
- Keyboard Shortcuts
Built by the authors of Bumble Search - a well-reviewed high quality extension that has featured in the national IT press - GTDInbox shares the same high production values.
<<less
Download (0.18MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
907 downloads
Email Administration Utility 1.5.2

Email Administration Utility 1.5.2


Email Administration Utility provides an IMAP-based email account management utility. more>>
Email Administration Utility provides an IMAP-based email account management utility.
The Email Administration Utilities package can be used to manage email accounts with a series of PHP-based scripts through a browser.
Addition, Removal, and modification of accounts is possible as long as an IMAP port is available on the mail server.
The Mailadmin project was originally designed to help owners of domains that were hosted by Hub.Org Networking Services. The company wanted users to be able to create, remove or modify email accounts when ever they wanted, giving them a quicker turnaround for Mail Administration Purposes.
As the utility was developed, tested and matured into what it is today, many users requested more features or contributed reports of issues to help improve the utilities stability. Hub.Org has given me permission to release the utility as an Open Source package so that others may also benifit from the simplicity that the Mailadmin utility offers to those who need complete control over email accounts.
With this in mind, I intend to continue development by adding new features as they are requested and fix any issues that may pop up. The more users who use and test the features that the Mailadmin utility offers will help to improve the functionality offered by Mailadmin. I have opened a Sourceforge account to help manage the development and releases of the utility as it matures into what users and developers see the Mailadmin to be.
Main features:
- Administrator:
- Adding/Deleting Email accounts.
- Setting Account Quotas.
- Obtaining Administrative Access Over Older Accounts.
- Changing An Accounts Password.
- Interfaces with the Cyrus IMAP/POP3 server.
- Transaction Log system, allowing you to track changes or to help debug issues.
- Standard User:
- Changing The Accounts Password.
- In Development:
- Transaction Log system, allowing you to track changes or to help debug issues.
<<less
Download (0.030MB)
Added: 2007-03-15 License: GPL (GNU General Public License) Price:
956 downloads
DCH# 0.61 Beta

DCH# 0.61 Beta


DCH# is a DirectConnect hub designed to be easy to use and highly configurable. more>>
DCH# project is a DirectConnect hub designed to be easy to use and highly configurable as well as providing quality administration tools to operators.
Main features:
- C# Language - Runs on both .NET and Mono
- XML Configuration - Easily Configurable
- Plugins - Server plugins and protocol exensions
- Protocol Support - Supports ADC protocol and NMDC
- Logging - 4 different logging levels for your viewing pleasure
- Multi-Threaded Design - Multithreaded goodness
Enhancements:
- This release adds basic user authenication based on the Users.xml file and the PrivateID.
- This only applies to the ADC protocol; the NMDC is broken and will be fixed in the future release.
- This also adds the StatusPlugin and HubRules plugin.
<<less
Download (0.033MB)
Added: 2006-03-22 License: MIT/X Consortium License Price:
744 downloads
Passwd H3 3.0.1

Passwd H3 3.0.1


Passwd is the Horde password changing application. more>>
Passwd project is the Horde password changing application. While it has been released and is in production use at many sites, it is also under heavy development in an effort to expand and improve the module.

Right now, Passwd provides fairly complete support for changing passwords via Poppassd, LDAP, Unix expect scripts, the Unix smbpasswd command for SMB/CIFS passwords, Kolab, ADSI, Pine, Serv-U FTP, VMailMgr, vpopmail, and SQL passwords.

<<less
Download (1.2MB)
Added: 2007-03-16 License: The Apache License Price:
952 downloads
uHub 0.1.3-2147

uHub 0.1.3-2147


uHub is a high performance peer-2-peer hub designed for UNIX-like operating systems. more>>
uHub is a high performance peer-2-peer hub designed for UNIX-like operating systems. The project is written in C, has a clean design and small memory footprint. It is scalable, and will work for small hubs on embedded hardware, as well as big hubs running on high preformance servers with thousands of users.
uHub uses the ADC protocol (ie. the next generation Direct Connect), and is compatible with DC++, Elise, QuickDC and other ADC clients.
Unlike other peer-2-peer networks, ADC is centralized. Clients connect to a central "hub" to communicate with other clients. It can be compared to super nodes (or ultra nodes) in other networks, except the hubs do not openly communicate between each other. The advantage to such a design is that the hubs are in control on who can access the network.
Main features:
- Easy configuration
- Advanced access control support
- Ban by network address ranges, nick name or CID
- IPv4 and IPv6 support
- Event logging
- Fast with a low memory footprint
- Support for chat only hubs (optional)
- Support for registered users only (optional)
- Runs as an unprivileged daemon (optional)
Enhancements:
- This release fixes several known crashes and cleans up the code quite a bit.
- The event handling has been refactored, a memory handling debug infrastructure is in place, and the log file format has changed slightly.
- The code base is now automatically tested for regressions.
- This release changes the license to the GPLv3.
<<less
Download (0.044MB)
Added: 2007-08-21 License: GPL v3 Price:
799 downloads
HTML::Mason 1.32

HTML::Mason 1.32


HTML::Mason is a powerful Perl-based web site development and delivery engine. more>>
HTML::Mason is a powerful Perl-based web site development and delivery engine. With Mason you can embed Perl code in your HTML and construct pages from shared, reusable components.

Mason solves the common problems of site development: caching, debugging, templating, maintaining development and production sites, and more.

Mason is 100% free and open source. Although it can be used from CGI or even stand-alone, it is optimally designed for use with two other open source technologies: mod_perl and Apache.

<<less
Download (MB)
Added: 2006-01-26 License: Artistic License Price:
1366 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5