August 2005 Archives
31.08.2005 02:26
Java on Mandriva 10.2 KDE 3.4
PATH=$PATH:/usr/java/jre1.5/binI then found this didnt solve the problem. Why you ask ?? Well I was very much wondering the same thing. I decided to run java_vm from console and got the error message that JAVA_HOME and PLUGIN_HOME were not set. Never knowing I had to set them I googled to find most were setting them to the dir above the java bin, like so:
export JAVA_HOME=/usr/java/jre1.5/ export PLUGIN_HOME=/usr/java/jre1.5/This finally got it working. Strange for a newly installed Distro to not have have Java working -----
24.08.2005 13:59
Interactive or non-interactive

- /etc/profile.d/vasm.sh
17.08.2005 20:44
WARNING Will Robinson
gkrellmd -a 10.1.1.11 -m 1 -dAnd then launched a seperate instance of GKrellm on my desktop with the command:
gkrellm -s 10.1.1.1And up she popped with all my servers information. Beut! Didn't have temps though. So I checked and didnt have lm_sensors package installed. So urpmi'd that and ran what it suggested "sensors-detect". It asked about scanning my system and found 2 sensors. One was my motherboard one and the other was a riva named chip. Must be the VGA. Thought I would say yes to installing a module for that as well and WHAMO! Whole system to a halt. There goes my 82 day uptime :(

15.08.2005 16:30
CSS beginnings
- http://positioniseverything.net/
- http://css.maxdesign.com.au/
- www.hotdesign.com/seybold/everything.html -- humous intro to css
09.08.2005 11:54
PHP fun (solution)
Its just like Perls chop function, servers same purpose. There easy solution like I said. -----
08.08.2005 23:01
PHP fun
$ext = substr($ret, -5);
echo $ext; // prints html
$name = pathinfo("/var/www/html/dbnfl/$ret");
echo $name['extension'], "\n"; // prints html
if ( $name['extension'] == "html" ) {
echo "String found to have html extension"; }
else { echo "string not found to have html"; } // prints "string not found to have html"
Can you see this strange dilema ?? I have tried several different ways with the syntax, yet always results the same. I will hopefully have the answer to this soon. -----