Transformer Keren!!!

Kalau kalian belun nonton transformer maka aku sarankan segera nonton karena film nya keren dan benar benar menghibur… gak rugilah kalo nonton, kalo gak nonton baru rugi

Optimus Prime 

Posted in my life | 4 Comments

Desktop Screenshot

Screenshot for my new desktop, Ubuntu 7.04 with T-ish,  like mac osx 😉

Posted in Information Technology, my life | 2 Comments

BIND changes for Fedora Core 2 (and beyond).

i found it useful for centos 4.5 too!

If your BIND name server acts as a slave for DNS zones, you have to change your BIND configuration to locate slave zone files within the slaves subdirectory of your zone data file directory. Otherwise, you may receive errors:

Jun 15 11:29:29 host named[6428]: dumping master file: tmp-XXXXPF7BBb: open: permission denied
Jun 15 11:29:29 host named[6428]: transfer of 'zone/IN' from IP_address#53: failed while receiving responses: permission denied
Jun 15 11:29:29 host named[6428]: transfer of 'zone/IN' from IP_address#53: end of transfer

Old configuration:

zone "zone" IN {
        type slave;
        file "zone";
        masters { IP_address; };
};

New configuration:

zone "zone" IN {
        type slave;
        file "slaves/zone";
        masters { IP_address; };
};

Posted in Information Technology | Leave a comment

Vettel becomes the youngest driver to earn point!

Sebastian Vettel was delighted after becoming the youngest driver to claim a point in Formula One by finishing eighth at Sunday's US Grand Prix.

Vettel, 19, was making his debut as a replacement for Pole Robert Kubica who was told to rest by doctors after a crash in Canada last weekend.

Jenson Button was previously the youngest driver to secure a Formula One point, earning his when he was 20.

"It was fantastic, great fun," said Vettel. "I tried to prepare myself for this kind of task. So in the end, I knew this could happen. It's just a question of where and when. As a reserve driver, you always have to be fit."

Well done Vettel!

more f1-live.com

Posted in motorsports | Leave a comment

Mounting a Linux LVM volume

Okey, maybe this will be a bit technical, but it worth if you want to mount a lvm volume to a linux system. 

in my case, there is hard disk which i want to look inside but unfortunately its still on lvm volume and i had a suprised that i can't just mount it to linux system.

#fdisk -l /dev/hdd

Disk /dev/hdd: 10.2 GB, 10242892800 bytes
255 heads, 63 sectors/track, 1245 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System
/dev/hdd1 * 1 13 104391 83 Linux
/dev/hdd2 14 1245 9896040 8e Linux LVM

its clear that /dev/hdd2 is linux LVM which i want to mount.

now we use pvs to determined the volume group!

#pvs

 PV           VG             Fmt Attr PSize PFree
/dev/hda2 VolGroup00 lvm2 a- 38,06G 32,00M

and to find out what device it will mount to system, we use:

lvdisplay /dev/VolGroup00

  — Logical volume —
  LV Name                /dev/VolGroup00/LogVol00
  VG Name                VolGroup00
  LV UUID                OaGyCv-UkUn-IFL1-xEd8-V3mJ-IG85-XMChWW
  LV Write Access        read/write
  LV Status              available
  # open                 1
  LV Size                37,03 GB
  Current LE             1185
  Segments               1
  Allocation             inherit
  Read ahead sectors     0
  Block device           253:0

  — Logical volume —
  LV Name                /dev/VolGroup00/LogVol01
  VG Name                VolGroup00
  LV UUID                x7itWw-eS0L-kjV7-72Fl-pTZX-fSKl-AqxxjX
  LV Write Access        read/write
  LV Status              available
  # open                 1
  LV Size                1,00 GB
  Current LE             32
  Segments               1
  Allocation             inherit
  Read ahead sectors     0
  Block device           253:1

and that's it. the device is at /dev/VolGroup00/LogVol00, now let just mount it to system.

mount /dev/VolGroup00/LogVol00 /mnt/hd

done. 

Posted in Information Technology | Leave a comment