so, when other distros fail me, i always return to debian. it's a little bit harder to setup, but it (almost) always works on any hardware i have.
update:
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
- first i download this debian installer mini.iso
- i dont burn it. coz, i cant use the cd drive anymore.
- extract 2 files from the iso into (say) c:\debinst: linux and initrd.gz
- edit c:\menu.lst and add this:
title install debian kernel /debinst/linux acpi=off initrd /debinst/initrd.gz
- reboot
- on boot, choose grub. then choose install debian
- that's it. i install debian (again!)
update:
- first, you need to install grub on ntfs.
- instead of getting the mini.iso, we can directly get the linux and initrd.gz images from debian installer or ubuntu installer
- also check additional debian installer boot parameters
- see also: debian minimal desktop installation guide
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
this is how i install freevo on ubuntu hardy using apt-get to get packages from ubuntu intrepid.
First, from Freevo Apt Ubuntu Doc
now, install Python XML
then, some apt pinning
that's all it. i got freevo up and running on my hardy
btw. similar setup can be used to make it work on debian stable.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
First, from Freevo Apt Ubuntu Doc
# Add Medibuntu sudo wget http://www.medibuntu.org/sources.list.d/hardy.list -O /etc/apt/sources.list.d/medibuntu.list sudo apt-get update && sudo aptitude install medibuntu-keyring && sudo apt-get update # Mandatory dependencies sudo aptitude install libglib2.0-dev libimlib2 libimlib2-dev libdvdread-dev python-xml python-pygame python-twisted python-dev python-beautifulsoup xmltv lsdvd aumix mplayer libdvdcss2 # Optional packages sudo aptitude install w32codecs python-pylirc lirc tvtime xine-ui
now, install Python XML
# install dependencies sudo apt-get install python2.5-dev # download and unzip pyxml wget http://superb-west.dl.sourceforge.net/sourceforge/pyxml/PyXML-0.8.4.tar.gz tar -xzf ./PyXML-0.8.4.tar.gz cd PyXML-0.8.4 # build and install pyxml python setup.py build sudo python setup.py install # remove temporary files, be careful where you point that loaded rm -rf! cd .. rm -rf ./PyXML-0.8.4
then, some apt pinning
# sudo vi /etc/apt/preferences # then paste these into it: Package: * Pin: release a=hardy Pin-Priority: 900 Package: * Pin: release a=intrepid Pin-Priority: 90now, get the intrepid repo:
# sudo vi /etc/apt/sources.list.d/intrepid.list # then paste these into it: deb http://archive.ubuntu.com/ubuntu intrepid main restricted universe multiverse deb-src http://archive.ubuntu.com/ubuntu intrepid main restricted universe multiversefinally, do the install:
sudo apt-get update sudo apt-get -t intrepid install freevo
that's all it. i got freevo up and running on my hardy
btw. similar setup can be used to make it work on debian stable.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
continuing my popular howto easily configure x display, here are other ways to configure X display driver in Linux.
first, we should backup the original xorg.conf, just in case...
so here's many ways how to configure your X display driver:
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
first, we should backup the original xorg.conf, just in case...
cp /etc/X11/xorg.conf xorg.conf.backup1and when we need to restore:
sudo cp xorg.conf.backup1 /etc/X11/xorg.confyou might also want to backup xorg.conf from each step result and then choose the one that satisfy you most.
so here's many ways how to configure your X display driver:
- sudo rm /etc/X11/xorg.conf # just remove the xorg.conf. usualy, X will try to configure itself.
- if you have gdm installed, kill it with Ctrl-Alt-Backspace until it gives safe mode. or intentionally breaks xorg.conf with wrong entries.
- sudo X -configure && sudo cp xorg.conf.new /etc/X11/xorg.conf
- sudo dpkg-reconfigure -phigh xserver-xorg
- sudo displayconfig-gtk
- try paste xorg.conf from failsafe / default xorg.conf
- Fix Video Resolution Howto on ubuntu
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
i got a laptop with built-in Atheros 5007 wireless LAN (AR2425 chips). and the driver came with ubuntu is not working at all. i also tried ndiswrapper that works but causing a lot of crash. so, after google a lot i found many (somewhat outdated) solutions to make this wireless works but not working anymore...
until i found a ticket at madwifi, then follow this guide. but it's so very long conversation to digest...
so, here i try to summarize it in case i need to repeat the whole steps:
that's all it. now i can use the wifi from ubuntu.
(it should also works on all other linux distros).
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
until i found a ticket at madwifi, then follow this guide. but it's so very long conversation to digest...
so, here i try to summarize it in case i need to repeat the whole steps:
wget http://snapshots.madwifi.org/madwifi-hal-0.10.5.6-current.tar.gz tar zxvf madwifi-hal-0.10.5.6-current.tar.gz cd madwifi-hal-0.10.5.6-current/scripts sudo ./madwifi-unload sudo ./find-madwifi-modules.sh $(uname -r) cd .. make sudo make install
that's all it. now i can use the wifi from ubuntu.
(it should also works on all other linux distros).
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
klik gambar 'Add to Blogger' untuk pasang news ticker dari MetroTV di blogspot loe.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
after few times you do aptitude full-upgrade, you will end up with many kernel images. many people new to linux dont even know it's there. but it's there. and it can be many of them. wasting quite some spaces, especially if you're on old small 4gig harddrive, it matters a lot.
well... there're many ways you can remove old kernel on ubuntu. and here's my way..
first... find out which kernel installed:
that will also show installed old linux-header (source). you might want to remove them too.
now let's remove them:
that should reclaim at least few hundreds megs space.
guess what... it also works on debian and all distros based on these two.
update. shorter, easier...
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
Your Network & Internet Solutions
well... there're many ways you can remove old kernel on ubuntu. and here's my way..
first... find out which kernel installed:
aptitude search linux- | grep ^i
that will also show installed old linux-header (source). you might want to remove them too.
now let's remove them:
sudo aptitude purge linux linux-headers-2.6.24-16-server linux-image-2.6.24-16-server linux-ubuntu-modules-2.6.24-16 sudo aptitude purge linux linux-headers-2.6.24-17-server linux-image-2.6.24-17-server linux-ubuntu-modules-2.6.24-17that's all it.
that should reclaim at least few hundreds megs space.
guess what... it also works on debian and all distros based on these two.
update. shorter, easier...
sudo apt-get purge '.*-2.6.24-16-*' sudo apt-get purge '.*-2.6.24-17-*'
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
Your Network & Internet Solutions
Galaksi Blogger Indonesia ini meng-aggregate belasan aggregator / planet planet melalui saluran pipa Yahoo kedalam satu sistem galaksi yang luar biasa besar dan bergerak dengan kecepatan tinggi mendekati bintang utara Polaris.
:)
btw. Loe bisa mencari artikel/blog didalam galaksi ini dengan mudah menggunakan mesin cari blog Indonesia.
dan untuk memasang galaksi ini kedalam blog loe, cukup klik 'Get this' atau klik 'Get as a badge' dari sistem galaksi blog Indonesia ini.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
:)
btw. Loe bisa mencari artikel/blog didalam galaksi ini dengan mudah menggunakan mesin cari blog Indonesia.
dan untuk memasang galaksi ini kedalam blog loe, cukup klik 'Get this' atau klik 'Get as a badge' dari sistem galaksi blog Indonesia ini.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
reach more readers and more visitors. reach the world. translate your blogspot from any language (that google understand) into English. just click 'Add to Blogger' then click 'Add Widget' and this widget will be on your blogspot. that easy!
supported languages: Arabic, Bulgarian, Chinese (Simplified), Chinese (Traditional), Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hindi, Italian, Korean, Japanese, Norwegian, Polish, Romanian, Russian, Spanish, Swedish, Portuguese
more info: http://www.google.com/intl/en/help/faq_translation.html#langpairs
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
supported languages: Arabic, Bulgarian, Chinese (Simplified), Chinese (Traditional), Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hindi, Italian, Korean, Japanese, Norwegian, Polish, Romanian, Russian, Spanish, Swedish, Portuguese
more info: http://www.google.com/intl/en/help/faq_translation.html#langpairs
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
-
Tambahkan blog loe ke daftar Top Indonesian Blogger dan biarkan pengunjung menilai / voting daftar Indonesia Top Blogs di web loe.
-
Tambahkan blog loe ke daftar Top Indonesian Blogger dan biarkan pengunjung menilai / voting daftar Indonesia Top Blogs di web loe.
-
just found a bug in blogger-in-draft search box.
when you search this site, which is polaris.blogspot.com, you will get result from others-polaris.blogspot.com and anothers-polaris.blogspot.comjust have to wait google fix this bug.
-
just found a bug in blogger-in-draft search box.
when you search this site, which is polaris.blogspot.com, you will get result from others-polaris.blogspot.com and anothers-polaris.blogspot.comjust have to wait google fix this bug.
Blogger Buzz: Show off your favorite blogs with a Blog List
blogspot now have a new gadget that allow us to put our blog list to our sidebar. you might already have blogrolls using some other services. maybe the google reader's or others.
but all that mostly using javascript! you get what i mean? js means only browsers can see it and search engine bots cant see your blogroll.
and you can guess it already. this new blog roll is 100% SEO and it can even raise your other blogs pagerank.
let's see it in action...
update: wonder why ajaxsearch do not include bloglist in the search result?
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
blogspot now have a new gadget that allow us to put our blog list to our sidebar. you might already have blogrolls using some other services. maybe the google reader's or others.
but all that mostly using javascript! you get what i mean? js means only browsers can see it and search engine bots cant see your blogroll.
and you can guess it already. this new blog roll is 100% SEO and it can even raise your other blogs pagerank.
let's see it in action...
update: wonder why ajaxsearch do not include bloglist in the search result?
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
get instant alert of my blog or any of your favorite news/blog feed to your instant messenger.
imfeed need you to sign up and logged in first. works great for me.
feedcrier says we need to confirm the subscription. but the confirmation message never arrive.
cant make zaptxt works. it always say the feed is not validated.
try them out. tell me what you think. share your thought and post a comment.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
imfeed need you to sign up and logged in first. works great for me.
feedcrier says we need to confirm the subscription. but the confirmation message never arrive.
cant make zaptxt works. it always say the feed is not validated.
try them out. tell me what you think. share your thought and post a comment.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
Google Talkabout: New chatback styles let you put your a gadget on your web. this gadget will let your visitors 'chatback' to you.
go get the google talk gadget for your web.
also, you can chatback to me:
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
go get the google talk gadget for your web.
also, you can chatback to me:
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
just found another great resources on htaccess blacklist by perishable press. it's called ultimate htaccess blacklist. similar to my previous close to perfect htaccess ban list from webmasterworld forum. but the htaccess have all the rewritecond in one single super long line.
also, it have very nice and almost complete htaccess stuffs.
then, it's also building so-called 3G - third generation - blacklist which include a bunch of redirectmatch stuffs. but be carefull with these. they could/might breaks your cms if you do not understand the logics there.
among all, i will certainly put this into my htaccess:
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
also, it have very nice and almost complete htaccess stuffs.
then, it's also building so-called 3G - third generation - blacklist which include a bunch of redirectmatch stuffs. but be carefull with these. they could/might breaks your cms if you do not understand the logics there.
among all, i will certainly put this into my htaccess:
# PART III: USER AGENTS SetEnvIfNoCase User-Agent "Jakarta Commons" keep_out SetEnvIfNoCase User-Agent "Y!OASIS/TEST" keep_out SetEnvIfNoCase User-Agent "libwww-perl" keep_out SetEnvIfNoCase User-Agent "MOT-MPx220" keep_out SetEnvIfNoCase User-Agent "MJ12bot" keep_out SetEnvIfNoCase User-Agent "Nutch" keep_out SetEnvIfNoCase User-Agent "cr4nk" keep_outjust go check it out for all those .htaccess stuffs and come back tell me what do you think and how you build your htaccess
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
Pasang Top Indonesian Blogger Widget di blogspot loe!
tambahkan alamat blog loe ke daftar Top Indonesian Blogger.
klik gambar 'Add to Blogger' ini:
jangan lupa klik 'Edit Content' lalu ubah width & height sesuai blogspot loe.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
tambahkan alamat blog loe ke daftar Top Indonesian Blogger.
klik gambar 'Add to Blogger' ini:
jangan lupa klik 'Edit Content' lalu ubah width & height sesuai blogspot loe.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
i just create another widget that allow you - easily,instantly - turns anything into a great free blogspot widget and share it on your blogspot. sort of "widget builder" widget.
just enter your owm custom html/js into it and your widget is ready to share!
and with 2 clicks, anyone can have your widget on their blogspot.
click and try it out! build your viral widget and share it to the world.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
just enter your owm custom html/js into it and your widget is ready to share!
and with 2 clicks, anyone can have your widget on their blogspot.
click and try it out! build your viral widget and share it to the world.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
Indonesia Blogs Search. Search all Indonesian Bloggers all over the world. most comprehensive exhaustive search engine for Indonesia Blogs. unbiased. uncensored. built by Indonesian Bloggers. dari blogger, oleh blogger, untuk blogger!
get this search engine
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
get this search engine
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
add translator widget to your blogspot.
let your visitors translate your blogspot into 30+ languages!
combining the power of babelfish, google, and many more translator into one and only most powerfull translator widget!
supported languages:
read blogger help for details.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
let your visitors translate your blogspot into 30+ languages!
combining the power of babelfish, google, and many more translator into one and only most powerfull translator widget!
supported languages:
Indonesia 汉语简化了 中國傳統 Dutch Français Ελληνικά 日本語 한국어 Deutsch Italiano Português Русский Español العربية Bulgarian Croatian Czech Danish Finnish Hindi Norwegian Polish Romanian Svenska Malay Ukrainian Persian Hebrew Türkçe Brazilian Portuguese Hungarian Icelandic Latin American Spanish Tagalog Serbian Slovenian Latin Welsh Catalan Englishdont forget click on 'Edit Content' to adjust the iframe width & height to suite your template.
read blogger help for details.
--
tips & tricks on computers and gadgets
denny on IT ; let's doIT
documenting the brain
SuprTags
archives
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- July 2006
- December 2005
- November 2005
- August 2005







