Archive for May, 2008

How to retrieve root password

Friday, May 23, 2008 15:04 No Comments

There’re 2 ways to solve this problem. 1st way Reboot your linux machine Get into “grub” menu then press “e” Go to your default kernel then press “e” again Then go to grub promp grub> default_kernel single <– type “single” at the end of your kernel. We are entering single mode. Then it will appear [...]

This was posted under category: Unix

Telnet – SMTP Commands (sending mail using telnet)

Friday, May 23, 2008 15:01 No Comments

In order to access your mailbox you will need 3 things: * An active internet connection (an embarrasing stage to miss sometimes!) * The address of a mail server capable of relaying for you – usually provided by your dialup provider (e.g. mail.domain.ext) * A valid email address (e.g. mail@domain.ext) The first thing to do [...]

This was posted under category: Unix, Windows

Installing Cacti On CentOS 4.4

Friday, May 23, 2008 14:58 No Comments

This’s the tutorial how to install Network Monitoring Tools (Cacti) 1. Download Cacti Source cd / mkdir downloads chmod 755 downloads cd downloads wget http://www.cacti.net/downloads/cacti-0.8.6j.tar.gz 2. Download the Plug-in Architecture wget http://cactiusers.org/downloads/cacti-plugin-arch.tar.gz

This was posted under category: Unix

PHP5 configure error on SuSe 9.1

Friday, May 23, 2008 14:55 No Comments

While building PHP5 on SuSe 9.1, i was getting configure error as… checking if your cpp allows macro usage in include lines… yes checking for IMAP support… yes checking for IMAP Kerberos support… no checking for IMAP SSL support… yes checking for pam_start in -lpam… no checking for crypt in -lcrypt… yes checking whether build [...]

This was posted under category: Unix

Installing Transparent Proxy Server on Debian / Ubuntu Squid 2.6

Friday, May 23, 2008 13:33 7 Comments

First of all, install squid by using our lovely packaging management “apt-get” glen@lumanau:~$ sudo apt-get install squid After all finished, let’s edit the configuration. Use your favorite editor. For this tutorial, I’m using “vi” as the editor glen@lumanau:~$ sudo vi /etc/squid/squid.conf Find this in squid.conf and change it visible_hostname proxy.lumanau.web.id cache_mgr glen@lumanau.web.id http_port 3128 transparent [...]

This was posted under category: Unix