break
Aug 20

Berikut cara instalasi indosat m2 di ubuntu..
instalasi berikut dijalankan pada Ubuntu 8.04 dan nokia E51

1. Hubungkan Hp dengan komputer
2.
$ lsusb

Bus 005 Device 001: ID 0000:0000
Bus 002 Device 003: ID 0421:0042 Nokia Mobile Phones
Bus 002 Device 002: ID 046d:c517 Logitech, Inc. LX710 Cordless Desktop Laser
Bus 002 Device 001: ID 0000:0000
Bus 004 Device 002: ID 0483:2016 SGS Thomson Microelectronics Fingerprint Reader
Bus 004 Device 001: ID 0000:0000
Bus 003 Device 001: ID 0000:0000
Bus 001 Device 001: ID 0000:0000

dari atas dapadilihat bahwa Hp memiliki vendor id 0421 (nokia) dan product id 0042. catat informasi ini karena nati diperlukan

3. sudo modprobe usbserial vendor=0×0421 product=0×0042

4.
$ sudo wvdialconf create

Editing `create’.

Scanning your serial ports for a modem.

Modem Port Scan<*1>: S0 S1 S2 S3
WvModem<*1>: Cannot get information for serial port.
ttyACM0<*1>: ATQ0 V1 E1 — OK
ttyACM0<*1>: ATQ0 V1 E1 Z — OK
ttyACM0<*1>: ATQ0 V1 E1 S0=0 — OK
ttyACM0<*1>: ATQ0 V1 E1 S0=0 &C1 — OK
ttyACM0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 — OK
ttyACM0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 — OK
ttyACM0<*1>: Modem Identifier: ATI — Nokia
ttyACM0<*1>: Speed 4800: AT — OK
ttyACM0<*1>: Speed 9600: AT — OK
ttyACM0<*1>: Speed 19200: AT — OK
ttyACM0<*1>: Speed 38400: AT — OK
ttyACM0<*1>: Speed 57600: AT — OK
ttyACM0<*1>: Speed 115200: AT — OK
ttyACM0<*1>: Speed 230400: AT — OK
ttyACM0<*1>: Speed 460800: AT — OK
ttyACM0<*1>: Max speed is 460800; that should be safe.
ttyACM0<*1>: ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0 — OK
WvModem<*1>: Cannot get information for serial port.
ttyUSB0<*1>: ATQ0 V1 E1 — failed with 2400 baud, next try: 9600 baud
ttyUSB0<*1>: ATQ0 V1 E1 — failed with 9600 baud, next try: 9600 baud
ttyUSB0<*1>: ATQ0 V1 E1 — and failed too at 115200, giving up.

Found an USB modem on /dev/ttyACM0.
Modem configuration written to create.
ttyACM0: Speed 460800; init “ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0″

5. edit file /etc/wvdial.conf
$ sudo gedit /etc/wvdial.conf

samakan dengan ini

[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init3 = AT+CGDCONT=1,”IP”,”indosatm2″
Modem Type = USB Modem
NEW PPPD = yes
Phone = *99***1#
ISDN = 0
Username = [isi dengan username indosat-M2]
Init1 = ATZ
Password = [isi dengan password]
Modem = /dev/ttyACM0
Baud = 460800

Apr 16

Kacau nih emang Mikocok.. bagi anda pengguna vista yang pengen update service pack 1, harap berhati - hati. bukan maksud buat nakut - nakutin tapi bagi pengguna vista dan OS lain dalam satu komputer, terjadi masalah yang udah diakui mikocok sendiri…

artikel diambil dari sini..

ternyata updatan baru mereplace boot loader. bagi yang install dual os dalam satu komputer pasti si boot loadernya di kostumisasi (secara otomatis biasanya sama os yang kedua di-install) nah boot loader ini akan di kembalikan oleh vista sehingga menimbulkan kekacauan..

ntah ini upaya mikocok sendiri buat biar orang ga bisa dual boot . to emang visa lame….

yah untung gwa ga make vista.. soal tampilah. ubuntu gwa masih jauh lebih cantik :P

Apr 11

[warning] smiley yahoo! adalah trademark miliki Yahoo.. it’s sure proprietary..
use @ you own responsibility

Hmm sepertinya akhir2 ini pada keranjingan Gtalk :D hehe. good then. ntar lama2 juga pada pake Android deh.

nah kalo diperatiin smiley di gtalk sendiri ga oke banget. bagi temen2 pasti udah pada kebiasaan pake smiley di yahoo.

nah kalo pake pidgin, ada smiley universal nih.. bisa buat macem2 protokol .. gtalk, pidgin, aim dll.. jadi ga perlu ganti2.

nih contohnya..
[Image]
pertama download filenya
http://andreineculau.com/blog/download/pidgin-original-1.1.tgz

buka pidgin > tools > prefence > Smiley Theme
atau pidgin > ctrl + p

drag drop file tadi ke window tersebut
atau klik add dan search file tadi

terus pilih Original Smilay 0.8.3
sekarang semua smiley untuk masing - masing protokol udah bisa di pake..

tapi kalo mau semua smiley muncul yahoo, pilih Original Smiley, Yahoo
sekarang semua protokol baik gtalk / yahoo pake smiley yahoo

Feb 14

Artikel ini dibuat setelah saya membaca majalah info linux edisi Desember 2007
Glib adalah sebuah library bawaan dari GTK yang didalamnya terdapat banyak sekali wrapper function. diantaranya adalah fungsi untuk struktur data.

perintah pkg-config digunakan untuk melakukan generate otomatis parameter waktu kompilasi
syntax :

code pkg-config [option]

option –cflags digunakan untuk menghasilkan parameter include folder untuk gcc
contoh :

pkg-config --cflags glib-2.0

menghasilkan : -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include
option –libs akan menghasilkan nama library yang akan di gunakan
contoh :

pkg-config --libs glib-2.0

menghasilkan : -lglib-2.0

cara untuk kompilasi dengan gcc adalah
syntax :

gcc `pkg-config --cflags -libs glib-2.0` [source] -o [executable]

contoh :

gcc `pkg-config --cflags -libs glib-2.0` glib1.c -o glib1

menghasilkan : file executable glib1

catatan tanda ` bukan merupakan tanda petik, karater tersebut biasa terletak pada tombol yang sama dengan simbol ~ (tilde) pada keyboard anda

apabila pkg-config mengeluarkan bahwa library tersebut tidak ditemukan, maka anda terlebih dahulu harus menginstall library Glib-2.0
dengan cara

sudo apt-get install libglib2.0-dev libglib2.0-doc

Ok.. lets start our first program. contoh program sederhana

//Begin file glib1.c

#include <stdio.h>

#include <glib.h>

int main (void)

{

 GString *gstr = g_string_new("Hello world! from Glib");

 printf("\n%s\n",gstr->str);

 g_string_free(gstr, TRUE);

 return 0;

}//End file glib1.c

program tersebut akan menghasilkan output

Hello world! from Glib

Read the rest of this entry »

Jul 17

A couple days ago i watch my free disk and from 80GB i only have 3GB left.
mostly i store serial movie like Prison Break, Heros and a couple movie and Avatars The legend of Aang :P

need some free space, i go to buy 12 piece DVD. 10 among them is Verbatim and 2 are for test.

first I’ve doubt when comes to burning DVD especially on linux platform. first i try to find nero burning software that works on linux. but it’s not free. sadly I’m afraid that this software will become my first illegal software on ubuntu. but when i try im getting error and lost one DVD. So after browse a little bit i found GnomeBaker. and its works pretty good. i burn 8DVD data without any problem.

and i burn it directly from iPOD. Don’t worry if you afraid to do this. well i tried it 8 times and still getting a good burn. here are the screenshot

Jul 17

Just a couple weeks ago, my father bought a new 19 inch Wide LCD for a good price at Rp. 1.800.000 ,- or about $199. its a fine monitor but there are no cd or driver inside. i get 1 dvi and 1 vga cable, adaptor and the power cable. I think it’s a good bargain because after i saw it on online store the same item cost about Rp. 2.000.000,- or about $220. but the support are very poor. the brand is GTC. if I’m not mistaken, its a Thailand brand. when i search for driver on the net. its even hard to search for the company website.

a browse a little bit and found a tutorial about getting dual monitor support on ubuntu. (here is the link http://ubuntuforums.org/showthread.php?t=221174) i use the mergeFD function on Xorg. its works fine, but first dont forget to backup your current /etc/X11/xorg.conf becuse something will get messy.

1st create clean configuration using

sudo apt-get dpkg-reconfigure xserver-xorg

it’s easier to work from a clean configuration. Mainly you just follow and answer the default configuration. but you really have to know a little bit info abot your monitor (such as Hsync, Vsync. browse for your monitor spec on the manufacturer’s website).

than just follow the tutorial. and happy ubuntu-ing :p

below are the screen shoot of dual monitor on windows. Im watching my download progress and chat with Pidgin while playing WC3 DotA

Jul 14

Firefox distribution included on linux distribution. we couldn’t denial that google is the most awesome search engine on the net. the default search engine on firefox is google.com . I use primarily google.co.id to search because its often came up with Indonesian language first. after browsing the web and a little of experiment I manage to change the default google search engine to google.co.id

here’s ho :
1. Open teriminal
2. cd /usr/share/firefox/searchplugins
3. vim google.xml (or whatever editor you use)
4. edit the following line :

<url type=”text/html” method=”GET” template=”http://www.google.com/search”>

to

<url type=”text/html” method=”GET” template=”http://www.google.co.id/search”>

5. save the file (on vim type “:w” without the quote)
6. restart the firefox

Jun 7

Ada suatu aplikasi di ubuntu yang pasti semua orang yg onlie make. Gaim.
sekarang udah sebulan gaim ganti nama jadi Pidgin. itu karena AOL nuntut karena Aim adalah trademark dari AOL (American On Line).

banyak si fitur tambahan (belum explore semua) tapi sayangnya, smile nya juga berubah dari gaim. mungkin karena mirip yah*o kali yak.

berikut caranya masukin smiley gaim ke pidgin

prerequisite : gaim dan pidgin terinstall

  1. cp /usr/share/pixmaps/gaim/smileys/ /usr/share/pixmaps/pidgin/emotes/gaim perintah tersebut akan mengcopy semua folder smiley di gaim ke folder smiley pidgin
  2. cd /usr/share/pixmaps/pidgin/emotes/gaim/ masuk ke directory gaim
  3. vim theme edit file tersebut. bisa juga pake text editor yang lain (ex: gedit)ubah line pertama menjadi sbbName=Gaim
    Description=Gaim Emoticons from each protocol’s official client.hal ini bertujuan supaya defaultnya ga sama dengan yang pidgin
  4. Done

Semoga manfaat :D