Markus Blog What’s going on Internet?

19Nov/081

Changing /tmp Partition Size on CPanel Server

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
Bookmark and Share

Tagged as: , 1 Comment


20Oct/081

Google Translate Now Support Bahasa Indonesia

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.

Bookmark and Share

Tagged as: 1 Comment


3Oct/080

Xen VPS can’t initialize iptables table ‘filter’

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.

Bookmark and Share

Tagged as: , , No Comments

9Sep/087

Recursive chmod for files or directories only

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 {} \;
Bookmark and Share

Tagged as: 7 Comments

6Sep/081

New Forum: Talk Web ID

Recently I installed a new forum called Talk Web ID, you can visit it here: http://www.talk.web.id. The topics of my new forum is IT for now, but I'll expand it to be more general in the future. If you like to share or just chat about a topic please join my forum and post a new thread :) The forum is in Indonesian though.

If you have suggestions please post comment here or directly to the forum. I'll see you on the forum, thanks

Bookmark and Share

Tagged as: 1 Comment

28Aug/081

Free Web Design Templates

Web design is one of the most important things when you creating your website, whether it’s a personal website, corporate website, online shop or even a blog, you need a good design to attract visitors.

Bookmark and Share

15Aug/081

Delete Files Older Than n Days

In Linux system you can delete old unused files (usually the session files in /tmp) all at once by running this command:

find /path/to/files* -mtime +5 -exec rm {} \;

this command will delete files which is 5 days old, if you want to change the number of days to 3 days old, then you have to change +5 to +3 and run the command again.

Bookmark and Share

Tagged as: 1 Comment
12Aug/083

Online FLV to MP3 Converter

Do you like to watch video clips of you favorite musician at YouTube.com? As you know, you can download the videos at youtube by using additional plugin for you browser. But the downloaded file will be a .flv file which is a flash video. If you only want to have the music file, you can convert the .flv file into .mp3 file by using a converter available online.

Bookmark and Share