Download Internet Explorer 8

For those of you who use IE, IE 8 final is out and ready for download. Windows XP{.redirect} XP x64{.redirect} Windows Vista{.redirect} Windows Vista 64-bit{.redirect} Windows Server 2003{.redirect} Windows Server 2003 64-bit{.redirect} Windows Server 2008{.redirect} Windows Server 2008 64-bit{.redirect} Source: WingLoon || IE8

2009-03-24 · 1 min · Danesh Manoharan

Linux Tip #3: System uptime with uptime

Want to know how long your Linux box has been up for? Simple, just run the “uptime” command and you will be rewarded with the answer plus a bit more. 8:58pm up 19:54, 1 user, load average: 0.47, 0.62, 0.35 Above is the typical reply from uptime. On the left is the current time, followed by the system’s uptime, logged in users and finally the system’s load average. Sample output;...

2009-03-23 · 1 min · Danesh Manoharan

Linux Tip #2: Get your PID with $$

“$$” is a useful Linux variable you could use in your script to get it’s PID. The “$$” variable always holds the PID of the executing process. Why do you need it? Maybe to check if the script is already running? This is what I normally use it for. Sample Script; #!/bin/bash<br /> echo "My PID is $$"<br /> sleep 2 Sample Output; [root@keke ~]# ./test1.sh<br /> My PID is 8909

2009-03-17 · 1 min · Danesh Manoharan

Earth Hour Malaysia 2009 | Turn your lights off!

Come on guys, it’s just for an hour. Give mother nature a break…. Thanks to me good buddy Abinesh for getting me into Earth Hour 2009, My life just got greener 😀

2009-03-16 · 1 min · Danesh Manoharan

Linux Tip #1: Live monitoring with tail

This is something every Linux admin or Linux superuser probably already knows and uses everyday. The “tail -f” command monitors a file and tracks any changes to it. As changes are made to the monitored file the “tail” command will print them on screen. Live monitoring basically….. tail -f [log file] Sample output; `[root@keke ~]# tail -f /var/log/messages

2009-03-16 · 1 min · Danesh Manoharan