<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7572900934255893439</id><updated>2011-12-30T14:51:25.135+08:00</updated><category term='videocard'/><category term='console'/><category term='SOCIAL PENGUIN'/><category term='Embedded Linux'/><category term='linus'/><category term='terminal'/><category term='package'/><category term='desktop'/><category term='kernel programming'/><category term='debian'/><category term='wheezy'/><category term='x86_64'/><category term='youtube'/><category term='ubuntu'/><category term='bash'/><category term='font'/><category term='networking'/><category term='forensics'/><title type='text'>MyDebian Group</title><subtitle type='html'>Mydebian group is a group of debian enthusiast in Malaysia. Its mainly to document debian information and debian news as well as debian experiences and debian activities in the context of Malaysian's Debian Enthusiast.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>29</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-1661056629656245003</id><published>2011-06-03T12:47:00.030+08:00</published><updated>2011-06-06T20:48:30.944+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='desktop'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Background on Ubuntu</title><content type='html'>Recently, I installed Ubuntu on my machine. I have a folder called climbingwallpapers in&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;/usr/share/backgrounds/ &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;with all kinds of background pictures. Anyway, I wanted to have a bunch of desktop background that changes from time to time. I notice that there is an xml file that does this in one of the default installation folder with images.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I'm sure there is an easier way to come up with the xml file for the backgrounds in my folder.&lt;/div&gt;&lt;div&gt;But I didn't bother to google. Just wrote this short script....and ran it. If you would like to use it, I've attached it here. Just make the necessary changes and run it  like...&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;$ python generatedesktoptheme.py &amp;gt; background-1.xml&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;the script is below...&lt;/div&gt;&lt;pre name="code" class="python"&gt;#!/usr/bin/env python&lt;br /&gt;import os&lt;br /&gt;import re&lt;br /&gt;&lt;br /&gt;transition = '5.0'&lt;br /&gt;duration = '300'&lt;br /&gt;count = 0&lt;br /&gt;firstfile = ''&lt;br /&gt;ffrom = ''&lt;br /&gt;path = '/usr/share/backgrounds/climbingwallpaper/'&lt;br /&gt;&lt;br /&gt;print "&amp;lt;background&amp;gt;"&lt;br /&gt;print "  &amp;lt;starttime&amp;gt;"&lt;br /&gt;print "    &amp;lt;year&amp;gt;2009&amp;lt;/year&amp;gt;"&lt;br /&gt;print "    &amp;lt;month&amp;gt;08&amp;lt;/month&amp;gt;"&lt;br /&gt;print "    &amp;lt;day&amp;gt;04&amp;lt;/day&amp;gt;"&lt;br /&gt;print "    &amp;lt;hour&amp;gt;00&amp;lt;/hour&amp;gt;"&lt;br /&gt;print "    &amp;lt;minute&amp;gt;00&amp;lt;/minute&amp;gt;"&lt;br /&gt;print "    &amp;lt;second&amp;gt;00&amp;lt;/second&amp;gt;"&lt;br /&gt;print "  &amp;lt;/starttime&amp;gt;"&lt;br /&gt;print "&amp;lt;!-- This animation will start at midnight. --&amp;gt;"&lt;br /&gt;&lt;br /&gt;for f in os.listdir(path):&lt;br /&gt; if re.search("\.jpg|\.gif", f):&lt;br /&gt;   count+=1&lt;br /&gt;   if count == 1:&lt;br /&gt;     firstfile = f&lt;br /&gt; else:&lt;br /&gt;   continue&lt;br /&gt;&lt;br /&gt; f = path+f&lt;br /&gt; if ffrom == '':&lt;br /&gt;   ffrom = f&lt;br /&gt;   print "  &amp;lt;static&amp;gt;"&lt;br /&gt;   print "    &amp;lt;duration&amp;gt;"+duration+"&amp;lt;/duration&amp;gt;"&lt;br /&gt;   print "    &amp;lt;file&amp;gt;"+f+"&amp;lt;/file&amp;gt;"&lt;br /&gt;   print "  &amp;lt;/static&amp;gt;"&lt;br /&gt; else:&lt;br /&gt;   print "  &amp;lt;transition&amp;gt;"&lt;br /&gt;   print "    &amp;lt;duration&amp;gt;" +transition+"&amp;lt;/duration&amp;gt;"&lt;br /&gt;   print "    &amp;lt;from&amp;gt;"+ffrom+"&amp;lt;/from&amp;gt;"&lt;br /&gt;   print "    &amp;lt;to&amp;gt;"+f+"&amp;lt;/to&amp;gt;"&lt;br /&gt;   print "  &amp;lt;/transition&amp;gt;"&lt;br /&gt;   ffrom = f&lt;br /&gt;   print "  &amp;lt;static&amp;gt;"&lt;br /&gt;   print "    &amp;lt;duration&amp;gt;"+duration+"&amp;lt;/duration&amp;gt;"&lt;br /&gt;   print "    &amp;lt;file&amp;gt;"+f+"&amp;lt;/file&amp;gt;"&lt;br /&gt;   print "  &amp;lt;/static&amp;gt;"&lt;br /&gt;&lt;br /&gt;print "  &amp;lt;transition&amp;gt;"&lt;br /&gt;print "    &amp;lt;duration&amp;gt;"+transition+"&amp;lt;/duration&amp;gt;"&lt;br /&gt;print "    &amp;lt;from&amp;gt;"+ffrom+"&amp;lt;/from&amp;gt;"&lt;br /&gt;print "    &amp;lt;to&amp;gt;"+path+firstfile+"&amp;lt;/to&amp;gt;"&lt;br /&gt;print "  &amp;lt;/transition&amp;gt;"&lt;br /&gt;print "&amp;lt;/background&amp;gt;"&lt;br /&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-1661056629656245003?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/1661056629656245003/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=1661056629656245003' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/1661056629656245003'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/1661056629656245003'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2011/06/background-on-ubuntu.html' title='Background on Ubuntu'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-988532338554415157</id><published>2011-05-01T13:41:00.001+08:00</published><updated>2011-05-01T13:41:36.704+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='wheezy'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Debian Wheezy/Sid/testing</title><content type='html'>&lt;div style="text-align: justify;"&gt;Hi,&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;I rarely blogged here - since most of the time I wasn't using Debian, but it's derived work - Ubuntu. Now that I'm getting bored facing the workable and hardly to break distro, I dare myself to use Debian Testing for my Dell D430 laptop.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;The installation isn't taking so much pain, but the first problem that I met is my keyboard and my mouse weren't worked even during the GDM session. I managed to use its rescue DVD and get &amp;nbsp;the shell works. Later I installed gpm and walla, it's worked.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;I hanged at #debian but the communities suggested udev to be backdated(meaning, since I am using Testing distro, it will break, and don't complain, use Stable instead). However prior to trying udev workaround, gpm IS the answer and it's working. Experience does solve this problem.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Actually I installed OpenSuse 11.4 before.. since I want to open my opinion to other distro as well. But I keep breaking my machine, and does not get my binaries straight away.. meaning it lacking software compared to Debian based.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Debian however, lacking Kamoso, a webcam software that I chose to record. (actually I'm using ffmpeg to, but ffmpeg does not show real time video, I don't want to spend my time write another script just for that).&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;So still, Ubuntu IS the most relaxing distro for desktop as for me, as for now.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Trolls are welcomed.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-988532338554415157?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/988532338554415157/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=988532338554415157' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/988532338554415157'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/988532338554415157'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2011/05/debian-wheezysidtesting.html' title='Debian Wheezy/Sid/testing'/><author><name>najmi</name><uri>http://www.blogger.com/profile/11282323362186270236</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://i7.photobucket.com/albums/y297/mnajem/penguin.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-4961477379000449195</id><published>2010-10-01T17:47:00.000+08:00</published><updated>2010-10-01T17:47:21.983+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='bash'/><title type='text'>Several important Bash shortcut</title><content type='html'>I've  been using Bash a lot, and sometimes when typing long command line,  having to press the arrow button multiple times to go to the first  character is very tiring.&lt;br /&gt;&lt;br /&gt;This are few important shortcut that I start to use:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Ctrl + a - Jump to the start of the line&lt;br /&gt;Ctrl + e - Jump to the end of the line&lt;br /&gt;Alt + d - Delete word&lt;br /&gt;Alt + f - Move forward a word, where a word is composed of letters and digits&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: large;"&gt;Alt + b - Move backward a word&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;More info from this blogpost : &lt;a href="http://linuxhelp.blogspot.com/2005/08/bash-shell-shortcuts.html"&gt;http://linuxhelp.blogspot.com/2005/08/bash-shell-shortcuts.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Or from Bash Reference Manual regarding Readline Movement : &lt;a href="http://www.gnu.org/software/bash/manual/bashref.html#Readline-Movement-Commands"&gt;http://www.gnu.org/software/bash/manual/bashref.html#Readline-Movement-Commands&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-4961477379000449195?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/4961477379000449195/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=4961477379000449195' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/4961477379000449195'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/4961477379000449195'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2010/10/several-important-bash-shortcut.html' title='Several important Bash shortcut'/><author><name>Sharuzzaman Ahmat Raslan</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://1.bp.blogspot.com/_B0umfWxvhps/TUZrgiWK39I/AAAAAAAAACc/nREhhLoim7k/s220/avatar.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-935031287999914784</id><published>2010-08-23T21:36:00.003+08:00</published><updated>2010-08-23T21:58:28.574+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='forensics'/><title type='text'>Going deeper to look for what we have lost.</title><content type='html'>There are not much blog writeup on MyDebian blog, but occasionally, when i find something useful, no matter how mundane or easy it is for the experienced user, I will try to document it somewhere. The objective is that, maybe somehow, somewhere, someone will benefit from it.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Recently, I accidentally formatted one of my windows partition by mistake. I know this is something stupid to do.&lt;/div&gt;&lt;div&gt;And that's what happens when you start to use w1#%#0%s for a long time. You tend to stop thinking.&lt;/div&gt;&lt;div&gt;To cut the story short, I wanted to format one of my partitions, and accidentally formatted the wrong partition. Worst, I reformatted the partition with &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;$ mke2fs /dev/sdb5&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;When i realized what I have done, it was already too late. All I can do now is unmount it immediately and try to figure out a way to retrieve the files back from some forensics software. Supposedly, mke2fs allocates a new filesystem on the partition and does a low level format of putting zeros. I'm not sure how true is that. I felt so stupid for doing something without thinking...and I was banging my head on the table. The particular partition had many files....aside from my collection of movies, anime and tv series videos, a whole lot of research work is in that partition.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Anyhow, i wasted no time and tried to look for a way to recover the files. Thankfully, I found a forensics software tool on linux, and conveniently, you can use aptitude to install it. The software I installed is &lt;b&gt;&lt;i&gt;testdisk&lt;/i&gt;&lt;/b&gt;.&lt;/div&gt;&lt;div&gt;After.... &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;$&lt;b&gt;aptitude install testdisk&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;&lt;div&gt;I ran the software with &lt;b&gt;testdisk /dev/sdb&lt;/b&gt;, and i followed the menu and run an analyses and a deeper search&lt;/div&gt;&lt;div&gt;analyses on the whole disk. I'm not very sure how testdisk work, but its pretty cool. It managed to detect and identify my missing ntfs partition that was deleted. I managed to recover the missing ntfs partition and made copies of my missing files in that partition. &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Well, I heard some people using it to find files they deleted by mistake. I hope you'll find a good use for it too.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-935031287999914784?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/935031287999914784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=935031287999914784' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/935031287999914784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/935031287999914784'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2010/08/going-deeper-to-look-for-what-we-have.html' title='Going deeper to look for what we have lost.'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-8928404040107415866</id><published>2009-06-25T09:14:00.008+08:00</published><updated>2009-06-27T04:20:44.948+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='x86_64'/><title type='text'>Compiling Pidgin from source. Updated</title><content type='html'>It seems that a better method suggested by Donald P. Kong in the mydebian mailing list works better than compiling pidgin from scratch. Basically, you can use &lt;a href="http://jaqque.sbih.org/kplug/apt-pinning.html"&gt;Apt-Pinning&lt;/a&gt;. A method to install unstable packages on a stable debian distribution. This is assuming that the package you want to install exist on the unstable version of debian and all dependencies can be resolve.  Otherwise,&lt;br /&gt;&lt;br /&gt;If the package still does not exist under unstable version of debian, you can use the method below.&lt;br /&gt;----------------------------------------------------------------------------------------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;Recently, I had trouble using pidgin. The pidgin I have installed is 2.4.3-4lenny2. though I usually just wait a while and aptitude update and upgrade for the latest version when using sid, however, on Lenny it seems to be a little bit slower, and I don't know if its the x86_64 bit architecture that I'm using or it just takes time to have the latest version of pidgin debian package to be included into Lenny repository. Seems yahoo made some changes to the server, yahoo messenger plugin does not work anymore on Pidgin. As of this date, the best way to go around this problem is to get the latest 2.5.7 version. Unfortunately, there is no .deb package for this yet on lenny. I can't wait. Yahoo messenger is already part of the daily life routine. And I dont want to boot on windows or install a VM for windows.&lt;br /&gt;&lt;br /&gt;So what I did, was I had to compile it from scratch.&lt;br /&gt;Long story short, just for the sake of documentation for others, I have included what I did here.&lt;br /&gt;&lt;br /&gt;&lt;pre style="border: 1px dashed rgb(153, 153, 153); padding: 5px; overflow: auto; font-family: Andale Mono,Lucida Console,Monaco,fixed,monospace; color: rgb(0, 0, 0); background-color: rgb(238, 238, 238); font-size: 12px; line-height: 14px; width: 90%;"&gt;&lt;code&gt;&lt;br /&gt;$ wget -c http://downloads.sourceforge.net/pidgin/pidgin-2.5.7.tar.bz2&lt;br /&gt;$ tar zjvf pidgin-2.5.7.tar.bz2&lt;br /&gt;$ cd pidgin-2.5.7&lt;br /&gt;$ aptitude install intltool libgtk2.0-dev libxml2-dev libgstreamer0.10-dev libdbus-1-dev gnutls-dev libnss3-dev&lt;br /&gt;$ ./configure --disable-screensaver --disable-startup-notification --disable-gtkspell --disable-meanwhile --disable-avahi --disable-dbus --disable-perl --disable-tcl&lt;br /&gt;$ aptitude purge pidgin&lt;br /&gt;$ make&lt;br /&gt;$ make install&lt;br /&gt;$ ldconfig&lt;br /&gt;&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;I choose to disable some features of pidgin since I didn't think I will need it. I just need it to work until lenny comes up with an stable and updated  working package.&lt;br /&gt;&lt;br /&gt;After that, you can run pidgin as usual and connect to yahoo without any problems. The above instructions may not work since my PC is setup differently, if it doesn't, write a comment or join our mailing list. Maybe we can help you out.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here are some references on the &lt;a href="http://theflamingbanker.blogspot.com/2009/06/some-clarification-on-yahoo-issues.html"&gt;yahoo issues&lt;/a&gt; on pidgin. [http://theflamingbanker.blogspot.com/2009/06/some-clarification-on-yahoo-issues.html]&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-8928404040107415866?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/8928404040107415866/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=8928404040107415866' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8928404040107415866'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8928404040107415866'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2009/06/compiling-pidgin-from-source.html' title='Compiling Pidgin from source. Updated'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-5149357787607448873</id><published>2009-06-24T02:15:00.006+08:00</published><updated>2009-06-24T02:45:03.728+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='x86_64'/><title type='text'>Java Plugin</title><content type='html'>Upon getting a new PC with a Intel(R) Pentium(R) Dual  CPU to play around with, I have encountered many problems due to the 64-bit architecture being used. Particularly, many applications still does not have the 64-bit version yet.&lt;br /&gt;&lt;br /&gt;Among the problems is java plugin for firefox or in the case of debian, its iceweasel. Previously, sun did not have the 64 bit version java plugin for firefox. But I googled around and found out that recently, for the version java6 update 12, they have already include the 64 bit version plugin. Among the reference I found was at &lt;a href="http://plugindoc.mozdev.org/linux-amd64.html"&gt;http://plugindoc.mozdev.org/linux-amd64.html&lt;/a&gt; which gives all supported plugins and what not for mozilla.&lt;br /&gt;&lt;br /&gt;1) The easiest way to install sun java on debian is to:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ aptitude install sun-java6-jdk&lt;/span&gt;&lt;br /&gt;This will fortunately, as of this date, lenny installs java6 update 12.&lt;br /&gt;&lt;br /&gt;2) After doing this, you will need to choose your default java to use. Just for compatibility with other applications, if you are using netbeans or what not. To choose the default java to use, type:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ update-alternatives --config java&lt;/span&gt;&lt;br /&gt;then select the sun java you just installed.&lt;br /&gt;&lt;br /&gt;3) Next is to create a symbolic link for the firefox/iceweasel to the java plugin&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ cd /usr/lib/iceweasel/plugins&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;$ ln -s /usr/lib/jvm/java-6-sun-1.6.0.12/jre/lib/amd64/libnpjp2.so&lt;/span&gt;&lt;br /&gt;That should install the java plugin for firefox, for x86_64 bit version, and those using the amd64 kernel.&lt;br /&gt;&lt;br /&gt;4) I later restart firefox, and check to see if the java plugin is installed. At the location bar, i type about:plugins. To see if there is a java plugin support. Looks like things look good.&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_0CeBegzq-F8/SkEigdxaPYI/AAAAAAAABmY/lKkEUZYeeF4/s1600-h/java_plugin.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 198px;" src="http://3.bp.blogspot.com/_0CeBegzq-F8/SkEigdxaPYI/AAAAAAAABmY/lKkEUZYeeF4/s320/java_plugin.png" alt="" id="BLOGGER_PHOTO_ID_5350595773435886978" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5) also tried to upload some pictures into facebook. The upload features requires java plugin. Seems to work great.&lt;br /&gt;&lt;br /&gt;So there you go...java plugin seems to work. Have fun.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-5149357787607448873?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/5149357787607448873/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=5149357787607448873' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5149357787607448873'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5149357787607448873'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2009/06/java-plugin.html' title='Java Plugin'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_0CeBegzq-F8/SkEigdxaPYI/AAAAAAAABmY/lKkEUZYeeF4/s72-c/java_plugin.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-4807052195667357680</id><published>2009-02-09T09:40:00.015+08:00</published><updated>2009-06-25T03:51:18.057+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><title type='text'>Experience installing Debian on Lenovo S10</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_0CeBegzq-F8/SY-KdMu2FZI/AAAAAAAABd4/Tf5HZKqMNwo/s1600-h/00003.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 150px; height: 200px;" src="http://4.bp.blogspot.com/_0CeBegzq-F8/SY-KdMu2FZI/AAAAAAAABd4/Tf5HZKqMNwo/s200/00003.jpg" alt="" id="BLOGGER_PHOTO_ID_5300607520676910482" border="0" /&gt;&lt;/a&gt;You know one of those new lines of UMPC that's being displayed here and there. It seems too small for anybody to use it, and most of the time it looks like a toy rather than a serious piece of machine. Anyway, I got one, and here I am sharing some of my experience using the Lenovo S10.&lt;br /&gt;&lt;br /&gt;The Lenovo S10 has no  optical drive, you have to be creative in installing Debian on it. The factory default comes with Windows XP pre-installed and it has 3 partitions in its 160G HDD. The partition is used for Windows XP, a second partition where all the drivers are kept just incase you need to do a reinstallation, and the third partition is used for auto-recovery feature where Windows XP installation files reside.&lt;br /&gt;&lt;br /&gt;I didn't get rid of windows totally. This is because, I still use Windows XP occasionally. Some of the work I do just runs on Windows and I have no choice but to be dependent on XP. But I can make it dual boot and have the freedom to choose which OS I want to use on the laptop. The first thing you need to do is partitioning the hard disk. For this, I use gparted loaded onto a usb pen drive. I went to &lt;a href="http://gparted.sourceforge.net/"&gt;gparted website&lt;/a&gt; to download the image and also for the &lt;a href="http://gparted.sourceforge.net/liveusb.php"&gt;instructions of creating a Live USB image&lt;/a&gt;. After creating your gparted live usb, you can enter the bios, and boot through the usb pen drive. Then you need to partition the harddisk to your liking and create a partition for Linux. I only took about 20G of harddisk space for Debian. I figured the windows partition is in FAT32, and that i can mount later to use for storage if I need to use it. Make sure you don't delete the Windows XP recovery partition if you want to keep Windows XP recovery feature on your Ideapad.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_0CeBegzq-F8/SY-gA56QsBI/AAAAAAAABeI/URgK8z3mf6U/s1600-h/screenshot.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 200px; height: 117px;" src="http://1.bp.blogspot.com/_0CeBegzq-F8/SY-gA56QsBI/AAAAAAAABeI/URgK8z3mf6U/s200/screenshot.jpg" alt="" id="BLOGGER_PHOTO_ID_5300631223843991570" border="0" /&gt;&lt;/a&gt;After partitioning, you can now download and create an usblive pen drive for your debian installation. I use Debian Lenny. Make sure you get the &lt;a href="http://www.debian.org/devel/debian-installer/"&gt;latest weekly or daily built for lenny debian installer&lt;/a&gt; for this if you want to detect the ethernet network card. I download the i386 netinstall for the usb image. After downloading the image, you need to create the usb live CD. I followed the easiest way to create a live-usb stick, which is just zcat an image into a usb thumb drive.&lt;br /&gt;&lt;br /&gt;&lt;span&gt;&lt;span&gt;pontianak:~$ zcat boot.img.gz &gt;/dev/sdb1  &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This is the simplest way to create a live-usb thumb-drive, but it limits your thumbdrive partition to 250M. so hence the image you'll be using is netinstall. And you have to install the other packages through network install. You can download a larger image if you followed a different method. Someone made an excellent documentation in creating usb live images, you can &lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;a href="http://numpanglewat.wordpress.com/2009/01/23/installing-debian-lenny-from-a-usb-memory-stick-usb-hdd/"&gt;go here&lt;/a&gt; to his site to see the other methods you can use.&lt;br /&gt;&lt;br /&gt;Then after setting the bios to boot from usb, you can boot your debian image and install debian on the partition you've created with gparted.&lt;br /&gt;&lt;br /&gt;After a few hours as debian download all the necessary packages for your system (this can take a while if you are using streamyx, unless you have a really fast T1 connection at the office, you might be better off just having a base install and work from there by downloading only the necessary packages.) I anyhow waited several hours to get all the packages, like gnome, office and etc for a complete system.  After all the waiting, I have debian complete lenny system installed. Everything seems to work, except for the internal mic and wireless network. Luckily, there are some work around. As for now, below are the things that seems to work.&lt;br /&gt;&lt;br /&gt;&lt;table class="inline" border="1"&gt;&lt;tbody&gt;&lt;tr class="&amp;quot;row1&amp;quot;"&gt;&lt;td class="&amp;quot;col0&amp;quot;"&gt;Processor&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Yes&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt; Shows up as 2 CPUs due to HyperThreading. &lt;/td&gt; &lt;/tr&gt; &lt;tr class="&amp;quot;row2&amp;quot;"&gt; &lt;td class="&amp;quot;col0&amp;quot;"&gt; Screen&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Yes&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt; 1024x600 resolution, because the screen is really small, the windows doesn't seem to fit nicely in the screen. It might be better to make the font smaller. Under the gnome preferences--&gt;appearance, I've made mine to size 6.&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="&amp;quot;row3&amp;quot;"&gt; &lt;td class="&amp;quot;col0&amp;quot;"&gt; HDD&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Yes&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="&amp;quot;row4&amp;quot;"&gt; &lt;td class="&amp;quot;col0&amp;quot;"&gt; Graphics&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Somewhat&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt;Looks ok, however, the touch pad mouse seems to be moving really fast. You can adjust this on gnome, but it seems that the vertical movement of the cursor is faster than the horizontol movement.&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="&amp;quot;row5&amp;quot;"&gt; &lt;td class="&amp;quot;col0&amp;quot;"&gt; Sound&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Yes&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt; Alsa seems to work nicely&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="&amp;quot;row6&amp;quot;"&gt; &lt;td class="&amp;quot;col0&amp;quot;"&gt; Ethernet&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Yes&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt; Should work with lenny daily built&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="&amp;quot;row7&amp;quot;"&gt; &lt;td class="&amp;quot;col0&amp;quot;"&gt; Wireless&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Yes&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt; You need to download the latest broadcom driver for this, then you can easily use gnome network manager to get the wireless working. Of course, you can also use iwconfig if you prefer the old fashion way. Thanks to another person who have done it, his instructions was  helpful and can be found &lt;a href="http://jomcode.com/fadhil/?p=59"&gt;here&lt;/a&gt;. And the driver can be downloaded from &lt;a href="http://www.broadcom.com/support/802.11/linux_sta.php"&gt;broadcom website.&lt;/a&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr class="&amp;quot;row8&amp;quot;"&gt; &lt;td class="&amp;quot;col0&amp;quot;"&gt; Bluetooth&lt;/td&gt;&lt;td class="&amp;quot;col1&amp;quot;"&gt;Not Tested&lt;/td&gt;&lt;td class="&amp;quot;col2&amp;quot;"&gt; &lt;span class="&amp;quot;search_hit&amp;quot;"&gt;S10&lt;/span&gt; does not come with Bluetooth built in,at least not the current models being sold. I believe the next coming models would have it by default. You can buy a bluetooth module, and install it manually, of course you need some kind of hand shop skills.    &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;tbody&gt;&lt;tr class="row9"&gt;   &lt;td class="col0"&gt; USB&lt;/td&gt;&lt;td class="col1"&gt;Yes&lt;/td&gt;&lt;td class="col2"&gt; Seems to work nicely.&lt;br /&gt;&lt;/td&gt;  &lt;/tr&gt;  &lt;tr class="row10"&gt;   &lt;td class="col0"&gt; Card Reader&lt;/td&gt;&lt;td class="col1"&gt;Yes&lt;/td&gt;&lt;td class="col2"&gt; Seems to work, automounter detects my SD card and mounts it automatically.&lt;br /&gt;I tested this using the SD card from my digital camera.&lt;br /&gt;&lt;/td&gt;  &lt;/tr&gt;  &lt;tr class="row11"&gt;   &lt;td class="col0"&gt; ExpressCard Slot&lt;/td&gt;&lt;td class="col1"&gt;Not Tested&lt;/td&gt;&lt;td class="col2"&gt;&lt;br /&gt;&lt;/td&gt;  &lt;/tr&gt;  &lt;tr class="row12"&gt;   &lt;td class="col0"&gt; Camera/Webcam&lt;/td&gt;&lt;td class="col1"&gt;Yes&lt;/td&gt;&lt;td class="col2"&gt; Tested this with skype and managed to keep a conversation going for about 30 minutes.&lt;br /&gt;&lt;/td&gt;  &lt;/tr&gt;  &lt;tr class="row13"&gt;   &lt;td class="col0"&gt; Battery &lt;/td&gt;&lt;td class="col1"&gt;Yes&lt;br /&gt;&lt;/td&gt;&lt;td class="col2"&gt;It seems to detect correctly if the power is plugged in or not, and is capable to tell you how much time you have till the battery runs out. I'm not really sure if the calculated time is correct...but it looks like its working.&lt;br /&gt;&lt;/td&gt;  &lt;/tr&gt;  &lt;tr class="row14"&gt;   &lt;td class="col0"&gt; Microph&lt;span class="search_hit"&gt;on&lt;/span&gt;e &lt;/td&gt;&lt;td class="col1"&gt;Somewhat&lt;br /&gt;&lt;/td&gt;&lt;td class="col2"&gt; The internal mic does not appear to work on debian lenny. However, if you need to use the mic to make a skype call, using the mic-in jack seems to work nicely. Its only the internal mic that is not working. So you need to get a headphones with microphone to make skype calls. There is some people saying that recompiling the latest Alsa may help, I haven't tried this yet. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-4807052195667357680?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/4807052195667357680/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=4807052195667357680' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/4807052195667357680'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/4807052195667357680'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2009/02/experience-installing-debian-on-lenovo.html' title='Experience installing Debian on Lenovo S10'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_0CeBegzq-F8/SY-KdMu2FZI/AAAAAAAABd4/Tf5HZKqMNwo/s72-c/00003.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-8463944736583171670</id><published>2008-08-06T01:58:00.009+08:00</published><updated>2008-08-06T02:36:19.912+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Time Drift</title><content type='html'>Recently, I noticed my linux box in the lab is slowly drifting in time. After resetting the time for 2 times, I think I got to do something about it. So, wasting no time, I installed ntp. It's no big deal, and I'm sure a lot of the old-timers in linux are very familiar with this, so this is something for newbies and people wanting to explore the use of linux.&lt;br /&gt;&lt;br /&gt;To install, on debian, just use:&lt;br /&gt;&lt;br /&gt;$ aptitude install ntp&lt;br /&gt;&lt;br /&gt;Then after that, you can start your ntp daemon. To do this, just type, as root:&lt;br /&gt;&lt;br /&gt;$ /etc/init.d/ntp start&lt;br /&gt;&lt;br /&gt;That should give you the utmost correct time.&lt;br /&gt;&lt;br /&gt;Suppose you would like to edit your configuration to use the local time server or a time server in your department. Well, all you need to do is to edit /etc/ntp.conf. I've added these lines to add the server in my department.&lt;br /&gt;&lt;br /&gt;server ntp1.cs.kent.edu iburst dynamic&lt;br /&gt;server ntp2.cs.kent.edu iburst dynamic&lt;br /&gt;server time.kent.edu  iburst dynamic&lt;br /&gt;server 0.debian.pool.ntp.org iburst dynamic&lt;br /&gt;&lt;br /&gt;and rerun ntp daemon with:&lt;br /&gt;&lt;br /&gt;$ /etc/init.d/ntp restart&lt;br /&gt;&lt;br /&gt;Now, some of you might be a little curious on the options given to the servers. Well here is an explanation taken from the man page.&lt;br /&gt;&lt;br /&gt;&lt;table cellpadding="3"&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td colspan="2"&gt;&lt;b&gt;iburst&lt;/b&gt; &lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;br /&gt;&lt;/td&gt;&lt;td&gt; When the server is unreachable and at each poll interval, send a burst of eight packets instead of the usual one. As long as the server is unreachable, the spacing between packets is about 16s to allow a modem call to complete. Once the server is reachable, the spacing between packets is about 2s. This is designed to speed the initial synchronization acquisition with the &lt;!-- .Ic server --&gt; &lt;b&gt; server&lt;/b&gt; command and s addresses and when &lt;!-- .Xr ntpd 8 --&gt; &lt;a href="http://www.gsp.com/cgi-bin/man.cgi?section=8&amp;amp;topic=ntpd"&gt;ntpd&lt;/a&gt;(8) is started with the &lt;!-- .Fl q --&gt; -&lt;b&gt;q&lt;/b&gt;  option. &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;Now, I can't find a good explanation for dynamic option on the web. But I'm sure since the original .conf  file has it, so I'm just going to keep the dynamic option there.&lt;br /&gt;&lt;br /&gt;There are people who thinks that we might as well use a ntp-client like ntpdate to synchronize time, however, ntpdate needs to be run manually or by cron. It is however more resource friendly, and only runs when you want it to run, unlike ntp server which would be running as a server all the time. However, there is an issue about time drift. And the problem with ntpdate, it does not have the algorithm to handle time drift.  Hence, since I'm a little obsessed about time to the milliseconds, time drifts is an important thing for me, and ntp has the algorithm to calculate the time drift and readjusting time as necessary. :) Hope that helps, comments by experts are highly appreciated to get a better understanding of things, questions are also welcomed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-8463944736583171670?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/8463944736583171670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=8463944736583171670' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8463944736583171670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8463944736583171670'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2008/08/time-drift.html' title='Time Drift'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-441064369516435018</id><published>2008-08-04T09:05:00.005+08:00</published><updated>2008-08-04T10:02:32.304+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='terminal'/><category scheme='http://www.blogger.com/atom/ns#' term='console'/><title type='text'>How to delete a file starting with a character "-"</title><content type='html'>Recently, I tried to delete a file which has a starting "-". The filename is called --ahlong.avi. Unfortunately, running&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ rm &lt;span style="color: rgb(255, 0, 0);"&gt;--&lt;/span&gt; --ahlong.avi&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;gave me an error. So how do you delete a file that has a "-" starting character. Well i found out there are a few ways to do this....&lt;br /&gt;&lt;br /&gt;&lt;code&gt;$ rm &lt;span style="color: rgb(255, 0, 0);"&gt;./&lt;/span&gt;--ahlong.avi&lt;br /&gt;or&lt;br /&gt;$ rm &lt;span style="color: rgb(255, 0, 0);"&gt;--&lt;/span&gt; --ahlong.avi&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Both seems to work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-441064369516435018?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/441064369516435018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=441064369516435018' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/441064369516435018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/441064369516435018'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2008/08/how-to-delete-file-starting-with.html' title='How to delete a file starting with a character &quot;-&quot;'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-5686704229718469524</id><published>2008-02-22T18:15:00.001+08:00</published><updated>2008-02-22T18:17:39.992+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='debian'/><category scheme='http://www.blogger.com/atom/ns#' term='youtube'/><title type='text'>Debian@Youtube</title><content type='html'>&lt;object width="425" height="355"&gt;&lt;param name="movie" value="http://www.youtube.com/v/d39izaupvEg&amp;rel=1"&gt;&lt;/param&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/d39izaupvEg&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;Debian startup script&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-5686704229718469524?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/5686704229718469524/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=5686704229718469524' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5686704229718469524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5686704229718469524'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2008/02/debianyoutube.html' title='Debian@Youtube'/><author><name>najmi</name><uri>http://www.blogger.com/profile/11282323362186270236</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://i7.photobucket.com/albums/y297/mnajem/penguin.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-804162510964232332</id><published>2008-02-13T05:00:00.003+08:00</published><updated>2008-12-09T09:14:08.902+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='console'/><title type='text'>Pine and IMAP over SSL</title><content type='html'>Anybody used pine before for reading emails. Some of you may not, but if you started using email pre-2000, you probably have used pine before.&lt;br /&gt;&lt;br /&gt;This entry may be a little trivial for those of you who are familiar with it,&lt;br /&gt;but, the community website is also for newbies. I know there are also other&lt;br /&gt;alternatives, but talking about one alternative is an option for a newbie to&lt;br /&gt;decide whether he is a pine, elm, mutt, thunderbird or evolution user.&lt;br /&gt;&lt;br /&gt;What is pine?&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Pine&lt;/b&gt; is a &lt;a href="http://en.wikipedia.org/wiki/Freeware" title="Freeware"&gt;freeware&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Text-based" title="Text-based"&gt;text-based&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/E-mail_client" title="E-mail client"&gt;e-mail client&lt;/a&gt; developed at the &lt;a href="http://en.wikipedia.org/wiki/University_of_Washington" title="University of Washington"&gt;University of Washington&lt;/a&gt;. It is no longer under development, and has been replaced by the new &lt;a href="http://en.wikipedia.org/wiki/Alpine_%28e-mail_client%29" title="Alpine (e-mail client)"&gt;Alpine&lt;/a&gt; client, which is licensed as &lt;a href="http://en.wikipedia.org/wiki/Free_software" title="Free software"&gt;free software&lt;/a&gt; rather than freeware.&lt;br /&gt;&lt;br /&gt;Many people believe that Pine stood for "Pine is not &lt;a href="http://en.wikipedia.org/wiki/Elm_%28e-mail_client%29" title="Elm (e-mail client)"&gt;Elm&lt;/a&gt;", in the manner of "&lt;a href="http://en.wikipedia.org/wiki/GNU" title="GNU"&gt;GNU&lt;/a&gt; Is Not Unix", ie. a &lt;a href="http://en.wikipedia.org/wiki/Recursive_acronym" title="Recursive acronym"&gt;recursive acronym&lt;/a&gt;. However, one of its original authors, &lt;a href="http://en.wikipedia.org/w/index.php?title=Laurence_Lundblade&amp;amp;action=edit" class="new" title="Laurence Lundblade"&gt;Laurence Lundblade&lt;/a&gt;, insists this was never the case and that it started off simply as a word and not an acronym, and that his first choice of a &lt;a href="http://en.wikipedia.org/wiki/Backronym" title="Backronym"&gt;backronym&lt;/a&gt; for pine would be "Pine Is Nearly Elm". Over time it was changed by the university to mean &lt;i&gt;Program for Internet News and E-mail&lt;/i&gt;.&lt;sup id="_ref-0" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Pine_%28e-mail_client%29#_note-0" title=""&gt;[1]&lt;/a&gt;&lt;/sup&gt;&lt;sup id="_ref-0" class="reference"&gt;&lt;br /&gt;&lt;/sup&gt;&lt;p&gt;In 2006, the University of Washington announced that it stopped development of Pine with Pine 4.64, although Pine continues to be supported.&lt;sup id="_ref-5" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Pine_%28e-mail_client%29#_note-5" title=""&gt;[6]&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;In its place is a new family of email tools based upon Pine, called &lt;a href="http://en.wikipedia.org/wiki/Alpine_%28e-mail_client%29" title="Alpine (e-mail client)"&gt;Alpine&lt;/a&gt; and licensed under the &lt;a href="http://en.wikipedia.org/wiki/Apache_License" title="Apache License"&gt;Apache License&lt;/a&gt;, version 2. &lt;a href="http://en.wikipedia.org/wiki/November_29" title="November 29"&gt;November 29&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/2006" title="2006"&gt;2006&lt;/a&gt; saw the first public &lt;a href="http://en.wikipedia.org/wiki/Beta_test#Alpha" title="Beta test"&gt;alpha release&lt;/a&gt;,&lt;sup id="_ref-6" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Pine_%28e-mail_client%29#_note-6" title=""&gt;[7]&lt;/a&gt;&lt;/sup&gt;&lt;sup id="_ref-7" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Pine_%28e-mail_client%29#_note-7" title=""&gt;[8]&lt;/a&gt;&lt;/sup&gt; which forms a new approach since the alpha test of Pine was always non-public.&lt;/p&gt; &lt;p&gt;Alpine 1.0 was publicly released on December 20, 2007.&lt;/p&gt;***All this is taken from wikipedia.&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Why I use Pine? No particular reason. I just like the text based email. Its a matter of preference really. Some consider it less l33t, since arguably, mutt is more flexible. However, I found it good enough for me, its about the most l33t I want to get when reading emails. Plus, arguably, its faster than web based email. Although there is a web version of pine called webpine. Never used it so can't comment much.&lt;/p&gt;Particularly, pine is flexible enough it most environment. I will be concentrating on using Pine over SSL with IMAP. On my debiana, a debian unstable distro, I installed pine/alpine, using&lt;br /&gt;&lt;br /&gt;debiana:~# aptitude install alpine&lt;br /&gt;&lt;br /&gt;This should install alpine. You can choose to run alpine by simply typing...&lt;br /&gt;&lt;br /&gt;debiana:~# alpine&lt;br /&gt;&lt;br /&gt;My biggest problem was to get pine fetch my mail from my IMAP server, and to do that securely without people sniffing in between.&lt;br /&gt;&lt;br /&gt;When pine runs, you'll see this....&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_0CeBegzq-F8/R7nMcxqcZfI/AAAAAAAAAss/eKd-OCM_U6Y/s1600-h/pic1.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_0CeBegzq-F8/R7nMcxqcZfI/AAAAAAAAAss/eKd-OCM_U6Y/s200/pic1.jpg" alt="" id="BLOGGER_PHOTO_ID_5168386842124117490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Press "S" to enter setup to start configure your pine.&lt;br /&gt;Enter "C" to enter the basic setup of your configuration menu.&lt;br /&gt;Which allow you to configure it to connect to your IMAP server.&lt;br /&gt;Below are the configuration options I use, for my client:&lt;br /&gt;&lt;p&gt;             &lt;br /&gt;&lt;span style="font-style: italic;"&gt;SMTP Server (for sending)= smtp.yourServer.com/user=your_username/tls/novalidate-cert&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Since I do not have a validated cert from the SMTP server, i use this configuration, i also put the username name there to make it auto key in, for the particular user i want to send email. The novalidate-cert is not necessary, but its hack to avoid some hassles of pine keep asking you whether you allow an unvalidated cert be used.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-style: italic;"&gt;Inbox Path=&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;{imap.yourServer.com/user=your_username/tls/novalidate-cert}INBOX &lt;/span&gt;          Default Fcc (File carbon copy)= {imap.yourServer.com/user=your_username/tls/novalidate-cert}Sent&lt;br /&gt;&lt;/p&gt;Similarly, I do the same same for reading my INBOX in IMAP and the SENT directory.&lt;br /&gt;&lt;p&gt;Exit and now all you need is to add your mailboxes directories in IMAP.&lt;/p&gt;&lt;p&gt;To do this, enter Setup again and now choose "L" for the collectionLists setup. Which is where you may define groups of folders to help you better organize your mail. In my case, I already have my email boxes organized on the campus server. To do that, I choose "A" to add a new entry, and entered the following options.&lt;/p&gt;&lt;p&gt;Nickname : Mail on imap.yourServer.com/tls/novalidate-cert&lt;br /&gt;Server       : imap.yourServer.com/tls/novalidate-cert&lt;br /&gt;Path          : Left blank&lt;br /&gt;View          : Left Blank&lt;/p&gt;When you change all that, you can view all your email boxes, INBOX,SENT and etc in the directory list. Have fun exploring using pine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-804162510964232332?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/804162510964232332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=804162510964232332' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/804162510964232332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/804162510964232332'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2008/02/pine-and-imap-over-ssl.html' title='Pine and IMAP over SSL'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_0CeBegzq-F8/R7nMcxqcZfI/AAAAAAAAAss/eKd-OCM_U6Y/s72-c/pic1.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-3072084930486603315</id><published>2008-01-30T11:20:00.000+08:00</published><updated>2008-12-09T09:14:09.262+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>Skype on Debian?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_0CeBegzq-F8/R5_xkEg-_cI/AAAAAAAAAsc/_XweFTfqw0M/s1600-h/skype2.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://4.bp.blogspot.com/_0CeBegzq-F8/R5_xkEg-_cI/AAAAAAAAAsc/_XweFTfqw0M/s320/skype2.jpg" alt="" id="BLOGGER_PHOTO_ID_5161109299979550146" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_0CeBegzq-F8/R5_xNkg-_bI/AAAAAAAAAsU/0auFrnwSIk0/s1600-h/skype3.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://2.bp.blogspot.com/_0CeBegzq-F8/R5_xNkg-_bI/AAAAAAAAAsU/0auFrnwSIk0/s320/skype3.jpg" alt="" id="BLOGGER_PHOTO_ID_5161108913432493490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I was working on debian when someone wanted to chat with me on skype.&lt;br /&gt;I quickly run the command aptitude search skype. Nothing came out.&lt;br /&gt;So I went to http://www.skype.com and click the download page.&lt;br /&gt;I found out that they have skype for various different distro for linux.&lt;br /&gt;They also have tarballs for static and dynamic libraries.&lt;br /&gt;&lt;br /&gt;I was happy to see they have a version for debian etch. But unfortunately,&lt;br /&gt;I was using debian unstable. I tried my chances anyways, and downloaded&lt;br /&gt;the .deb for etch. After downloading, I tried to install, but apparently, I didn't&lt;br /&gt;have the qt-libraries to install it. That was easy, all I needed to do is aptitude install it.&lt;br /&gt;&lt;br /&gt;And so I did....a quick&lt;br /&gt;&lt;br /&gt;debiana&gt; aptitude install libqt4-core  libqt4-gui&lt;br /&gt;&lt;br /&gt;Then I can run this command...&lt;br /&gt;&lt;br /&gt;debiana&gt; dpkg -i skype-debian_1.4.0.118-1_i386.deb&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Everything installed nicely, and I can run skype.&lt;br /&gt;Running skype is as easy as&lt;br /&gt;&lt;br /&gt;debiana&gt; skype &amp;amp;&lt;br /&gt;&lt;br /&gt;Skype run nicely, and I logged into skype. All the users were there displayed nicely.&lt;br /&gt;I configured my sound device, and tried to play around alsamixer to get the microphone volume louder.&lt;br /&gt;&lt;br /&gt;Unfortunately, the linux version has no support for video yet.&lt;br /&gt;So I might still have to revert to windows when I want to use skype.&lt;br /&gt;But the voice communication is excellent.....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-3072084930486603315?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/3072084930486603315/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=3072084930486603315' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3072084930486603315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3072084930486603315'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2008/01/skype-on-debian.html' title='Skype on Debian?'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_0CeBegzq-F8/R5_xkEg-_cI/AAAAAAAAAsc/_XweFTfqw0M/s72-c/skype2.jpg' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-8109359148316295945</id><published>2007-08-25T00:44:00.000+08:00</published><updated>2007-08-26T03:36:04.322+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='networking'/><title type='text'>3G, Sony Ericsson and Debian</title><content type='html'>Recently, with a new phone purchase and current offers for 3G on maxis, I was trying to get Maxis 3G to work on my Linux box. I have been busy and my search for a solution was always interrupted, but the mydebian mailing list and the community have been supportive. Particularly to Donald and Irwan who have given me obvious clues, and Maxis website too helped (if only I have looked into it first).&lt;br /&gt;&lt;br /&gt;So now I managed to browse the net using 3G, in fact, I'm using it right now, on debian and dialing to Maxis 3G. I decided to update this blog entry and  give some pointers to whoever wants to use 3G on their Linux boxes.&lt;br /&gt;&lt;br /&gt;I could have found a solution to it much sooner, but went with the hard way. I did a serial port scanning on windows to figure out what was going. I sure did learn a lot, but for the most things, the clues could have been easier to find if I went to Maxis website instead. They too gave some clues of how to connect on windows. With almost the same configuration based on Maxis instructions, it should work as well. Well too late to be crying over spilled milk, all that time wasted...hmmmm&lt;br /&gt;&lt;br /&gt;Anyhow, for those of you who wants to use 3G Celcom with Debian, please take a look below for an excellent detail explanation. You can also get some hints if you are doing something a bit differently.&lt;a href="http://blog.irwan.name/?p=220"&gt;&lt;br /&gt;&lt;/a&gt;&lt;ol&gt;&lt;li&gt;&lt;a href="http://blog.irwan.name/?p=220"&gt;http://blog.irwan.name/?p=220&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://forum.kuchingosc.org/viewtopic.php?f=22&amp;t=245"&gt;http://forum.kuchingosc.org/viewtopic.php?f=22&amp;amp;t=245&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;And for those of you using 3G Maxis with Debian, it's not so much different. All you have to do is:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;aptitude install wvdial.&lt;/li&gt;&lt;li&gt;Run the wvdialconf /etc/wvdial.conf and &lt;/li&gt;&lt;li&gt;edit the file /etc/wvdial.conf&lt;/li&gt;&lt;/ul&gt;Your file should look like this....&lt;br /&gt;&lt;br /&gt;[Dialer Defaults]&lt;br /&gt;Init1 = ATZ&lt;br /&gt;Init2 = ATQ0 V1 E1 S0=0 &amp;C1 &amp;amp;D2 +FCLASS=0&lt;br /&gt;Modem Type = USB Modem&lt;br /&gt;Baud = 460800&lt;br /&gt;New PPPD = yes&lt;br /&gt;Modem = /dev/ttyACM0&lt;br /&gt;ISDN = 0&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Phone = *99***5#&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Password = maxis&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Username = wap&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Yeah, the main changes was just the number to be dialled, username and password.&lt;br /&gt;&lt;br /&gt;After that, running wvdial will get you connected. You can browse now..&lt;br /&gt;&lt;br /&gt;I'm not sure about other telco, but if you are in doubt, and can't figure out was is happening, you can always&lt;br /&gt;use serial port monitor to figure out what AT commands are being sent to your modem, on windows and try to do the same on Linux. As for the username and password, you will just have to ask your telco provider, or check out their website.&lt;br /&gt;&lt;br /&gt;Happy Hacking guys......on 3G&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-8109359148316295945?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/8109359148316295945/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=8109359148316295945' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8109359148316295945'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8109359148316295945'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/08/3g-sony-ericsson-and-debian.html' title='3G, Sony Ericsson and Debian'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-6728976913689191832</id><published>2007-07-25T16:38:00.000+08:00</published><updated>2007-07-25T16:45:17.306+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linus'/><title type='text'>Linus: I’ve never used Debian</title><content type='html'>What say you MyDebian Group?&lt;br /&gt;&lt;span class="fullpost"&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/Linus_Torvalds"&gt;Linus Torvalds&lt;/a&gt; was interviewed by&lt;/span&gt; &lt;a href="http://www.oneopensource.it/"&gt;http://www.oneopensource.it/&lt;/a&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;One of the questions:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;A curiosity: which is your favourite distribution, and which one do you consider more secure?&lt;/span&gt; &lt;/p&gt;&lt;p style="font-style: italic;"&gt;I don’t really tend to care much, I’ve changed distributions over the years, and to me the most important thing tends to be that they are easy to install and upgrade, and allow me to do the only part I really care about - the kernel.&lt;/p&gt; &lt;p style="font-style: italic;"&gt;So the only major distribution I’ve never used has actually been Debian, exactly because that has traditionally been harder to install. Which sounds kind of strange, since Debian is also considered to be the “hard-core technical” distribution, but that’s literally exactly what I personally do &lt;strong&gt;not&lt;/strong&gt; want in a distro. I’ll take the nice ones with simple installers etc, because to me, that’s the whole and only point of using a distribution in the first place.&lt;/p&gt; &lt;p style="font-style: italic;"&gt;So I’ve used SuSE, Red Hat, Ubuntu, YDL (I ran my main setup on PowerPC-based machines for a while, and YDL - Yellow Dog Linux - ended up the easiest choice). Right now, most of my machines seem to have Fedora 7 on then, but that’s only a statement of fact, not meant to be that I think it’s necessarily “better” than the other distros.&lt;/p&gt;You can read the rest here &lt;a href="http://www.oneopensource.it/interview-linus-torvalds/"&gt;http://www.oneopensource.it/interview-linus-torvalds/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;-ashterix-&lt;br /&gt;&lt;a href="http://ashterix.blogspot.com/"&gt;http://ashterix.blogspot.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-6728976913689191832?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/6728976913689191832/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=6728976913689191832' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6728976913689191832'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6728976913689191832'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/07/linus-ive-never-used-debian.html' title='Linus: I’ve never used Debian'/><author><name>ashterix</name><uri>http://www.blogger.com/profile/06055270956702791009</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://bp0.blogger.com/__nw1N3pkP-c/R5hG_H92WbI/AAAAAAAAAv0/JPCuMxNv5KY/S220/190120084087.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-1632778106570218033</id><published>2007-07-11T11:20:00.000+08:00</published><updated>2007-07-11T11:23:03.054+08:00</updated><title type='text'>Debian Testing (Lenny) Got 2.6.21 Kernel</title><content type='html'>It seems Debian Testing aka Debian Lenny just got 2.6.21 series kernel. I’m a happy man, yay!&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;Debian Testing (Lenny) Got 2.6.21 Kernel&lt;/span&gt;&lt;br /&gt;&lt;a href="http://blog.irwan.name/?p=169"&gt;http://blog.irwan.name/?p=169&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-1632778106570218033?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/1632778106570218033/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=1632778106570218033' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/1632778106570218033'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/1632778106570218033'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/07/debian-testing-lenny-got-2621-kernel.html' title='Debian Testing (Lenny) Got 2.6.21 Kernel'/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-3569958935215479587</id><published>2007-06-20T16:06:00.000+08:00</published><updated>2007-06-21T15:40:52.057+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='kernel programming'/><title type='text'>Signals and Signal Handling</title><content type='html'>The embedded Linux workshop was a good introduction of getting into programming in the unix environment. I really got a chance to know the kernel better and how linux works. To talk about all of it in a single post would be superfluous and too lengthy, so I will share with you some of the parts that I've learned in a few post whenever the time is right and I suddenly have a caring and sharing mood.&lt;br /&gt;&lt;br /&gt;Lets talk about Signals and Signals Handling. Some of the things here can be obtained by looking at man pages for the keyword signal.&lt;br /&gt;Signals as we usually know it, is to kill -9, or kill HUP. We also know that a process can be interrupted, killed or even  stopped. But thats what most system admins use, there are alot of things about signals that we don't know about.  Particularly, signals are used to control the state of a process. And so, understanding signals will help us build applications and help us control its states and handle certain states of the processes.&lt;br /&gt;&lt;br /&gt;As for now, there are two categories of signals, Standard signals, that we all use, are dependent on most processors, and are numbered from 1 to 31. These signals are called standard signals because its an implementation of the POSIX 1.1990 and POSIX 1. 2001 standard signals.&lt;br /&gt;&lt;br /&gt;As real-time programming and real time processors becomes rampant, the need to handle real-time applications exist, and hence, linux also support real-time signals which is numbered from 32 to 63. If your application requires real-time handling, these are the signals that you will probably be playing with.&lt;br /&gt;&lt;br /&gt;Of course all these signals will cause the program, or process to be in a different state. Is it important to know, yes, if you are writing an application and want to handle certain signals when the kernel sends the signal to your application or program.&lt;br /&gt;&lt;br /&gt;For example, what if you would like to ignore the interrupt signal? You can do that with signal handling by catching the interrupt signal. However, you cannot just catch any signal that is being thrown to you, basically, you cannot catch the kill signal which is the number 9. And I also think you cannot catch the stop signal....(not sure on this, i was sleepy).&lt;br /&gt;&lt;br /&gt;here is an example program that do just that, run a program on infinite loop, and disallow any interrupt from keyboard, for example ctrl-c.&lt;br /&gt;&lt;blockquote style="color: rgb(51, 204, 0); background-color: rgb(0, 0, 0);"&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;#include  ‹unistd.h›    /* standard unix functions, like getpid()&lt;br /&gt;#include  ‹sys/types.h›    /* various type definitions, like pid_t         */&lt;br /&gt;#include  ‹signal.h›       /* signal name macros, and the kill() prototype */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void sighandy(int i)&lt;br /&gt;{&lt;br /&gt;    printf("Don't do that, I will ignore it: %d\n", i);&lt;br /&gt;    //  signal(SIGINT, (void *) sighandy);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;    signal(SIGINT, (void *) sighandy);&lt;br /&gt;    for(;;)&lt;br /&gt;        pause();&lt;br /&gt;}&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;Write the program and save the program as test1.c in your favorite editor like emacs. Then, you can compile it using,&lt;br /&gt;&lt;br /&gt;$ gcc -o test1 test1.c&lt;br /&gt;&lt;br /&gt;To run the program, use&lt;br /&gt;&lt;br /&gt;$ ./test1&lt;br /&gt;&lt;br /&gt;try pressing Ctrl-c and see what happens, ideally, you should be able to catch the interrupt signal sent to the process currently running.&lt;br /&gt;&lt;br /&gt;Hope that helps you understanding a bit. Now you can create an application that can catch signals. Stealing Niibe's favorite phrase, Happy Hacking guys.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-3569958935215479587?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/3569958935215479587/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=3569958935215479587' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3569958935215479587'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3569958935215479587'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/06/signals-and-signal-handling.html' title='Signals and Signal Handling'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-6386434300090232358</id><published>2007-06-11T20:47:00.000+08:00</published><updated>2007-06-11T20:49:26.173+08:00</updated><title type='text'></title><content type='html'>&lt;span style="font-weight: bold; font-family: courier new;font-size:180%;" &gt;fbgrab - Now, You Can Take Screenshot Anywhere&lt;/span&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;&lt;a href="http://blog.irwan.name/?p=128"&gt;&lt;span style="font-family: courier new;"&gt;http://blog.irwan.name/?p=128&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class="on down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-6386434300090232358?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/6386434300090232358/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=6386434300090232358' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6386434300090232358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6386434300090232358'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/06/fbgrab-now-you-can-take-screenshot.html' title=''/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-5195060524201177315</id><published>2007-06-03T23:46:00.001+08:00</published><updated>2008-12-09T09:14:09.618+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SOCIAL PENGUIN'/><title type='text'>Debian to conquer bukit tabur?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_0CeBegzq-F8/RmLjSvxjtKI/AAAAAAAAAXw/5HYMFLmhGyg/s1600-h/IMG_0149.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://2.bp.blogspot.com/_0CeBegzq-F8/RmLjSvxjtKI/AAAAAAAAAXw/5HYMFLmhGyg/s320/IMG_0149.JPG" alt="" id="BLOGGER_PHOTO_ID_5071866041574077602" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;About 2 weeks ago, i went up and hike Bukit Tabur with a friend of mine. The view on top was amazing, and you can see KL and the Klang Gate Dam from the top of Bukit Tabur. After a 2 1/2 hour hike, I took a picture on top of the peak. I had nothing to show off except for my debian t-shirt. Anyways, I thought it would be a good idea if some of us did some non-geek activity for a change....&lt;br /&gt;What say you, anybody want to claim that MyDebian conquers Bukit Tabur? It will be just about 4 hours all together....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-5195060524201177315?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/5195060524201177315/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=5195060524201177315' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5195060524201177315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5195060524201177315'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/06/debian-to-conquer-bukit-tabur.html' title='Debian to conquer bukit tabur?'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_0CeBegzq-F8/RmLjSvxjtKI/AAAAAAAAAXw/5HYMFLmhGyg/s72-c/IMG_0149.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-7639777012926301897</id><published>2007-05-30T13:13:00.000+08:00</published><updated>2007-05-30T14:10:51.065+08:00</updated><title type='text'>3D-Desktop: 3D for the Impatient</title><content type='html'>&lt;span style="font-family: courier new;font-size:130%;" &gt;&lt;span style="font-weight: bold;"&gt;3D-Desktop: 3D for the Impatient&lt;/span&gt;&lt;br /&gt;&lt;a href="http://blog.irwan.name/?p=107"&gt;http://blog.irwan.name/?p=107&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-7639777012926301897?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/7639777012926301897/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=7639777012926301897' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/7639777012926301897'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/7639777012926301897'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/3d-desktop-3d-for-impatient.html' title='3D-Desktop: 3D for the Impatient'/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-6280371894106719972</id><published>2007-05-29T15:56:00.000+08:00</published><updated>2007-05-29T15:58:43.979+08:00</updated><title type='text'>Debian Way or The Hard Way: Installing Google Earth</title><content type='html'>&lt;span style="font-size:130%;"&gt;&lt;span style="font-weight: bold; font-family: courier new;"&gt;Debian Way or The Hard Way: Installing Google Earth&lt;/span&gt;&lt;br /&gt;&lt;a style="font-family: courier new;" href="http://blog.irwan.name/?p=103"&gt;http://blog.irwan.name/?p=103&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-6280371894106719972?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/6280371894106719972/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=6280371894106719972' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6280371894106719972'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6280371894106719972'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/debian-way-or-hard-way-installing.html' title='Debian Way or The Hard Way: Installing Google Earth'/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-9199159472567529835</id><published>2007-05-28T14:46:00.000+08:00</published><updated>2007-05-28T14:48:40.358+08:00</updated><title type='text'>Debian-Administration.org Is Now IPv6-Enabled</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Debian-Administration.org Is Now IPv6-Enabled&lt;/span&gt;&lt;br /&gt;&lt;a href="http://blog.irwan.name/?p=101"&gt;http://blog.irwan.name/?p=101&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-9199159472567529835?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/9199159472567529835/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=9199159472567529835' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/9199159472567529835'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/9199159472567529835'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/debian-administrationorg-is-now-ipv6.html' title='Debian-Administration.org Is Now IPv6-Enabled'/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-3701285134733330163</id><published>2007-05-27T01:35:00.001+08:00</published><updated>2007-05-27T01:38:23.395+08:00</updated><title type='text'>Simple Steps To Get MSIE in Debian AMD64</title><content type='html'>[The original version of this article is located at &lt;span style="font-size:130%;"&gt;&lt;a style="font-weight: bold; color: rgb(204, 0, 0);" href="http://blog.irwan.name/?p=98"&gt;http://blog.irwan.name/?p=98&lt;/a&gt;&lt;/span&gt;]&lt;br /&gt;&lt;br /&gt;First of all, I know most of us are already familiar with well-known  &lt;a href="http://www.tatanka.com.br/ies4linux/page/Main_Page"&gt;IEs4Linux&lt;/a&gt;. This article is mainly dedicated for those who are using Debian Lenny (Debian Testing) on &lt;a href="http://www.debian.org/ports/amd64/"&gt;AMD64&lt;/a&gt; architecture due to probable complexity to get &lt;a href="http://www.winehq.org/"&gt;Wine&lt;/a&gt; up and running.&lt;br /&gt;&lt;br /&gt;To get &lt;a href="http://en.wikipedia.org/wiki/Internet_Explorer"&gt;Microsoft Internet Explorer&lt;/a&gt; (MSIE), I'm still using IEs4Linux script :)&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;0. You might think Wine is already in the repository,&lt;/strong&gt;&lt;br /&gt;&lt;blockquote&gt;meister:~# apt-get install wine&lt;br /&gt;Reading package lists... Done&lt;br /&gt;Building dependency tree... Done&lt;br /&gt;Package wine is not available, but is referred to by another package.&lt;br /&gt;This may mean that the package is missing, has been obsoleted, or&lt;br /&gt;is only available from another source&lt;br /&gt;E: Package wine has no installation candidate&lt;/blockquote&gt;&lt;br /&gt;Hey, there is an error. What the hell happened to Wine package? Until today, &lt;a href="http://packages.debian.org/wine"&gt;Wine package&lt;/a&gt; is only available on Debian Sid (Debian Unstable) for AMD64 architecture.&lt;br /&gt;&lt;br /&gt;Thanks to &lt;a href="http://wiki.winehq.org/WineOn64bit"&gt;Wine Wiki&lt;/a&gt;, which provides a tutorial on how to build 32-bit Wine on a 64-bit (x86-64) system.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;1. So, get these pre-requisites packages; ia32-libs, libc6-dev-i386, lib32z1-dev&lt;/strong&gt;&lt;br /&gt;&lt;blockquote&gt;apt-get install ia32-libs libc6-dev-i386 lib32z1-dev&lt;/blockquote&gt;&lt;br /&gt;&lt;strong&gt;2.  Download &lt;a href="http://www.winehq.org/?announce=latest"&gt;latest&lt;/a&gt; Wine source code.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;3. Time to get dirty. We are going to compile and install Wine&lt;/strong&gt;&lt;br /&gt;&lt;blockquote&gt;irwan@meister:/tmp$ tar xjvf wine-0.9.37.tar.bz2&lt;br /&gt;irwan@meister:/tmp$ cd wine-0.9.37/tools/&lt;br /&gt;irwan@meister:/tmp/wine-0.9.37/tools$ ./wineinstall&lt;/blockquote&gt;&lt;br /&gt;It will do the compilation and installation automatically.&lt;br /&gt;You will be asking to give the root password.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;4. Time to get MSIE!&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Download the &lt;a href="http://www.tatanka.com.br/ies4linux/page/Installation"&gt;IEs4Linux script&lt;/a&gt;&lt;br /&gt;&lt;blockquote&gt;irwan@meister:~$ tar xzvf ies4linux-latest.tar.gz&lt;br /&gt;irwan@meister:~$ cd ies4linux-2.0.5/&lt;br /&gt;irwan@meister:~/ies4linux-2.0.5$ ./ies4linux&lt;/blockquote&gt;&lt;br /&gt;Sit back and relax. The installation will take a while.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;5. Ehemmm, time to run MSIE&lt;/strong&gt;&lt;br /&gt;irwan@meister:~$ cd bin&lt;br /&gt;irwan@meister:~/bin$ ./ie6&lt;br /&gt;&lt;br /&gt;&lt;a href="http://blog.irwan.name/wp-content/uploads/2007/05/debian64-msie.png" title="debian64-msie.png"&gt;&lt;img src="http://blog.irwan.name/wp-content/uploads/2007/05/debian64-msie.thumbnail.png" alt="debian64-msie.png" /&gt;&lt;/a&gt; &lt;a href="http://blog.irwan.name/wp-content/uploads/2007/05/debian64-msie2.png" title="debian64-msie2.png"&gt;&lt;img src="http://blog.irwan.name/wp-content/uploads/2007/05/debian64-msie2.thumbnail.png" alt="debian64-msie2.png" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-3701285134733330163?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/3701285134733330163/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=3701285134733330163' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3701285134733330163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3701285134733330163'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/simple-steps-to-get-msie-in-debian.html' title='Simple Steps To Get MSIE in Debian AMD64'/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-5058765526537568904</id><published>2007-05-26T03:01:00.000+08:00</published><updated>2007-05-27T01:34:03.556+08:00</updated><title type='text'>Simple Steps To Get IPv6 in Debian</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:verdana;"&gt;[The original version or this article is located at &lt;/span&gt;&lt;/span&gt;&lt;span style=";font-family:verdana;font-size:130%;"  &gt;&lt;a href="http://blog.irwan.name/?p=84"&gt;&lt;span style="font-weight: bold;"&gt;http://blog.irwan.name/?p=84&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:verdana;"&gt;]&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Question: I don't give any crap about IPv6! Why the hell I need IPv6???&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Answer: Get answer from &lt;/span&gt;&lt;a style="font-family: verdana;" href="http://en.linuxreviews.org/Why_you_want_IPv6"&gt;Linuxreviews.org&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Want to get working IPv6 in less than 5 minutes? Here you are,&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;1. Create an account from &lt;a href="http://www.go6.net/4105/freenet.asp"&gt;Freenet6&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;&lt;a style="font-family: verdana;" href="http://www.go6.net/4105/register.asp"&gt;http://www.go6.net/4105/register.asp&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;2. Received Confirmation Email&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;blockquote  style="font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;Welcome to go6!&lt;br /&gt;&lt;br /&gt;Your new go6 account gives you access to forums, documents and the go6 wiki. Your account can also be used with Freenet6, the free IPv6 access service. In order to get IPv6 access, please download and install the go6 client here.&lt;/span&gt;&lt;/blockquote&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;3. Install &lt;a href="http://packages.debian.org/tspc"&gt;TSPC&lt;/a&gt; Client &lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;apt-get install tspc&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;4. Edit /etc/tsp/tspc.conf&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;blockquote  style="font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt; 42 # user identification:&lt;br /&gt;43 #  userid=anonymous|your_userid&lt;br /&gt;44 #  anonymous means no userid. With anonymous, you don't need to register&lt;br /&gt;45 #   to get an userid from the broker. However, prefixes (router mode) nor&lt;br /&gt;46 #   permanent ipv6 address are available in anonymous mode.&lt;br /&gt;47 #  your_userid means the userid you registered to the broker. The userid&lt;br /&gt;48 #   must be using only legal dns label names (eg: [a-zA-Z0-9-] ) since&lt;br /&gt;49 #   the userid is used inside your user hostname.&lt;br /&gt;50 &lt;strong&gt;userid=PUT_YOUR_USERNAME&lt;/strong&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;blockquote  style="font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt; 52 #&lt;br /&gt;53 # password:&lt;br /&gt;54 # passwd=your_password&lt;br /&gt;55 #  leave empty if userid=anonymous&lt;br /&gt;56 #  your_password means the password you have been assigned with your&lt;br /&gt;57 #   userid&lt;br /&gt;58 &lt;strong&gt;passwd=PUT_YOUR_PASSWORD&lt;/strong&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;blockquote style="font-family: verdana;"&gt;76 #&lt;br /&gt;77 # 'server' is the tunnel broker identifier&lt;br /&gt;78 #   Value is the tunnel broker IP address or FQDN and an optional port number&lt;br /&gt;79 #   The default port number is 3653.&lt;br /&gt;80 #&lt;br /&gt;81 # Examples:&lt;br /&gt;82 # server=hostname # FQDN&lt;br /&gt;83 # server=A.B.C.D  # IPv4 address&lt;br /&gt;84 # server=hostname:port_number&lt;br /&gt;85 # server=A.B.C.D:port_number&lt;br /&gt;86 #&lt;br /&gt;87 # For users with accounts, 'server' should be set to the Freenet6&lt;br /&gt;88 # tunnel broker with authenticated accounts (broker.freenet6.net)&lt;br /&gt;&lt;strong&gt;89 server=broker.freenet6.net&lt;/strong&gt;&lt;br /&gt;90 #&lt;br /&gt;91 # The default value is the Freenet6 tunnel broker for&lt;br /&gt;92 # anonymous accounts (anon.freenet6.net)&lt;br /&gt;&lt;strong&gt;93 #server=anon.freenet6.net&lt;/strong&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;5. Start TSPC&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;/etc/init.d/tspc start&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;6. Check Network Interface&lt;/strong&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;meister:~# ifconfig tun&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;tun       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;         inet6 addr: 2001:xxxx:xxxx:xxxx::xx/128 Scope:Global&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;         UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1280  Metric:1&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;         RX packets:572 errors:0 dropped:0 overruns:0 frame:0&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;         TX packets:598 errors:0 dropped:0 overruns:0 carrier:0&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;         collisions:0 txqueuelen:500&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;         RX bytes:329102 (321.3 KiB)  TX bytes:61411 (59.9 KiB)&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;7. Test and Verify. Voila!&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;a style="font-family: verdana;" href="http://blog.irwan.name/wp-content/uploads/2007/05/firefox-ipv6-edited.jpg" title="firefox-ipv6-edited.jpg"&gt;&lt;img src="http://blog.irwan.name/wp-content/uploads/2007/05/firefox-ipv6-edited.thumbnail.jpg" alt="firefox-ipv6-edited.jpg" /&gt;&lt;/a&gt;&lt;span style="font-family:verdana;"&gt; &lt;/span&gt;&lt;a style="font-family: verdana;" href="http://blog.irwan.name/wp-content/uploads/2007/05/firefox2-ipv6-edited.jpg" title="firefox2-ipv6-edited.jpg"&gt;&lt;img src="http://blog.irwan.name/wp-content/uploads/2007/05/firefox2-ipv6-edited.thumbnail.jpg" alt="firefox2-ipv6-edited.jpg" /&gt;&lt;/a&gt;&lt;span style="font-family:verdana;"&gt; &lt;/span&gt;&lt;a style="font-family: verdana;" href="http://blog.irwan.name/wp-content/uploads/2007/05/bitchx-ipv6-edited.jpg" title="bitchx-ipv6-edited.jpg"&gt;&lt;img src="http://blog.irwan.name/wp-content/uploads/2007/05/bitchx-ipv6-edited.thumbnail.jpg" alt="bitchx-ipv6-edited.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;[1] Surf to &lt;/span&gt;&lt;a style="font-family: verdana;" href="http://www.kame.net/"&gt;http://www.kame.net/&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;[2] Surf to &lt;/span&gt;&lt;a style="font-family: verdana;" href="http://demo.nautilus6.org/"&gt;http://demo.nautilus6.org/&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;[3] Connecting BitchX to ipv6.chat.freenode.net&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:verdana;"&gt;Now, you will say;&lt;/span&gt;&lt;br /&gt;&lt;strong style="font-family: verdana;"&gt;&lt;em&gt;"w00t, I didn't know it's so easy to get IPv6!"&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-5058765526537568904?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/5058765526537568904/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=5058765526537568904' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5058765526537568904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5058765526537568904'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/simple-steps-to-get-ipv6-in-debian.html' title='Simple Steps To Get IPv6 in Debian'/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-5512323131632876509</id><published>2007-05-16T11:41:00.001+08:00</published><updated>2007-05-17T17:05:25.051+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Embedded Linux'/><title type='text'>Embedded Linux-Featuring Mr. Niibe</title><content type='html'>Habitual early morning rituals, the first thing I would do is check my email. Almost every morning there would be at least 10 announcements about what going on for training, staff and etc in the mailbox. Usually, the normal algo. would be ...&lt;br /&gt;&lt;br /&gt;foreach mail in list{&lt;br /&gt;subject = grep("subject");&lt;br /&gt;if(!relevent(subject))&lt;br /&gt;  delete;&lt;br /&gt;else&lt;br /&gt;  view;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Usually, the algo. works well and the only mails that would be left behind are emails from friends. But somehow it is different this time. The subject Embedded Systems came out and I just had to find out what it is all about. I viewed the mail and read through a brochure that is attached.&lt;br /&gt;&lt;br /&gt;The first thing that came up to my mind is, oh no...another Embedded workshop. Usually I won't be  that excited, but looking at the Trainer's background, i saw a familiar name.....Wait a minute, that's Mr. Niibe, the Debian kernel Hacker and founder of debian group and FLOSS in Japan. An old friend indeed.....I wasted no time and registered for the workshop.....  Would be nice to see that old Jap again....&lt;br /&gt;&lt;br /&gt;If you are interested, you can check out the following details....&lt;br /&gt;&lt;br /&gt;Embedded Linux Technology Workshop&lt;br /&gt;OUM Open Source Community in collaboration with MNCC Malaysia, which will be organising two workshops on Embedded Linux from June 5th-8th and June 11th-14th.&lt;br /&gt;&lt;br /&gt;The workshop Objective:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;To provide an understanding of the essentials of embedded Linux&lt;/li&gt;&lt;li&gt;To give a practical experience in developing an embedded Linux system&lt;/li&gt;&lt;li&gt;To give a hands on experience of developing Linux applications code &lt;/li&gt;&lt;li&gt;To give the confidence to apply these new concepts to Embedded Linux projects&lt;/li&gt;&lt;/ul&gt;The remaining details can be found here:&lt;br /&gt;&lt;a href="http://www.mncc.com.my/embedlinux/index.html"&gt;http://www.mncc.com.my/embedlinux/index.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;and its suppose to be here too...&lt;br /&gt;&lt;pre&gt;www.foss.org.my, www.mncc.com.my, www. thedreamsoft.com&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-5512323131632876509?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/5512323131632876509/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=5512323131632876509' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5512323131632876509'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/5512323131632876509'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/embedded-linux-featuring-mr-niibe.html' title='Embedded Linux-Featuring Mr. Niibe'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-8175775625706440974</id><published>2007-05-15T23:33:00.000+08:00</published><updated>2007-05-16T00:56:06.058+08:00</updated><title type='text'>Return Of The Debianista</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-family:verdana;"&gt;Today, I’m certified myself as a Debian User again (you may call this as so-called recertification). If I really remember, the last time I use Debian was during my preparation for &lt;/span&gt;&lt;a style="font-family: verdana;" href="https://www.redhat.com/training/certification/verify/?rhce_cert_display:certno=804006728020597&amp;rhce_cert_display:verify_cb=Verify"&gt;RHCE&lt;/a&gt;&lt;span style="font-family:verdana;"&gt; exam - running RHEL on Debian, using VMware Workstation.&lt;br /&gt;&lt;br /&gt;After that (damn, about one year), I just do not have enough time and resource to use it.&lt;/span&gt;&lt;span style="font-family:verdana;"&gt; For the rest of this article, please click &lt;/span&gt;&lt;a style="font-family: verdana;" href="http://blog.irwan.name/39/return-of-the-debianista/"&gt;here&lt;/a&gt;&lt;span style="font-family:verdana;"&gt;.....&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://img523.imageshack.us/my.php?image=debianlennyamd64ym0.png" target="_blank"&gt;&lt;img src="http://img523.imageshack.us/img523/3581/debianlennyamd64ym0.th.png" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-8175775625706440974?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/8175775625706440974/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=8175775625706440974' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8175775625706440974'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/8175775625706440974'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/return-of-debianista.html' title='Return Of The Debianista'/><author><name>Irwan</name><uri>http://www.blogger.com/profile/06128199135635747505</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/-H1Rgc-mXOYk/TZ4Q_Cro93I/AAAAAAAAANQ/gl_Tk4iD0YE/s220/profile-20101222-2.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-768565136752547583</id><published>2007-05-08T15:09:00.000+08:00</published><updated>2007-05-08T15:16:55.460+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='font'/><category scheme='http://www.blogger.com/atom/ns#' term='terminal'/><title type='text'>So you got some funny fonts?</title><content type='html'>I got some funny font (should I call it crappy?) when I was alerted with error messages or referring manual pages.&lt;br /&gt;&lt;br /&gt;This is how I did. It was not neccessarily the best method, but at least it work for me.&lt;br /&gt;&lt;br /&gt;The value of font usually mapped to locale of the running systems. To know about it just type:&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;echo $LC_ALL&lt;/blockquote&gt;&lt;br /&gt;This will display the overall values of monetary,font and language of the running session.&lt;br /&gt;&lt;br /&gt;Export the value by using&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;export LC_ALL=C&lt;/blockquote&gt;This setting will work on current session. If you plan to save this setting, put it in your RC in your shell profile:&lt;br /&gt;&lt;br /&gt;Edit .bashrc and put&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;export LC_ALL=C&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;as above&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-768565136752547583?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/768565136752547583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=768565136752547583' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/768565136752547583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/768565136752547583'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/05/so-you-got-some-funny-fonts.html' title='So you got some funny fonts?'/><author><name>najmi</name><uri>http://www.blogger.com/profile/11282323362186270236</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://i7.photobucket.com/albums/y297/mnajem/penguin.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-3267429524837381161</id><published>2007-04-27T15:57:00.001+08:00</published><updated>2007-04-27T16:05:01.418+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='package'/><category scheme='http://www.blogger.com/atom/ns#' term='videocard'/><title type='text'>Debian Etch (4.0) on Pentium III</title><content type='html'>I just installed Debian Etch on my research project's machine which have specs as follows:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Pentium III (Coppermine)&lt;/li&gt;&lt;li&gt;128 RAM (suppose)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;As I didn't play around with Debian (instead with its variant-Ubuntu on my laptop), several steps I did forgot:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Howto configure X&lt;/li&gt;&lt;li&gt;Howto choose nearest apt-get mirror&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Anyway, for the X issue, my machine is currently using SiS video card. By default Etch unable to adapt with the settings so I opt to use VESA as the video config choice.&lt;br /&gt;&lt;br /&gt;Another thing that I faced was the problem with "xlockmore" package which I usually use to let my machine locked while unattended. So I went to package section at Debian's website and downloaded it manually.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-3267429524837381161?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/3267429524837381161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=3267429524837381161' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3267429524837381161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/3267429524837381161'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/04/debian-etch-40-on-pentium-iii.html' title='Debian Etch (4.0) on Pentium III'/><author><name>najmi</name><uri>http://www.blogger.com/profile/11282323362186270236</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://i7.photobucket.com/albums/y297/mnajem/penguin.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-7937745679251132381</id><published>2007-04-23T16:51:00.001+08:00</published><updated>2007-04-23T21:49:33.447+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='console'/><title type='text'>Annoying Beeps</title><content type='html'>After having a new installation of Debian on my laptop, an annoying beep comes out of my laptop speakers every time i pressed the tab button on the X console, or whenever i do some kind of shell error. It's annoying, it keeps on beeping....&lt;br /&gt;I tried to ignore the problem, hoping that selective hearing will prevail, but after making a scene in the meeting room with beeping havoc coming from my laptop during the last meeting, which I got  a little too much attention from my boss. That's it, I decided to find ways to get rid of this problem once and for all.&lt;br /&gt;&lt;br /&gt;So I googled to find an easy and minimal work around solution. One way was to edit /etc/inputrc and comment out....&lt;br /&gt;&lt;pre&gt;set bell-style none&lt;/pre&gt;&lt;br /&gt;There was also an alternatives to this, which is to rmmod pcspkr, add it into the /etc/modprobe.d/blacklist to make sure it doesn't get loaded again.&lt;br /&gt;&lt;br /&gt;Now i can slowly and quietly steal precious time and not waste my time listening to the boss rambling during my department meetings.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-7937745679251132381?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/7937745679251132381/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=7937745679251132381' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/7937745679251132381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/7937745679251132381'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/04/annoying-beeps.html' title='Annoying Beeps'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7572900934255893439.post-6805178668462434731</id><published>2007-04-22T21:32:00.000+08:00</published><updated>2008-12-09T09:14:09.934+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='SOCIAL PENGUIN'/><title type='text'>Meetup at Starbucks</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_3nIA99-wmMk/RixJD3fFdfI/AAAAAAAAAAo/REqZ9EFomws/s1600-h/dsc05083-mini.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://3.bp.blogspot.com/_3nIA99-wmMk/RixJD3fFdfI/AAAAAAAAAAo/REqZ9EFomws/s320/dsc05083-mini.jpg" alt="" id="BLOGGER_PHOTO_ID_5056496812412990962" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Debian group have not been active recently. But that does not mean that we are now less passionate about debian and linux. So to revive our small group of geeks, we decided to have a debian meetup, at Starbucks, near Jusco, One Utama.&lt;br /&gt;&lt;br /&gt;The following people came, Irwan, MNajem, Syirman, Fadli, Shakir and myself (joey). Hence by default, we are now the first few writers of debianMalaysia.blogspot.com. We intend to find more writers, who can help mydebian to contribute about anything and nothing about debian. Please express your interest to be a writer, and we will add you in our respectable writers.&lt;br /&gt;&lt;br /&gt;There are many exciting plans for mydebian, and we are thinking to pulling more group of friends and geeks alike. Also in the pipeline, install fest across Universities in Malaysia--tell me what do you think--and also beef up documentation on debian laptops and etc.&lt;br /&gt;&lt;br /&gt;Keep an eye on our progress, join us to ultimate geekdom....&lt;br /&gt;If knowledge turns you on....being a geek is ain't that bad...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7572900934255893439-6805178668462434731?l=debianmalaysia.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://debianmalaysia.blogspot.com/feeds/6805178668462434731/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7572900934255893439&amp;postID=6805178668462434731' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6805178668462434731'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7572900934255893439/posts/default/6805178668462434731'/><link rel='alternate' type='text/html' href='http://debianmalaysia.blogspot.com/2007/04/meetup-at-starbucks.html' title='Meetup at Starbucks'/><author><name>Joey Nor</name><uri>https://profiles.google.com/115636835067761110539</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//lh4.googleusercontent.com/-0siM2WGnJ6A/AAAAAAAAAAI/AAAAAAAAB20/kKsw72RlLx4/s512-c/photo.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_3nIA99-wmMk/RixJD3fFdfI/AAAAAAAAAAo/REqZ9EFomws/s72-c/dsc05083-mini.jpg' height='72' width='72'/><thr:total>2</thr:total></entry></feed>
