Negaraku Merdeka Web Buttons

Our 51st Merdeka is around the corner but somehow no one seems to be in the mood for celebration. I guess with all the nonsense going on in our political system today who has the time for Merdeka.

But anyway, if you are in the mood for some Merdeka web buttons then check out the Merdeka web buttons from Negaraku.They are 6 different color schemes for you to choose from and to add them simply paste the provided java scripts into you <body> section.

I’m not quite in the mood but I’ll show my support regardless.

Get them buttons.

How to add static routes in IPCop

IPCop till today does not have a GUI to add static routes.

The manual method. You will have to do this every time IPCop is rebooted.

root@proxy73:~ # route add -net 10.0.0.0 gw 10.38.24.1 netmask 255.0.0.0

Now let’s make the route persistent across reboots. There are 2 files for this. Use either one depending on your needs.

You can add the route command at the end of the /etc/rc.d/rc.local file. The route will be added every time IPCop is rebooted but not everytime the interface is restarted. Good for a box with minimal changes.

root@proxy73:~ # echo "route add -net 10.0.0.0 gw 10.38.24.1 netmask 255.0.0.0" >> /etc/rc.d/rc.local

The other way would be to add the route command at the end of the /etc/rc.d/rc.netaddress.up file. This will ensure that your routing table gets updated every time the interface is restarted.

root@proxy73:~ # echo "route add -net 10.0.0.0 gw 10.38.24.1 netmask 255.0.0.0" >> /etc/rc.d/rc.netaddress.up

I personally use the latter.

To view your routing table run the “route” command.

root@proxy73:~ # route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
213.27.199.80   *               255.255.255.248 U     0      0        0 eth2
192.168.1.0     *               255.255.255.0   U     0      0        0 eth1
10.38.24.0      *               255.255.248.0   U     0      0        0 eth0
10.0.0.0        10.38.24.1      255.0.0.0       UG    0      0        0 eth0
default         213.27.199.81   0.0.0.0         UG    0      0        0 eth2

Audi A4 Challenge for the iPhone

Audi came up with a smart promotional gimmick for it’s latest Audi. The company decided to use the iPhone with it’s huge userbase as their advertising platform to game as much reach as possible.

Audi released “Audi A4 Challenge“, A racing game for the iPhone. The game basically involves you driving around in an Audi and trying to constantly break your personal record. But what’s interesting are the controls. Acceleration is touch screen based and steering is done through the iPhone’s motion sensor. Pretty cool ha?

The game’s is free and is availale from the App Store.

P1 WiMAX goes live in KL

Drop Streamyx, go P1 WiMAX

WiMAX by P1( Packet One ) finally goes live in KL. Packages start from RM49 for 400Kbps and go up to RM269 for 2.4 Mbps. This the the non promotional price.

P1 is currently running their introduction promotion which starts on August 20th and ends on 30rd September. The prices have been significantly reduced and the modem (RM999) is included for free so sign up fast to enjoy the savings. I’m thinking about it too.

Source: Delirium

How to install ClamAV

Here a quick walk through on how to install and perform a file system scan with ClamAV. I’ll be installing and scanning on a RedHat 7.3 machine.

First download the required files listed below. For other distributions you should refer to the download page to get the suitable packages. I saved the files to /opt/clamav/

1. clamav (Scanning tools)

2. clamav-db (Virus database)

3. main.cvd (Virus database update file)

4. daily.cvd (Virus database update file)

Let’s start installing the packages.

[root@pinky:~]# rpm -ivh clamav-db-0.93.3-1.rh7.rf.i386.rpm

[root@pinky:~]# rpm -ivh clamav-0.93.3-1.rh7.rf.i386.rpm

[root@pinky:~]# cp main.cvd /var/clamav/

[root@pinky:~]# cp daily.cvd /var/clamav/

That concludes the install process. Now lets scan.

read more

© 2008-2009 The Danesh Project
Powered by Wordpress and made by Guerrilla. Best viewed in Mozilla Firefox