dvd2one 2.3.0 serial
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 269
Download (0.62MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
811 downloads
Cons 2.3.0
Cons is a Software Construction System. more>>
Cons is a Software Construction System.
Cons is a system for constructing, primarily, software, but is quite different from previous software construction systems. Cons was designed from the ground up to deal easily with the construction of software spread over multiple source directories. Cons makes it easy to create build scripts that are simple, understandable and maintainable. Cons ensures that complex software is easily and accurately reproducible.
Cons uses a number of techniques to accomplish all of this. Construction scripts are just Perl scripts, making them both easy to comprehend and very flexible. Global scoping of variables is replaced with an import/export mechanism for sharing information between scripts, significantly improving the readability and maintainability of each script.
Construction environments are introduced: these are Perl objects that capture the information required for controlling the build process. Multiple environments are used when different semantics are required for generating products in the build tree. Cons implements automatic dependency analysis and uses this to globally sequence the entire build. Variant builds are easily produced from a single source tree. Intelligent build subsetting is possible, when working on localized changes. Overrides can be setup to easily override build instructions without modifying any scripts. MD5 cryptographic signatures are associated with derived files, and are used to accurately determine whether a given file needs to be rebuilt.
While offering all of the above, and more, Cons remains simple and easy to use. This will, hopefully, become clear as you read the remainder of this document.
Why Cons? Why not Make?
Cons is a make replacement. In the following paragraphs, we look at a few of the undesirable characteristics of make--and typical build environments based on make--that motivated the development of Cons.
Build complexity
Traditional make-based systems of any size tend to become quite complex. The original make utility and its derivatives have contributed to this tendency in a number of ways. Make is not good at dealing with systems that are spread over multiple directories. Various work-arounds are used to overcome this difficulty; the usual choice is for make to invoke itself recursively for each sub-directory of a build. This leads to complicated code, in which it is often unclear how a variable is set, or what effect the setting of a variable will have on the build as a whole. The make scripting language has gradually been extended to provide more possibilities, but these have largely served to clutter an already overextended language. Often, builds are done in multiple passes in order to provide appropriate products from one directory to another directory. This represents a further increase in build complexity.
Build reproducibility
The bane of all makes has always been the correct handling of dependencies. Most often, an attempt is made to do a reasonable job of dependencies within a single directory, but no serious attempt is made to do the job between directories. Even when dependencies are working correctly, makes reliance on a simple time stamp comparison to determine whether a file is out of date with respect to its dependents is not, in general, adequate for determining when a file should be rederived. If an external library, for example, is rebuilt and then ``snapped into place, the timestamps on its newly created files may well be earlier than the last local build, since it was built before it became visible.
Variant builds
Make provides only limited facilities for handling variant builds. With the proliferation of hardware platforms and the need for debuggable vs. optimized code, the ability to easily create these variants is essential. More importantly, if variants are created, it is important to either be able to separate the variants or to be able to reproduce the original or variant at will. With make it is very difficult to separate the builds into multiple build directories, separate from the source. And if this technique isnt used, its also virtually impossible to guarantee at any given time which variant is present in the tree, without resorting to a complete rebuild.
Repositories
Make provides only limited support for building software from code that exists in a central repository directory structure. The VPATH feature of GNU make (and some other make implementations) is intended to provide this, but doesnt work as expected: it changes the path of target file to the VPATH name too early in its analysis, and therefore searches for all dependencies in the VPATH directory. To ensure correct development builds, it is important to be able to create a file in a local build directory and have any files in a code repository (a VPATH directory, in make terms) that depend on the local file get rebuilt properly. This isnt possible with VPATH, without coding a lot of complex repository knowledge directly into the makefiles.
<<lessCons is a system for constructing, primarily, software, but is quite different from previous software construction systems. Cons was designed from the ground up to deal easily with the construction of software spread over multiple source directories. Cons makes it easy to create build scripts that are simple, understandable and maintainable. Cons ensures that complex software is easily and accurately reproducible.
Cons uses a number of techniques to accomplish all of this. Construction scripts are just Perl scripts, making them both easy to comprehend and very flexible. Global scoping of variables is replaced with an import/export mechanism for sharing information between scripts, significantly improving the readability and maintainability of each script.
Construction environments are introduced: these are Perl objects that capture the information required for controlling the build process. Multiple environments are used when different semantics are required for generating products in the build tree. Cons implements automatic dependency analysis and uses this to globally sequence the entire build. Variant builds are easily produced from a single source tree. Intelligent build subsetting is possible, when working on localized changes. Overrides can be setup to easily override build instructions without modifying any scripts. MD5 cryptographic signatures are associated with derived files, and are used to accurately determine whether a given file needs to be rebuilt.
While offering all of the above, and more, Cons remains simple and easy to use. This will, hopefully, become clear as you read the remainder of this document.
Why Cons? Why not Make?
Cons is a make replacement. In the following paragraphs, we look at a few of the undesirable characteristics of make--and typical build environments based on make--that motivated the development of Cons.
Build complexity
Traditional make-based systems of any size tend to become quite complex. The original make utility and its derivatives have contributed to this tendency in a number of ways. Make is not good at dealing with systems that are spread over multiple directories. Various work-arounds are used to overcome this difficulty; the usual choice is for make to invoke itself recursively for each sub-directory of a build. This leads to complicated code, in which it is often unclear how a variable is set, or what effect the setting of a variable will have on the build as a whole. The make scripting language has gradually been extended to provide more possibilities, but these have largely served to clutter an already overextended language. Often, builds are done in multiple passes in order to provide appropriate products from one directory to another directory. This represents a further increase in build complexity.
Build reproducibility
The bane of all makes has always been the correct handling of dependencies. Most often, an attempt is made to do a reasonable job of dependencies within a single directory, but no serious attempt is made to do the job between directories. Even when dependencies are working correctly, makes reliance on a simple time stamp comparison to determine whether a file is out of date with respect to its dependents is not, in general, adequate for determining when a file should be rederived. If an external library, for example, is rebuilt and then ``snapped into place, the timestamps on its newly created files may well be earlier than the last local build, since it was built before it became visible.
Variant builds
Make provides only limited facilities for handling variant builds. With the proliferation of hardware platforms and the need for debuggable vs. optimized code, the ability to easily create these variants is essential. More importantly, if variants are created, it is important to either be able to separate the variants or to be able to reproduce the original or variant at will. With make it is very difficult to separate the builds into multiple build directories, separate from the source. And if this technique isnt used, its also virtually impossible to guarantee at any given time which variant is present in the tree, without resorting to a complete rebuild.
Repositories
Make provides only limited support for building software from code that exists in a central repository directory structure. The VPATH feature of GNU make (and some other make implementations) is intended to provide this, but doesnt work as expected: it changes the path of target file to the VPATH name too early in its analysis, and therefore searches for all dependencies in the VPATH directory. To ensure correct development builds, it is important to be able to create a file in a local build directory and have any files in a code repository (a VPATH directory, in make terms) that depend on the local file get rebuilt properly. This isnt possible with VPATH, without coding a lot of complex repository knowledge directly into the makefiles.
Download (0.23MB)
Added: 2007-05-29 License: GPL (GNU General Public License) Price:
880 downloads
PyDNS 2.3.0
PyDNS provides a module for performing DNS queries from python applications. more>>
PyDNS project provides a module for performing DNS queries from python applications.
Im making this release because there hasnt been a release in a heck of a long time, and it probably deserves one. Id also like to do a substantial refactor of some of the guts of the code, and this is likely to break any code that uses the existing interface. So this will be a release for people who are using the existing API...
There are several known bugs/unfinished bits
- processing of AXFR results is not done yet.
- doesnt do IPv6 DNS requests (type AAAA)
- docs, aside from this file
- all sorts of other stuff that Ive probably forgotten.
- MacOS support for discovering nameservers
- the API that I evolved some time ago is pretty ugly. Im going to re-do it, designed this time.
<<lessIm making this release because there hasnt been a release in a heck of a long time, and it probably deserves one. Id also like to do a substantial refactor of some of the guts of the code, and this is likely to break any code that uses the existing interface. So this will be a release for people who are using the existing API...
There are several known bugs/unfinished bits
- processing of AXFR results is not done yet.
- doesnt do IPv6 DNS requests (type AAAA)
- docs, aside from this file
- all sorts of other stuff that Ive probably forgotten.
- MacOS support for discovering nameservers
- the API that I evolved some time ago is pretty ugly. Im going to re-do it, designed this time.
Download (0.020MB)
Added: 2006-05-10 License: Python License Price:
1266 downloads
netshng 2.3.0
netshng project can be used in the development of applications which require direct communication with a STRATA-family router. more>>
netshng project can be used in the development of applications which require direct communication (using the netsh protocol) with a Foxmoxie Networks STRATA-family router.
This program requires the use of libnetshclient. If in doubt, use the latest versions of both.
This application has been tested on the Linux platform only.
To compile, you must have:
GNU make 3.81+
GNUtls 1.4.4+
libnetshclient 2.2.0+
and of course, standard Posix and ANSI headers.
To build the binary, simply edit the Makefile and change the value of the variable named LIBNETSHCLIENT to the directory of your libnetshclient source and build.
Once done, type make.
There is presently no install mechanism, so this must be done manually.
<<lessThis program requires the use of libnetshclient. If in doubt, use the latest versions of both.
This application has been tested on the Linux platform only.
To compile, you must have:
GNU make 3.81+
GNUtls 1.4.4+
libnetshclient 2.2.0+
and of course, standard Posix and ANSI headers.
To build the binary, simply edit the Makefile and change the value of the variable named LIBNETSHCLIENT to the directory of your libnetshclient source and build.
Once done, type make.
There is presently no install mechanism, so this must be done manually.
Download (0.010MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
870 downloads
Spotter 2.3.0
Spotter is a program that lets students check their answers to math and science questions. more>>
Spotter is a program that lets students check their answers to math and science questions. It handles symbolic as well as numerical answers.
Spotter application is free and open source.
I got the idea for Spotter from LON-CAPA, which is also free and open-source. The programs are alike in some ways and different in others. There is another program called WeBWorK that also does similar things; it doesnt cost money, but Im not sure if its open-source or copylefted.
Enhancements:
- This version adds a general mechanism for creating qualitative questions using JavaScript, and uses that mechanism to implement multiple-choice questions.
<<lessSpotter application is free and open source.
I got the idea for Spotter from LON-CAPA, which is also free and open-source. The programs are alike in some ways and different in others. There is another program called WeBWorK that also does similar things; it doesnt cost money, but Im not sure if its open-source or copylefted.
Enhancements:
- This version adds a general mechanism for creating qualitative questions using JavaScript, and uses that mechanism to implement multiple-choice questions.
Download (0.13MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
977 downloads
stl2pov 2.3.0
stl2pov reads an STL (Standard Triangulation Language) file and outputs a POVray mesh. more>>
stl2pov reads an STL (Standard Triangulation Language) file and outputs a POVray mesh.
stl2pov has been tested with STL files generated by Pro/Engineer.
BUILDING THE PROGRAM
For building on FreeBSD and other systems with the GNU toolset, see the instructions in the file INSTALL. After installation, a manual page for this program can be read with man stl2pov. Additional documentation is available in the documentation directory. See the Makefile.
I have set up a cross-compiler to produce a win32 binary. You can find it in the file stl2pov-2.3.0.zip on my website; http://www.xs4all.nl/~rsmith/software/
If anyone wants to donate makefiles or project files for other systems and compilers I will be happy to include them in the distribution.
Enhancements:
- Follow the new syntax for povray: use triangle instead of facet.
<<lessstl2pov has been tested with STL files generated by Pro/Engineer.
BUILDING THE PROGRAM
For building on FreeBSD and other systems with the GNU toolset, see the instructions in the file INSTALL. After installation, a manual page for this program can be read with man stl2pov. Additional documentation is available in the documentation directory. See the Makefile.
I have set up a cross-compiler to produce a win32 binary. You can find it in the file stl2pov-2.3.0.zip on my website; http://www.xs4all.nl/~rsmith/software/
If anyone wants to donate makefiles or project files for other systems and compilers I will be happy to include them in the distribution.
Enhancements:
- Follow the new syntax for povray: use triangle instead of facet.
Download (0.012MB)
Added: 2006-06-07 License: GPL (GNU General Public License) Price:
1235 downloads
Avidemux 2.3.0 / 2.4 Preview 2
Avidemux is a simple visual editor for most common format (mpeg/avi/ogm/nuv) and codec (mpeg1/2/4/huffyuv). more>>
Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks.
It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities.
Avidemux is available for Linux, BSD, Mac OS X and Microsoft Windows under the GNU GPL license. The program was written from scratch by Mean, but code from other people and projects has been used as well. Patches, translations and even bug reports are always welcome.
<<lessIt supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities.
Avidemux is available for Linux, BSD, Mac OS X and Microsoft Windows under the GNU GPL license. The program was written from scratch by Mean, but code from other people and projects has been used as well. Patches, translations and even bug reports are always welcome.
Download (4.5MB)
Added: 2007-07-02 License: GPL (GNU General Public License) Price:
861 downloads
pngcheck 2.3.0
pngcheck is the official PNG tester and debugger. more>>
pngcheck verifies the integrity of PNG, JNG and MNG files (by checking the internal 32-bit CRCs [checksums] and decompressing the image data); pngcheck can optionally dump almost all of the chunk-level information in the image in human-readable form.
For example, it can be used to print the basic statistics about an image (dimensions, bit depth, etc.); to list the color and transparency info in its palette (assuming it has one); or to extract the embedded text annotations.
All PNG and JNG chunks are supported, plus almost all MNG chunks (everything but PAST, MAGN, DISC, DROP, DBYK, ORDR, and pHYg). This is a command-line program with batch capabilities (e.g., "pngcheck *.png").
Enhancements:
- This version adds an option to colorize the output (using ANSI colors), enhances the verbose output for interlaced images, and fixes three bugs that showed up in the most recent release of the brokensuite test images.
<<lessFor example, it can be used to print the basic statistics about an image (dimensions, bit depth, etc.); to list the color and transparency info in its palette (assuming it has one); or to extract the embedded text annotations.
All PNG and JNG chunks are supported, plus almost all MNG chunks (everything but PAST, MAGN, DISC, DROP, DBYK, ORDR, and pHYg). This is a command-line program with batch capabilities (e.g., "pngcheck *.png").
Enhancements:
- This version adds an option to colorize the output (using ANSI colors), enhances the verbose output for interlaced images, and fixes three bugs that showed up in the most recent release of the brokensuite test images.
Download (0.052MB)
Added: 2007-07-09 License: GPL (GNU General Public License) Price:
841 downloads
Xphone 2.0
Xphone is made for users who intend to hook their modem up to external speakers or their sound card and use it as a speaker . more>>
Xphone is made for users who intend to hook their modem up to external speakers or their sound card and use it as a speaker .
By default you get a half duplex speaker phone. Try full duplex at your own risk.
If it locks up type killall chat at a prompt to try to get back.
Also if it locks up try running minicom and quitting it without resetting the modem to initialize the serial port.
The preferences menu has some good facilities to play with.
Select either half duplex or full duplex:
Half duplex doesnt seem to have any problems. Full duplex appears to only work on a few modems and it may lock yours up. More importantly full duplex may pop your speakers.
If yours locks up execute "killall chat" at a command line to get back.
Select a modem device:
The serial device your modem is connected to: (/dev/modem)
Select a chat command:
Xphone uses chat syntax to communicate with the modem. Set this to whatever your chat command is (/usr/sbin/chat). Some versions of chat have a -S flag which may improve serial port performance so you can also try "/usr/sbin/chat -S".
Compilation notes:
Libc6 users can build it by typing make in this directory. The standalone executable is dropped in xphone/
Hacks and problems:
Full duplex doesnt work on my modem. Serial port interface sometimes doesnt happen. GUI toolkit cant close sockets to the X server.
Enhancements:
- Fix hang on startup because the default volume setting was out of range.
<<lessBy default you get a half duplex speaker phone. Try full duplex at your own risk.
If it locks up type killall chat at a prompt to try to get back.
Also if it locks up try running minicom and quitting it without resetting the modem to initialize the serial port.
The preferences menu has some good facilities to play with.
Select either half duplex or full duplex:
Half duplex doesnt seem to have any problems. Full duplex appears to only work on a few modems and it may lock yours up. More importantly full duplex may pop your speakers.
If yours locks up execute "killall chat" at a command line to get back.
Select a modem device:
The serial device your modem is connected to: (/dev/modem)
Select a chat command:
Xphone uses chat syntax to communicate with the modem. Set this to whatever your chat command is (/usr/sbin/chat). Some versions of chat have a -S flag which may improve serial port performance so you can also try "/usr/sbin/chat -S".
Compilation notes:
Libc6 users can build it by typing make in this directory. The standalone executable is dropped in xphone/
Hacks and problems:
Full duplex doesnt work on my modem. Serial port interface sometimes doesnt happen. GUI toolkit cant close sockets to the X server.
Enhancements:
- Fix hang on startup because the default volume setting was out of range.
Download (0.16MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1193 downloads
ser2net 2.3
The ser2net daemon allows telnet and TCP sessions to be established with a units serial ports. more>>
The ser2net daemon allows telnet and TCP sessions to be established with a units serial ports. Note that ser2net supports RFC 2217 (remote control of serial port parameters), but you must have a complient client. The only one I know it is kermit application (http://www.columbia.edu/kermit).
Enhancements:
- dataxfer.c, devcfg.c, devcfg.h, ser2net.conf, ser2net.8: Added a s banner token for printing out the serial parameters.
- ser2net.conf: Cleaned up the ugly banner3.
- Makefile.am: Add ser2net.init to EXTRA_DIST.
- configure.in: Move to version 2.3.
<<lessEnhancements:
- dataxfer.c, devcfg.c, devcfg.h, ser2net.conf, ser2net.8: Added a s banner token for printing out the serial parameters.
- ser2net.conf: Cleaned up the ugly banner3.
- Makefile.am: Add ser2net.init to EXTRA_DIST.
- configure.in: Move to version 2.3.
Download (0.29MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1210 downloads
jGnash 2.3.0
jGnash is a personal finance application written in Java. more>> jGnash 2.3.0 offers users a personal and useful finance application written in Java. jGnash is functional for keeping track of account balances and performing reconciliation. You can print checks, run simple reports, write your own scripts, and import QIF and GnuCash files.
The architecture of the data engine is unique for a financial application; please take a look at the technical information .jGnash is a double entry system, but you can make single entry transactions to support easy entry of adjustments to account balances. jGnash uses Accounts instead of Categories for double entry.
Double entry in jGnash works like most other commercial personal financial applications. You will not have to learn a new way of tracking your spending.
Major Features:
- Accurate calculations,no loss of precision or rounding errors
- Double Entry Transactions
- Single Entry Transactions
- Split Transactions
- Basic support for Investment Accounts and Transactions
- Nested Accounts
- Multiple Currencies (Default and Custom), Securities, and custom Commodities
- QIF import
- QIF import from on-line banking sources
- GnuCash import (1.8.x and 1.6.x)
- Auto-Completion
- Multiple look and feels
- Sortable account registers
- Reconciliation support
- Simple Reporting (More will be added)
- scripting support (BeanShell)
- Memorized transactions
- Update stock prices and currency exchange rates online
- File encryption
- Evaluation of mathematical expressions inside decimal fields
- Timestamp backup on file close or exit
Enhancements: Detect and correct accounts with self parenting
Requirements: Java 2 Standard Edition Runtime Environment
Added: 2009-06-28 License: GPL Price: FREE
49 downloads
GKrellM 2.3.0
GKrellM is a system monitor package. more>>
GKrellM application is a GTK-based stacked monitor program that charts SMP CPUs, disks, load, active net interfaces, and internet connections.
There are also builtin monitors for memory and swap, file systems with mount/umount feature, mailbox checking including POP3 and IMAP, clock/calendar, laptop battery, sensors (temperatures, voltages, and fans), and uptime.
It has LEDs for the net monitors and an on/off button and online timer for PPP. There is a GUI popup for configuration, plugin extensions can be installed, and many themes are available. It also features a client/server monitoring capability.
Main features:
- Hostname/systemname display.
- Clock/calendar.
- SMP CPU monitor that can chart individual CPUs and/or a composite CPU.
- Temperature, fan, and voltage sensor monitors if supported by the kernel and the mainboard hardware (Linux requires lm_sensors to be installed).
- Each sensor monitor has a configurable alarm and warning.
- Process monitor with a chart for load and forks and a display of number of current processes and users.
- Disk monitor that can chart individual disks or a composite disk.
- Internet monitor (http, ftp, ...) that displays current tcp port connections and charts historical port hits for over two days.
- Net interface monitors with charts for all routed net interfaces. Data rx/tx LEDs and a timer button that can be linked to a ppp or isdn net interface and displays on line time.
- Memory and swap space usage meters, and a swap page in/out chart.
- File system meters which show capacity/free space and can mount/umount.
- A mailbox monitor which can launch a mail reader, a mail fetch/check program, and a sound notify command. Builtin new mail message checking for mbox, maildir, MH, POP3, and IMAP mailboxes.
- APM laptop battery meter with a configurable alarm and warning for low battery time left.
- Uptime display.
- Multiple monitors managed by a single process to reduce system load.
- Charts have auto scaling or fixed scaling modes.
- Commands can be configured to run when monitor labels are clicked.
- gkrellm can run in client mode and collect data from a gkrellmd server running on a remote machine.
- Both gkrellm and the gkrellmd server are plugin capable so special interest monitors can be coded.
<<lessThere are also builtin monitors for memory and swap, file systems with mount/umount feature, mailbox checking including POP3 and IMAP, clock/calendar, laptop battery, sensors (temperatures, voltages, and fans), and uptime.
It has LEDs for the net monitors and an on/off button and online timer for PPP. There is a GUI popup for configuration, plugin extensions can be installed, and many themes are available. It also features a client/server monitoring capability.
Main features:
- Hostname/systemname display.
- Clock/calendar.
- SMP CPU monitor that can chart individual CPUs and/or a composite CPU.
- Temperature, fan, and voltage sensor monitors if supported by the kernel and the mainboard hardware (Linux requires lm_sensors to be installed).
- Each sensor monitor has a configurable alarm and warning.
- Process monitor with a chart for load and forks and a display of number of current processes and users.
- Disk monitor that can chart individual disks or a composite disk.
- Internet monitor (http, ftp, ...) that displays current tcp port connections and charts historical port hits for over two days.
- Net interface monitors with charts for all routed net interfaces. Data rx/tx LEDs and a timer button that can be linked to a ppp or isdn net interface and displays on line time.
- Memory and swap space usage meters, and a swap page in/out chart.
- File system meters which show capacity/free space and can mount/umount.
- A mailbox monitor which can launch a mail reader, a mail fetch/check program, and a sound notify command. Builtin new mail message checking for mbox, maildir, MH, POP3, and IMAP mailboxes.
- APM laptop battery meter with a configurable alarm and warning for low battery time left.
- Uptime display.
- Multiple monitors managed by a single process to reduce system load.
- Charts have auto scaling or fixed scaling modes.
- Commands can be configured to run when monitor labels are clicked.
- gkrellm can run in client mode and collect data from a gkrellmd server running on a remote machine.
- Both gkrellm and the gkrellmd server are plugin capable so special interest monitors can be coded.
Download (0.89MB)
Added: 2007-07-22 License: GPL (GNU General Public License) Price:
824 downloads
GNU Gadu 2.3.0
GNU Gadu is an Instant Messenger program created to work with protocols popular in Poland (but not only) more>>
GNU Gadu is an "Instant Messenger" program created to work with protocols popular in Poland (but not only).
GNU Gadu is based on extensible plug-in idea, also graphical user interface (written in GTK+) is a plugin. We support Gadu-Gadu, Tlen.pl and Jabber protocols currently.
<<lessGNU Gadu is based on extensible plug-in idea, also graphical user interface (written in GTK+) is a plugin. We support Gadu-Gadu, Tlen.pl and Jabber protocols currently.
Download (1.3MB)
Added: 2006-10-15 License: GPL (GNU General Public License) Price:
660 downloads
synctool 2.3.0
synctool is an administrative tool for working with clusters of computers. more>>
synctool is an administrative tool for working with clusters of computers.
synctool copies configuration files to groups of machines in your cluster based on what groups (or classes) they are in. By doing so, it keeps the configuration on that group of machines synchronized (or, "in sync").
If needed, synctool will restart or reload any daemons, as you wish. synctool can be easily extended to do other administrative tasks, such as checking daemons, checking free disk space, installing packages, etc. or any other task you want it to do.
synctool was developed by Walter de Jong from 2003 to 2006.
synctool simplyfies system administration by working with the following concepts:
- a host can be part of one or more groups, or classes
- files are designated a class by means of filename extension
- the overlay directory tree contains the files and directories that should be copied (or synced) to the target host
- when certain files are updated, you will want to execute a script (eg, /etc/init.d/daemon restart)
- simplicity. It uses the power of rsync and ssh to distribute the files.
- extendibility. Make synctool more powerful by writing plugin scripts.
<<lesssynctool copies configuration files to groups of machines in your cluster based on what groups (or classes) they are in. By doing so, it keeps the configuration on that group of machines synchronized (or, "in sync").
If needed, synctool will restart or reload any daemons, as you wish. synctool can be easily extended to do other administrative tasks, such as checking daemons, checking free disk space, installing packages, etc. or any other task you want it to do.
synctool was developed by Walter de Jong from 2003 to 2006.
synctool simplyfies system administration by working with the following concepts:
- a host can be part of one or more groups, or classes
- files are designated a class by means of filename extension
- the overlay directory tree contains the files and directories that should be copied (or synced) to the target host
- when certain files are updated, you will want to execute a script (eg, /etc/init.d/daemon restart)
- simplicity. It uses the power of rsync and ssh to distribute the files.
- extendibility. Make synctool more powerful by writing plugin scripts.
Download (0.024MB)
Added: 2007-02-07 License: GPL (GNU General Public License) Price:
989 downloads
libstratanetsh 2.3.0
libstratanetsh is used in development of applications which require direct communication with a Foxmoxie Networks STRATA routers more>>
libstratanetsh project provides source-code to a library (formerly called libnetshclient) for use in the development of applications which require direct communication (using the netsh protocol) with a Foxmoxie Networks STRATA-family router, or any STRATA protocol-capable implementation.
This library may be used to develop client or server implementations, and has also been used for purposes ranging from file transfer to voice applications.
Enhancements:
- TLS implementation optimized, updated API, server-operation support, bugfixes
<<lessThis library may be used to develop client or server implementations, and has also been used for purposes ranging from file transfer to voice applications.
Enhancements:
- TLS implementation optimized, updated API, server-operation support, bugfixes
Download (0.015MB)
Added: 2007-06-07 License: GPL (GNU General Public License) Price:
869 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above dvd2one 2.3.0 serial search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed