From: Dirk Koopman Date: Thu, 27 Sep 2007 17:05:46 +0000 (+0100) Subject: added new version of gtkconsole X-Git-Tag: 1.55~56 X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=28cebf8f02cb9693da4e77652288ddb64f2339fb added new version of gtkconsole and admitted its existance. --- diff --git a/Changes b/Changes index 69dde9cf..b0ce1be7 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +27Sep07======================================================================= +1. Fixed gtkconsole to split out all the windows. See +/spider/gtkconsole/README for installation and usage instructions. This +program will work on both Windows and Linux provided the extra Gtk2 perl +libraries + dependencies are installed. Instructions for getting them are in +the README file. 25Sep07======================================================================= 1. Fix mrtg command so that it does not require /var/lock (which anyway gets removed and recreated on boot - and the debianised mrtg does not recognise diff --git a/gtkconsole/README b/gtkconsole/README new file mode 100644 index 00000000..9c88b940 --- /dev/null +++ b/gtkconsole/README @@ -0,0 +1,66 @@ +How to install and use Gtkconsole +--------------------------------- + +For Linux users:- + +Please make sure that you have the following perl packages loaded:- + +* Gtk2 + +this is best obtained from your distro's packaging system. For +Ubuntu/Debian users, something like (as root or via sudo):- + + aptitude install libgtk2-perl + +or for Fedora users:- + + yum install perl-Gtk2 perl-Gtk2-Ex-Simple-List perl-Gtk2-Ex-Utils + +For Windows Users:- + +This is a bit more complicated but you should either follow the instructions +on:- + + http://www.lostmind.de/gtk2-perl/ + +The important thing is that you should be running an activestate perl +in the 5.8 series. It may work with an earlier 5.6.1 build but I now +longer have the where withall to test it. Now would be a good time to +upgrade to the perl suggested on the webpage. The link points directly +to the activestate download site. + +You do need the GTK+ runtime. +You don't need Glade. + +Follow the instructions in "Installation instructions" and you are +strongly advised to use the method outlined in 2a) and not 2b). + +Don't bother with running gtk-demo. + +I am using a slightly earlier activestate perl than build 819, mine is +build 815. It still seems to work for me. + +Running the program:- + + cd /spider/gtkconsole + perl gtkconsole + +This should work if you are running it on the same machine as the +cluster. Otherwise, if you get errors try:- + + perl gtkconsole localhost 7300 + +where localhost and 7300 are the IP address and port of the cluster +you want to use. + +The interface is very basic at the moment, but it will improve and get +added to as time permits. + +You will notice that various windows will popup automatically as data +for those windows arrives. You can't stop at the moment. It is a +feature. + +Please report problems and feature requests to the dxspider-support +list. + +Dirk G1TLH diff --git a/perl/Version.pm b/perl/Version.pm index 4d198fa0..4ce6195a 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,6 +11,6 @@ use vars qw($version $subversion $build); $version = '1.54'; $subversion = '0'; -$build = '158'; +$build = '159'; 1;