mypink moebuntu 3
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3720
Added: 2009-06-10 License: Artistic License Price: FREE
15 downloads
MyMP3db 3.3
MyMP3db will display your MP3 collection as a searchable, browsable, streamable Web site. more>>
MyMP3db will display your MP3 collection as a searchable, browsable, streamable Web site. You can use it to stream your music from anywhere to any Icecast compatible MP3 player, and without installing anything.
It is similar to Apache::MP3, but improved. It features a rich, yet easy to navigate interface. You can quickly search across artists, albums, and song titles with autocompletion. Artists and albums can be browsed. Cover art images for each album are supported.
MyMP3db project automatically tracks both your favorite and ignored songs. There is a real-time display of the songs youre listening to.
Main features:
- Stream songs to any Icecast compatible MP3 player
- Feature rich yet easy to navigate interface
- Quick search across artists, albums and song titles with autocomplete.
- Browse through artists and albums.
- View details on an album and all the songs in it.
- Supports coverart images for each album.
- An admin page for configuring playlist formatting.
- Build a custom playlist from any items you like. Individual songs or entire artists libraries.
- Tracks your favorite and ignored songs alike.
- Real-time history display of the songs youre listening to
<<lessIt is similar to Apache::MP3, but improved. It features a rich, yet easy to navigate interface. You can quickly search across artists, albums, and song titles with autocompletion. Artists and albums can be browsed. Cover art images for each album are supported.
MyMP3db project automatically tracks both your favorite and ignored songs. There is a real-time display of the songs youre listening to.
Main features:
- Stream songs to any Icecast compatible MP3 player
- Feature rich yet easy to navigate interface
- Quick search across artists, albums and song titles with autocomplete.
- Browse through artists and albums.
- View details on an album and all the songs in it.
- Supports coverart images for each album.
- An admin page for configuring playlist formatting.
- Build a custom playlist from any items you like. Individual songs or entire artists libraries.
- Tracks your favorite and ignored songs alike.
- Real-time history display of the songs youre listening to
Download (0.056MB)
Added: 2007-07-18 License: GPL (GNU General Public License) Price:
837 downloads
HTTPClient 0.3-3
HTTPClient provides a complete http client library. more>>
This package provides a complete http client library. It currently implements most of the relevant parts of the HTTP/1.0 and HTTP/1.1 protocols, including the request methods HEAD, GET, POST and PUT, and automatic handling of authorization, redirection requests, and cookies.
Furthermore the included Codecs class contains coders and decoders for the base64, quoted-printable, URL-encoding, chunked and the multipart/form-data encodings. The whole thing is free, and licenced under the GNU Lesser General Public License (LGPL) (note that this is not the same as the GPL).
Following are the kits and documentation for the HTTPClient Version 0.3-3. If you have any problems, bugs, suggestions, comments, etc. see the info on debugging and reporting problems. An older version of these pages are also available in Japanese, thanks to the kindly efforts of Yuji Kumasaka.
Using the HTTPClient should be quite simple. First add the import statement import HTTPClient.*; to your file(s). Next you create an instance of HTTPConnection (youll need one for every server you wish to talk to). Requests can then be sent using one of the methods Head(), Get(), Post(), etc in HTTPConnection.
These methods all return an instance of HTTPResponse which has methods for accessing the response headers (getHeader(), getHeaderAsInt(), etc), various response info (getStatusCode(), getReasonLine(), etc), the response data (getData(), getText(), and getInputStream()) and any trailers that might have been sent (getTrailer(), getTrailerAsInt(), etc). Following are some examples to get started.
To retrieve files from the URL "http://www.myaddr.net/my/file" you can use something like the following:
try
{
HTTPConnection con = new HTTPConnection("www.myaddr.net");
HTTPResponse rsp = con.Get("/my/file");
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
data = rsp.getData();
rsp = con.Get("/another_file");
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
other_data = rsp.getData();
}
catch (IOException ioe)
{
System.err.println(ioe.toString());
}
catch (ParseException pe)
{
System.err.println("Error parsing Content-Type: " + pe.toString());
}
catch (ModuleException me)
{
System.err.println("Error handling request: " + me.getMessage());
}
This will get the files "/my/file" and "/another_file" and put their contents into byte[]s accessible via getData(). Note that you need to only create a new HTTPConnection when sending a request to a new server (different protocol, host or port); although you may create a new HTTPConnection for every request to the same server this not recommended, as various information about the server is cached after the first request (to optimize subsequent requests) and persistent connections are used whenever possible (see also Advanced Info).
To POST form data from an applet back to your server you could use something like this (assuming you have two fields called name and e-mail, whose contents are stored in the variables name and email):
try
{
NVPair form_data[] = new NVPair[2];
form_data[0] = new NVPair("name", name);
form_data[1] = new NVPair("e-mail", email);
// note the convenience constructor for applets
HTTPConnection con = new HTTPConnection(this);
HTTPResponse rsp = con.Post("/cgi-bin/my_script", form_data);
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
stream = rsp.getInputStream();
}
catch (IOException ioe)
{
System.err.println(ioe.toString());
}
catch (ModuleException me)
{
System.err.println("Error handling request: " + me.getMessage());
}
Here the response data is read at leisure via an InputStream instead of all at once into a byte[].
As another example, if you want to upload a document to a URL (and the server supports http PUT) you could do something like the following:
try
{
URL url = new URL("http://www.mydomain.us/test/my_file");
HTTPConnection con = new HTTPConnection(url);
HTTPResponse rsp = con.Put(url.getFile(), "Hello World");
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
text = rsp.getText();
}
catch (IOException ioe)
{
System.err.println(ioe.toString());
}
catch (ModuleException me)
{
System.err.println("Error handling request: " + me.getMessage());
}
<<lessFurthermore the included Codecs class contains coders and decoders for the base64, quoted-printable, URL-encoding, chunked and the multipart/form-data encodings. The whole thing is free, and licenced under the GNU Lesser General Public License (LGPL) (note that this is not the same as the GPL).
Following are the kits and documentation for the HTTPClient Version 0.3-3. If you have any problems, bugs, suggestions, comments, etc. see the info on debugging and reporting problems. An older version of these pages are also available in Japanese, thanks to the kindly efforts of Yuji Kumasaka.
Using the HTTPClient should be quite simple. First add the import statement import HTTPClient.*; to your file(s). Next you create an instance of HTTPConnection (youll need one for every server you wish to talk to). Requests can then be sent using one of the methods Head(), Get(), Post(), etc in HTTPConnection.
These methods all return an instance of HTTPResponse which has methods for accessing the response headers (getHeader(), getHeaderAsInt(), etc), various response info (getStatusCode(), getReasonLine(), etc), the response data (getData(), getText(), and getInputStream()) and any trailers that might have been sent (getTrailer(), getTrailerAsInt(), etc). Following are some examples to get started.
To retrieve files from the URL "http://www.myaddr.net/my/file" you can use something like the following:
try
{
HTTPConnection con = new HTTPConnection("www.myaddr.net");
HTTPResponse rsp = con.Get("/my/file");
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
data = rsp.getData();
rsp = con.Get("/another_file");
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
other_data = rsp.getData();
}
catch (IOException ioe)
{
System.err.println(ioe.toString());
}
catch (ParseException pe)
{
System.err.println("Error parsing Content-Type: " + pe.toString());
}
catch (ModuleException me)
{
System.err.println("Error handling request: " + me.getMessage());
}
This will get the files "/my/file" and "/another_file" and put their contents into byte[]s accessible via getData(). Note that you need to only create a new HTTPConnection when sending a request to a new server (different protocol, host or port); although you may create a new HTTPConnection for every request to the same server this not recommended, as various information about the server is cached after the first request (to optimize subsequent requests) and persistent connections are used whenever possible (see also Advanced Info).
To POST form data from an applet back to your server you could use something like this (assuming you have two fields called name and e-mail, whose contents are stored in the variables name and email):
try
{
NVPair form_data[] = new NVPair[2];
form_data[0] = new NVPair("name", name);
form_data[1] = new NVPair("e-mail", email);
// note the convenience constructor for applets
HTTPConnection con = new HTTPConnection(this);
HTTPResponse rsp = con.Post("/cgi-bin/my_script", form_data);
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
stream = rsp.getInputStream();
}
catch (IOException ioe)
{
System.err.println(ioe.toString());
}
catch (ModuleException me)
{
System.err.println("Error handling request: " + me.getMessage());
}
Here the response data is read at leisure via an InputStream instead of all at once into a byte[].
As another example, if you want to upload a document to a URL (and the server supports http PUT) you could do something like the following:
try
{
URL url = new URL("http://www.mydomain.us/test/my_file");
HTTPConnection con = new HTTPConnection(url);
HTTPResponse rsp = con.Put(url.getFile(), "Hello World");
if (rsp.getStatusCode() >= 300)
{
System.err.println("Received Error: "+rsp.getReasonLine());
System.err.println(rsp.getText());
}
else
text = rsp.getText();
}
catch (IOException ioe)
{
System.err.println(ioe.toString());
}
catch (ModuleException me)
{
System.err.println("Error handling request: " + me.getMessage());
}
Download (0.52MB)
Added: 2005-09-27 License: LGPL (GNU Lesser General Public License) Price:
1491 downloads
NodeMon 0.3.3
NodeMon is a resource utilization monitor tailored to the Altix architecture, but is applicable to any Linux system or cluster. more>>
NodeMon is a visualization tool for monitoring system resource utilization. It allows distributed resource monitoring via the Growler software infrastructure.
It is modular, with existing modules for monitoring of CPU, memory, network, and numalink activity. Its most notable feature is its composition of large amounts of statistics into a single graphical window. This project was originally designed for monitoring NASAs Columbia supercomputer.
<<lessIt is modular, with existing modules for monitoring of CPU, memory, network, and numalink activity. Its most notable feature is its composition of large amounts of statistics into a single graphical window. This project was originally designed for monitoring NASAs Columbia supercomputer.
Download (0.68MB)
Added: 2007-08-03 License: GPL (GNU General Public License) Price:
813 downloads
pam_sotp 0.3.3
pam_sotp PAM module provides support for One Time Passwords (OTP) authentication. more>>
pam_sotp PAM module provides support for One Time Passwords (OTP) authentication. The "s" in "sotp" stands for "simple"; pam_sotp aims to be a simple, easy to configure, module.
pam_sotp is still under early stages of development. Although it seems to work pretty well be warned that this software could contain severe bugs that may put at risk the security of your system. Until a stable release is reached you are advised to not use pam_sotp on mission-critical systems or production servers.
Having said that, it seems that the software is reaching an stable stage. Ive received several reports about pam_sotp being used without problems in several configurations.
This project is way too small to have a serious roadmap, but anyways I guess that some of you would like to know what are my short/medium term plans for pam_sotp, so here they are:
Release pam_sotp 0.4.0, with some patches I received and other improvements I have in mind
Maintain the 0.4.x branch until it becomes stable
Release a couple of 1.0 release candidates and then finally pam_sotp 1.0
Maintain the 1.0 branch
Enhancements:
- Added disable and enable commands to otppasswd
- Bugfix: SGID shadow applications could not authenticate against pam_sotp (some SUID code somehow remained in pam_sotp)
<<lesspam_sotp is still under early stages of development. Although it seems to work pretty well be warned that this software could contain severe bugs that may put at risk the security of your system. Until a stable release is reached you are advised to not use pam_sotp on mission-critical systems or production servers.
Having said that, it seems that the software is reaching an stable stage. Ive received several reports about pam_sotp being used without problems in several configurations.
This project is way too small to have a serious roadmap, but anyways I guess that some of you would like to know what are my short/medium term plans for pam_sotp, so here they are:
Release pam_sotp 0.4.0, with some patches I received and other improvements I have in mind
Maintain the 0.4.x branch until it becomes stable
Release a couple of 1.0 release candidates and then finally pam_sotp 1.0
Maintain the 1.0 branch
Enhancements:
- Added disable and enable commands to otppasswd
- Bugfix: SGID shadow applications could not authenticate against pam_sotp (some SUID code somehow remained in pam_sotp)
Download (0.10MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1260 downloads
ddclient 3.7.3
ddclient is a client for dynamic DNS services. more>>
ddclient is a client for updating dynamic DNS entries for accounts on a number of dynamic DNS providers, including Dynamic DNS Network Services free DNS service.
Many different routers are supported.
ddclient is a small but full featured client requiring only Perl and no additional modules. ddclient project runs under most UNIX OSes and has been tested under GNU/Linux and FreeBSD.
Main features:
- operating as a daemon
- manual and automatic updates
- static and dynamic updates
- optimized updates for multiple addresses
- MX
- wildcards
- abuse avoidance
- retrying failed updates
- sending update status to syslog and through e-mail.
<<lessMany different routers are supported.
ddclient is a small but full featured client requiring only Perl and no additional modules. ddclient project runs under most UNIX OSes and has been tested under GNU/Linux and FreeBSD.
Main features:
- operating as a daemon
- manual and automatic updates
- static and dynamic updates
- optimized updates for multiple addresses
- MX
- wildcards
- abuse avoidance
- retrying failed updates
- sending update status to syslog and through e-mail.
Download (0.03MB)
Added: 2007-08-07 License: GPL (GNU General Public License) Price:
818 downloads
Ovidentia 6.3.3
Ovidentia is a professional collaborative/groupware portal generator more>>
Ovidentia is a professional collaborative/groupware portal generator featuring an administrable management tool with a workflow for the approval to publish articles, comments, files, or vacation requests.
It also features an agenda (shareable), an integrated directory, charts, an LDAP directory interface, add-ons support, a mail interface, and a WYSIWYG HTML editor to publish articles, news, posts, or write email. The project supports LDAP, Ovidentia, and Active Directory authentication.
Enhancements:
- Bugs correction
- Security corrective measures
- Vacation requests management evolutions
<<lessIt also features an agenda (shareable), an integrated directory, charts, an LDAP directory interface, add-ons support, a mail interface, and a WYSIWYG HTML editor to publish articles, news, posts, or write email. The project supports LDAP, Ovidentia, and Active Directory authentication.
Enhancements:
- Bugs correction
- Security corrective measures
- Vacation requests management evolutions
Download (2.1MB)
Added: 2007-05-11 License: GPL (GNU General Public License) Price:
896 downloads
mwcollect 3.0.3
mwcollect is an easy solution to collect worms and other autonomous spreading malware in a non-native environment. more>>
mwcollect is an easy solution to collect worms and other autonomous spreading malware in a non-native environment like FreeBSD or Linux.
The first versions were used to collect binaries for botnet monitoring and bots are still what mwcollect is mostly used for collecting.
Some people consider it a next generation honeypot, however that comparison often leads to the misunderstanding that computers running mwcollect can actually be infected with the malware - that is not the case!
Enhancements:
- This release adds a submit-gotek submission module, fixes some bugs in the timeout code, and builds cleanly under FreeBSD.
<<lessThe first versions were used to collect binaries for botnet monitoring and bots are still what mwcollect is mostly used for collecting.
Some people consider it a next generation honeypot, however that comparison often leads to the misunderstanding that computers running mwcollect can actually be infected with the malware - that is not the case!
Enhancements:
- This release adds a submit-gotek submission module, fixes some bugs in the timeout code, and builds cleanly under FreeBSD.
Download (0.042MB)
Added: 2006-02-02 License: GPL (GNU General Public License) Price:
1374 downloads
pkdump 3.3
pkdump is a port scanning detection tool. more>>
pkdump is a port scanning detection tool. The program detect any TCP ,UDP port scanning or open connection attempt from foreign host over the internet with IP protocol version 4
or IP protocol version 6 .
The program can detect:
TCP connect , TCP syn , TCP fin , TCP xmas, TCP ack, TCP null(no flags), UDP port (connect) and UDP null (0 bytes, UDP packets lengt ) , whether the IP packet are fragmented or not. (Please consult "Nmap"... man Nmap).
The program make a directory like this : "Pkdump-[date][time]" and in this directory make a file "PKDATA" that contains all IP packet sent and received during the transmission ,and during scanning attack make files that contains the data of the attack ;the data of the port scanning will displayed on the screen with a short beep;
Enhancements:
- Fixed bug in read-write operation.
- Show the number of IP fragment.
<<lessor IP protocol version 6 .
The program can detect:
TCP connect , TCP syn , TCP fin , TCP xmas, TCP ack, TCP null(no flags), UDP port (connect) and UDP null (0 bytes, UDP packets lengt ) , whether the IP packet are fragmented or not. (Please consult "Nmap"... man Nmap).
The program make a directory like this : "Pkdump-[date][time]" and in this directory make a file "PKDATA" that contains all IP packet sent and received during the transmission ,and during scanning attack make files that contains the data of the attack ;the data of the port scanning will displayed on the screen with a short beep;
Enhancements:
- Fixed bug in read-write operation.
- Show the number of IP fragment.
Download (0.018MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1201 downloads
KAppfinder 3.3.2
KAppfinder searches your workstation for many common applications and creates menu entries for them. more>>
KAppfinder searches your workstation for many common applications and creates menu entries for them.
This package is part of KDE, and a component of the KDE base module. See the kde and kdebase packages for more information.
Installation:
You need to install klik on your system to run cmg applications.
Press Alt-F2 and paste:
wget klik.atekon.de/client/install -O -|sh
<<lessThis package is part of KDE, and a component of the KDE base module. See the kde and kdebase packages for more information.
Installation:
You need to install klik on your system to run cmg applications.
Press Alt-F2 and paste:
wget klik.atekon.de/client/install -O -|sh
Download (0.81MB)
Added: 2005-09-29 License: GPL (GNU General Public License) Price:
1489 downloads
mp3blaster 3.2.3
mp3blaster provides interactive playing of audio files like mp3 on a text console. more>>
Mp3blaster is an mp3 player for computers running a UNIX-like operating system, e.g. Linux, Free/Net/OpenBSD, etc. mp3blasters interface is entirely text based, thereby eliminating the need for a graphical environment like X-Windows.
This does not limit the way you can control the player whilst playing though; just like any graphical mp3 player, there are cd-style buttons like play, stop, pause, next track, etc.
While hardly anyone had ever heard of mp3 back in early 1997, I began to build up my own mp3 collection. As a Linux (text console) adept, I was heavily frustrated by the lack of a decent mp3 player. There was a (at the time) very popular command-line based mp3 player though, called splay. I figured I could use its mpeg decoding library and write my own interface in ncurses to control it. The plan was there!
Thinking about how to implement this interface, I also wondered why all mp3players had such plain playlist functionality! I like the ability to chuck a bunch of CDs in a multi-CD cd player, and then play the CDs in random order. In such a way that the cd player selects one of the five CDs at random, and then plays the entire disc. This continues, until all discs have been played. No mp3 player could do this, so I decided to add it to mine.
Enhancements:
- A parallel build bug was fixed. make -j now works.
- Dynamic screen resizing was implemented.
- A race condition that caused 100% CPU consumption at the end of each song was fixed.
<<lessThis does not limit the way you can control the player whilst playing though; just like any graphical mp3 player, there are cd-style buttons like play, stop, pause, next track, etc.
While hardly anyone had ever heard of mp3 back in early 1997, I began to build up my own mp3 collection. As a Linux (text console) adept, I was heavily frustrated by the lack of a decent mp3 player. There was a (at the time) very popular command-line based mp3 player though, called splay. I figured I could use its mpeg decoding library and write my own interface in ncurses to control it. The plan was there!
Thinking about how to implement this interface, I also wondered why all mp3players had such plain playlist functionality! I like the ability to chuck a bunch of CDs in a multi-CD cd player, and then play the CDs in random order. In such a way that the cd player selects one of the five CDs at random, and then plays the entire disc. This continues, until all discs have been played. No mp3 player could do this, so I decided to add it to mine.
Enhancements:
- A parallel build bug was fixed. make -j now works.
- Dynamic screen resizing was implemented.
- A race condition that caused 100% CPU consumption at the end of each song was fixed.
Download (0.30MB)
Added: 2006-08-06 License: GPL (GNU General Public License) Price:
1179 downloads
PETSc 2.3.3
PETSc is a suite of data structures and routines for the scalable (parallel) solution of scientific applications. more>>
PETSc is a suite of data structures and routines for the scalable (parallel) solution of scientific applications modeled by partial differential equations.
PETSc library employs the MPI standard for all message-passing communication.
PETSc is easy to use for beginners. Moreover, its careful design allows advanced users to have detailed control over the solution process. PETSc includes a large suite of parallel linear and nonlinear equation solvers that are easily used in application codes written in C, C++, Fortran and now Python.
PETSc provides many of the mechanisms needed within parallel application codes, such as simple parallel matrix and vector assembly routines that allow the overlap of communication and computation. In addition, PETSc includes support for parallel distributed arrays useful for finite difference methods.
Main features:
- Parallel vectors
- scatters (handles communicating ghost point information)
- gathers
- Parallel matrices
- several sparse storage formats
- easy, efficient assembly.
- Scalable parallel preconditioners
- Krylov subspace methods
- Parallel Newton-based nonlinear solvers
- Parallel timestepping (ODE) solvers
- Complete documentation
- Automatic profiling of floating point and memory usage
- Consistent interface
- Intensive error checking
- Portable to UNIX and Windows
- Over one hundred examples
- PETSc is supported and will be actively enhanced for many years.
Enhancements:
- This release adds support for 2D and 3D mesh generation, refinement, partitioning, and distribution.
- It adds support for partitioning based upon arbitrary dimensional entities, e.g. vertices, faces, etc.
- It adds support for FIAT element generation.
- It adds support for higher order elements.
- A Poisson problem example in a separate repository has been added.
- The Hypre interface has been updated to use version 2.0.0.
- The Mumps interface has been updated to use version 4.7.3.
- The fftw interface has been updated to use v3.2alpha2.
- There are numerous bugfixes.
<<lessPETSc library employs the MPI standard for all message-passing communication.
PETSc is easy to use for beginners. Moreover, its careful design allows advanced users to have detailed control over the solution process. PETSc includes a large suite of parallel linear and nonlinear equation solvers that are easily used in application codes written in C, C++, Fortran and now Python.
PETSc provides many of the mechanisms needed within parallel application codes, such as simple parallel matrix and vector assembly routines that allow the overlap of communication and computation. In addition, PETSc includes support for parallel distributed arrays useful for finite difference methods.
Main features:
- Parallel vectors
- scatters (handles communicating ghost point information)
- gathers
- Parallel matrices
- several sparse storage formats
- easy, efficient assembly.
- Scalable parallel preconditioners
- Krylov subspace methods
- Parallel Newton-based nonlinear solvers
- Parallel timestepping (ODE) solvers
- Complete documentation
- Automatic profiling of floating point and memory usage
- Consistent interface
- Intensive error checking
- Portable to UNIX and Windows
- Over one hundred examples
- PETSc is supported and will be actively enhanced for many years.
Enhancements:
- This release adds support for 2D and 3D mesh generation, refinement, partitioning, and distribution.
- It adds support for partitioning based upon arbitrary dimensional entities, e.g. vertices, faces, etc.
- It adds support for FIAT element generation.
- It adds support for higher order elements.
- A Poisson problem example in a separate repository has been added.
- The Hypre interface has been updated to use version 2.0.0.
- The Mumps interface has been updated to use version 4.7.3.
- The fftw interface has been updated to use v3.2alpha2.
- There are numerous bugfixes.
Download (9.8MB)
Added: 2007-06-04 License: Freely Distributable Price:
874 downloads
Munin 1.3.3
Munin is a tool for graphing all sorts of information about one or more servers and displaying it in a web interface. more>>
Munin is a tool for graphing all sorts of information about one or more servers and displaying it in a web interface. Munin uses the execellent RRDTool (written by Tobi Oetiker) and is written in Perl. Munin has a master/node architecture.
The master connects to all the nodes at regular intervals, and asks them for data. It then stores the data in RRD-files, and (if needed) updates the graphs. One of the main goals has been ease of creating own "plugins" (graphs).
Installation:
edit Makefile.config
- create the user "munin"
- make install-main
- create a cron-entry to run "munin-cron" as the user "munin" every 5 minutes
- if you want to use the dynamic graphs, configure the cgi directory (an example for apache can be found in README-apache-cgi).
<<lessThe master connects to all the nodes at regular intervals, and asks them for data. It then stores the data in RRD-files, and (if needed) updates the graphs. One of the main goals has been ease of creating own "plugins" (graphs).
Installation:
edit Makefile.config
- create the user "munin"
- make install-main
- create a cron-entry to run "munin-cron" as the user "munin" every 5 minutes
- if you want to use the dynamic graphs, configure the cgi directory (an example for apache can be found in README-apache-cgi).
Download (0.30MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1097 downloads
RmiJdbc 3.3
RmiJdbc is a client/server JDBC Driver that relies on Java RMI. more>>
Need a Type 3 JDBC Driver for MS Access or SQL Server? Think RmiJdbc!
RmiJdbc project is a client/server JDBC Driver that relies on Java RMI.
All JDBC classes (like Connection, ResultSet, etc...) are distributed as RMI objects, so that you can distribute as you like the access to any database supporting the JDBC API.
In fact, RmiJdbc is just a bridge to allow remote access to JDBC drivers.
Why RmiJdbc?
- You develop a client/server application with databases on Windows (NT)? Use RmiJdbc along with the JDBC/ODBC Bridge, your Windows (NT) databases become remotely accessible in Java.
- You implement a JDBC Driver? Just implement the JDBC classes locally, dont bother with remote access!
- You need serializable JDBC classes? Here they are.
Enhancements:
- Add features/limitations/changes here
<<lessRmiJdbc project is a client/server JDBC Driver that relies on Java RMI.
All JDBC classes (like Connection, ResultSet, etc...) are distributed as RMI objects, so that you can distribute as you like the access to any database supporting the JDBC API.
In fact, RmiJdbc is just a bridge to allow remote access to JDBC drivers.
Why RmiJdbc?
- You develop a client/server application with databases on Windows (NT)? Use RmiJdbc along with the JDBC/ODBC Bridge, your Windows (NT) databases become remotely accessible in Java.
- You implement a JDBC Driver? Just implement the JDBC classes locally, dont bother with remote access!
- You need serializable JDBC classes? Here they are.
Enhancements:
- Add features/limitations/changes here
Download (0.56MB)
Added: 2006-11-01 License: LGPL (GNU Lesser General Public License) Price:
1097 downloads
Download (3.2MB)
Added: 2007-07-27 License: GPL (GNU General Public License) Price:
822 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 mypink moebuntu 3 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