Ubuntu: please use a kernel appropriate

Paling sering gagal kalau install ubuntu server di vbox. (host xp pro dengan guest ubuntu server)
Padahal untuk ubuntu desktop tidak ada masalah.

ubuntu server vbox a 300x194 Ubuntu: please use a kernel appropriate

Selalu muncul pesan error “unable to boot – please use a kernel appropriate for your cpu”
Read more »

Install VMware-mui at ubuntu 8.04

Just like another application, after successfully Installation and running-well.
The next step is monitoring.

For vmware server, linux edition, the produsen of this application, make webtool monitoring, called management interface or vmware-mui.

This tools can be downloaded at the same page as download vmware-server. At that page you can read as Management interface

Management Interface.
The VMware Server Web-based management interface. Install on your VMware Server system to enable control from a Web browser. Includes downloadable VMware Server Console installation files.

Read more »

Belajar Nagios

Os yang digunakan saat dokumentasi ini ditulis adalah ubuntu-server 8.04.
Menggunakan nagios v3.0.3.

Dokumen instalasi dapat diikuti dengan mudah (“kopi paste”) dari ubuntu quickstart.

Pada waktu kompile plugin, agar dapat plugin check-snmp, pastikan sudah menginstall paket snmp.

apt-get install snmp

Setelah selesai instalasi, anda bisa belajar membuat monitoring host dari contoh localhost.
Kopi paste isi localhost dan ganti ip monitoring.
Cek apakah ada masalah, bila tidak silakan restart service nagios.

/usr/local/nagios/bin/nagios -v /usr/local/nagios/etc/nagios.cfg
/etc/init.d/nagios restart

Read more »

Instalasi Maia Mailguard di Ubuntu 8.04 Server

Tulisan asli dokumen ini mempergunakan ubuntu 6.06 dibuat oleh bang cecep dapat di lihat di situs ini
Instalasi Maia Mailguard di Ubuntu 6.06 Server (LTS)

Untuk versi 8.04 ada sedikit perbedaan di php dan smarty.
Juga saya tambahkan beberapa clue agar maia dapat langsung berjalan, tanpa harus trouble-shot lagi.

Pastikan postfix sudah terinstall dan berfungsi dengan baik dan benar.
Edit file master.cf pada postfix untuk menerima request dari port 10025.

vi /etc/postfix/master.cf
127.0.0.1:10025 inet n  -       n     -       -  smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o smtpd_restriction_classes=
-o smtpd_client_restrictions=
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o mynetworks=127.0.0.0/8
-o strict_rfc821_envelopes=yes
/etc/init.d/postfix restart

Read more »

Vi warna-warni di ubuntu

Clue dari milist tanya jawab.

# apt-get install vim

Lalu buka file /etc/vim/vimrc, cari baris syntax on, hilangkan tanda petik dua didepannya.

Untuk di trustix, buka file /usr/share/vim/vimrc, hilangkan tanda # di depan syntax on

Untuk di centos 5.2

yum install vim-enhanced

lalu edit untuk user root

cd /root
vi .bashrc

tambahkan baris ini

alias "vi"="/usr/bin/vim"

Gagal install perl via CPAN di ubuntu 7.10

# perl -MCPAN -e 'install IP::Country'
...
...
Checking if your kit is complete...
Looks good
Writing Makefile for IP::Country
-- NOT OK
Running make test
Can't test without successful make
Running make install
make had returned bad status, install seems impossible

Masalah ini muncul ketika saya ingin mengintall model perl via CPAN di ubuntu 7.10.
Read more »