| Subcribe via RSS

Changing Registered Owner and Organization on Windows XP and Windows Server

May 29th, 2009 | No Comments | Posted in Information Technology

If you go to Control Panel > System you can see the information of windows registration owner and organization, you can change this information by editing the registry. These are the steps:

  1. Open RegEdit: Click on Start > Run… then type: regedit and click Ok
  2. Go to: HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows NT\ CurrentVersion
  3. Edit the value of RegisteredOrganization and RegisteredOwner

Squid Transparent Proxy Server on Windows Server 2003

January 20th, 2009 | 26 Comments | Posted in Internet, System Administration

In this article I’ll talk on how to setup a transparent proxy on Windows Server 2003 using Squid NT. Squid NT is a port from Linux base proxy server called Squid. I have successfully installed and configured Squid transparent proxy on Windows Server and here is how I do it.

Installing Squid NT is very easy, first you can download Squid NT here, and then you can follow my old tutorial here: http://markus.revti.com/2007/06/installing-squid-cache-for-windows/

Although installing Squid NT is easy, however configuring transparent proxy on Windows version of Squid is a bit tricky as Squid NT have its limitation. From Squid NT website it’s stated: “Transparent Proxy: missing Windows non commercial interception driver”. More »

Tags: , , ,

Is it Time to Move to Linux?

January 9th, 2009 | 8 Comments | Posted in Daily Blog

Recently I’m installing Linux Ubuntu on a PC and quite impressed with their developments. Linux Ubuntu becoming more and more user friendly for me (although for average PC users will still quite difficult to use Linux).

With my current needs of computing and work which is almost all of it is web based, such as chat with my abroad collegues, checking emails, social networking, blogging, web administration, server administration, etc. I started to feel that the need of Microsoft Windows is less demanding. More »

Tags: , , ,

Travel Coffee Presser

December 4th, 2008 | 1 Comment | Posted in Daily Blog

Two days ago I had a chat with my friend (and also my mentor in software engineering) Ruud Mulder. On the chat we discuss several subjects and one of it is “Coffee”, an interesting topic for both of us :) then the topic went to “I’ll make you jealous because I have an Espresso coffee maker at my house” as Ruud told me that he have an Espresso coffee maker at his house so he can make a “real espresso” that taste better than the coffee that made by the coffee machine at his office. More »

Tags:

Changing /tmp Partition Size on CPanel Server

November 19th, 2008 | 1 Comment | Posted in System Administration

Today one of my server have its /tmp partition is full and causing problems such as failed MySQL database query or Fantastico stop working because they can’t write temporary file. Here is the solution I found on CPanel’s forum:

lsof /tmp

Then umount /tmp and /var/tmp:

umount -l /tmp
umount -l /var/tmp

Then remove the old partition file:

rm -fv /usr/tmpDSK

Then create a new one:

/scripts/securetmp

Tags: ,

Google Translate Now Support Bahasa Indonesia

October 20th, 2008 | 1 Comment | Posted in Internet
Google Translate

Google Translate

I use Google Translate often for translating from Dutch to English as I’am currently working for a Dutch company and some of the documents are in Dutch.

Several days ago I noticed that Google Translate now support translation from/to Bahasa Indonesia. I tried several times and the translation is good enough although still a lot of words not translated or the translation is not correct.

I’m quite happy with the addition of Bahasa Indonesia as it will help a lot of Indonesian to understand English language.

Tags:

Xen VPS can’t initialize iptables table ‘filter’

October 3rd, 2008 | No Comments | Posted in Daily Blog

If you using HyperVM and get this error message after upgrading your dom0’s Xen kernel:

iptables v1.2.11: can't initialize iptables table `filter': iptables who? (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.

It means that the library for the kernel is not copied yet to the VM. To fix this simply copy the new kernel library from /lib/modules/<new kernel> to VM’s /lib/modules directory then restart the VM.

Tags: , ,

Recursive chmod for files or directories only

September 9th, 2008 | 8 Comments | Posted in System Administration

To do a recursive chmod to directories only you can run:

find . -type d -exec chmod 755 {} \;

And for files only:

find . -type f -exec chmod 644 {} \;

Tags: