>Font BlankOn Ombilin

>Font BlankonOmbilin memang tidak ada pada repo ubuntu secara default namun anda tetap dapat menginstallnya.

Font ini sangat bagus, hasil kreatif dan tidak menirut font dari ubuntu.
Posted in Uncategorized | Leave a comment

>OpenBox

>OpenBox ya salah satu window manager selain compiz, metacity, dll.

Salah baru mencobanya beberapa hari dan langsung suka…
kenapa? menurut saya yang punya laptop slow ini. OpenBox sangat ringan pada sistem hanya memakai beberapa mb saja, tidak seperti compiz yang hampir sekitar 20mb pada laptop saya. untuk pnginstallan pun sangat mudah dan cepat.
# sudo apt-get update && sudo apt-get install openbox obconf
isikan password anda, dan aka terinstall otomatis.
selamat mencoba.
Posted in Uncategorized | Leave a comment

>Pasang BURG di Ubuntu Jaunty

>

Pada tutorial2 yang ada banyak diceritak instalaasi BURG di Ubuntu Karmic.
Lalu bagaimana dengan Ubuntu Jaunty, tentu saja bisa2…
WIKI BURG sebagai acuan saya… Kira2 seperti ini :
Here are the steps to install BURG using PPA package from launchpad.
1. Insert these lines to /etc/apt/sources.list
 
deb http://ppa.launchpad.net/bean123ch/burg/ubuntu lucid main
deb
-src http://ppa.launchpad.net/bean123ch/burg/ubuntu lucid main
You should replace lucid with the correct code name. Currently the following release are supported: jaunty (9.04), karmic (9.10), lucid (10.04), maverick (10.10).
And install burg and related themes using these commands:
sudo apt-get update
sudo apt
-get install burg
If you want to avoid the warning about unknown signature, use these commands to import it:
gpg --keyserver keyserver.ubuntu.com --recv 55708F1EE06803C5
gpg
--export --armor 55708F1EE06803C5 | sudo apt-key add -
Then, install burg to MBR with the following command:
sudo burg-install "(hd0)"
Change hd0 if you want to install to other disk.
2. Edit configuration file /etc/default/burg
For the latest version, you don’t need to modify /etc/default/burg at all. If you upgrade from previous version, it’s recommended to change the setting of GRUB_THEME and GRUB_FOLD to:
GRUB_THEME=saved
GRUB_FOLD
=saved
This allows you to change theme and folding options dynamically.
Here are the hot-keys defined in the boot menu:
  • t – Open theme selection menu
  • f – Toggle between folding mode
  • n – Jump to the next item with the same class
  • w – Jump to the next Windows item
  • u – Jump to the next Ubuntu item
  • e – Edit the command of current boot item
  • c – Open a terminal window
  • 2 – Open two terminal windows
  • h – Display help dialog (only available in sora theme)
  • i – Display about dialog (only available in sora theme)
  • q – Return to old grub menu
  • F5/ctrl-x – Finish edit
  • F6 – Switch window in dual terminal mode
  • F7 – List the folded boot items
  • F8 – Toggle between graphic and text mode
  • F9 – shutdown
  • F10 – reboot
  • ESC – quit from the current popup menu or dialog.
Since 20100309 version, burg also supports grub2 theme. To try it, set GRUB_THEME to the name of the theme file, and run update-burg. Currently only one grub2 theme is available in burg-themes package:
GRUB_THEME=/boot/burg/themes/debian-theme/theme.txt
Screenshots: Screenshots
3. Live preview themes in host OS
To preview the current configuration, use this command:
sudo burg-emu
grub2 theme needs to access disk directly, to preview it, you need to add -D option:
sudo burg-emu -D
 
4. Dan jangan lupa untuk #sudo update-burg agar BURG secara otomatis membuat burg.cfg sebagai menu.
Posted in Uncategorized | Leave a comment

>Compile 2.6.33.4

>Jaunty might no longer detect your webcam after the installation. That was what happened to me. If you’re a heavy webcam user and can’t give up video chatting in Skype or Empathy, you can safely skip this post.
Here’s the latest hybrid I’ve done. If for one reason or another you’re still refusing to upgrade to Karmic, you might be interested in splicing in Karmic’s kernel (2.6.31.6) into Jaunty. I’ve tried it and worked flawlessly, but the performance boosts can rival that of Karmic.
Follow the steps below:

  1. Click this link and download the full version of Karmic’s kernel. It should be in .tar.bz2 extension. At the time of writing, the latest stable version is 2.6.31.6 and that was what I tried out in Jaunty. You’re free to try later ones if you wish.
  2. Place it somewhere in your directory and untar it with the following command: tar xjvf linux-2.6.31.6.tar.bz2 -C /usr/src
    This will unpack the file into your /usr/src folder as linux-2.6.31.6 folder.
  3. Depending on your machine, you might need to install additional libraries before you can proceed. In my case, I needed the GCC compiler and three additional development packages as follows: sudo apt-get install gcc libgtk2.0-dev libglib2.0-dev libglade2-dev
  4. cd into linux-2.6.31.6 folder and the first command if you’re running GNOME, or the second one if KDE. make gconfig
    make xconfig
    The above commands serve as configuration tools if you’re interested in adjusting kernel’ options (over 1,000!). Otherwise you can skip this step.
  5. Compile the kernel image. This is the fun part, as it may take hours, so make time! make
  6. Compile the kernel modules. Hopefully this should only take seconds. make modules
  7. Install the kernel modules as sudo. sudo make modules_install
  8. Install the kernel itself. make install
  9. After the above step, you should be able to find three files in your /boot directory: System.map-2.6.31.6, config-2.6.31.6, vmlinuz-2.6.31.6
  10. You now need to create an initrd kernel image to boot Jaunty with. This can easily be done by issuing the following command in your /boot directory. sudo mkinitramfs -o initrd.img-2.6.31.6 2.6.31.6
    In case you’re wondering why the command is called mkinitramfs instead of mkinitrd, the latter has been deprecated, so don’t use the old one.
  11. That should take care of the kernel installation. As a last step, you’ll need to modify your GRUB menu to point to the new kernel image. sudo gedit /boot/grub/menu.lst
  12. Add the following lines into the file.

    title Ubuntu 9.04, kernel 2.6.31.6
    uuid zzzzzzzzz
    kernel /boot/vmlinuz-2.6.31.6 root=UUID=zzzzzzzzz ro quiet splash
    initrd /boot/initrd.img-2.6.31.6
    quiet Make you sure replace zzzzzzzzz with your uuid that you can find in the file.

  13. Once that’s done, reboot the system. Find the kernel image in the GRUB menu and boot into it. Enjoy!
Posted in Uncategorized | Leave a comment

>Kernel 2.6.33.4 on Ubuntu Jaunty

>Beberapa jam yang lalu…
saya….
memasang kernel 2.6.33.4, di mana?
jaunty lah… wong adane jaunty bwt di utak atik….
bermodalkan slapping-in-karmics-kernel-into-jaunty-flawlessly, kasar juga bahasanya….
-_-
haha,,, tapi bukan itu masalahnya….
dlu saya pernah mencoba compile sendiri, tapi gagal….
namun cara ini sukses,,, hasilnya selain bisa di boot… juga performa jadi lebih cepat…
silakan mencoba…

Posted in Uncategorized | Leave a comment

>BusyBox initramfs

>hal ini saya alami, beberapa hari yang lalu,,, ketika sudah meremaster dan mencoba hasil remaster saya. ubuntu customnya tidak mau boot… aduh2, pusing… mencari kesana kemari ternyata masalahnya sepele…
yaitu squashfstools anda tidak cocok. tapi darimana hal ini di mulai?
saya pun mencari-cari, saya berpikir pada awalnya ini adalah bug pada squashfstoolsnya. namun selidik punya selidik hal ini terjadi karena ada repo yang melakukan update terhadap squashfs tools, yang seharusnya versi 3.3-7 menjadi 4.0-3 yang merupakan milik lucid. repo ini adalah repo milik usb-modeswitch. jadi hal yang anda lakukan adalah cukup disable repo usb-modeswitch ini.
repo yang saya gunakan :
http://ppa.launchpad.net/daniele.domenichelli/backports/ubuntu
punya bos daniele 😀
sekian dlu share pengalaman saya , thx

Posted in Uncategorized | Leave a comment

>Wallpaper Ubuntu Favorit

>Saya mau share ah walpaper ubuntu favorit saya….

seperti ini nih
Posted in Uncategorized | Leave a comment

>Aplikasi Twitter Ubuntu Jaunty

>Umumnya gwibber adalah aplikasi pilihan twiter client di ubuntu…
Namun akhir-akhir ini ada yang aneh, gwibber saya tidak mau konek via PPP… ada apa gerangan??? saya juga binun, gwiber sudah saya install ulang tetap saja tidak mau konek via PPP….
Saya menyerah dah, akhirnya saya menemukan twitux… sebuah aplikasi untuk twit2an… saya installah itu,,,
sudo apt-get install twitux
dan jalankanlah…. masukan user dan passwod anda,,, ubah refresh 3menit sekali… dan close… otomatis masuk tray, buka maka anda akan melihat twit dari teman2 anda… yang saya suka adalah bisa di refresh sesuka hati, untuk replay tinggal klik user yang twit tekan enter…
saya rasa lebih cepat dari gwibber… dan elbih efisien memory…
selemat mencoba…

Posted in Uncategorized | Leave a comment

>Upgrading Kernel Ubuntu Jaunty

>Salah satu cara meningkatkan performa Ubuntu adalah dengan mengupgrade kernelnya, sampai tulisan ini saya gunakan kernel 2.6.30…
Yang dahulu di rekomendasikan untuk pembaharuan security Ubuntu Karmic,,,
Tapi saya mencoba menerapkanny pada Ubuntu Jaunty….
Ikuti langkah di bawah ini:
1. buka Ubuntu PPA Kernel 2.6.30
2. Download linux-headers-2.6.30-020630_2.6.30-020630_all,deb linux-headers-2.6.30-020630-generic_2.6.30-020630_i386.deb linux-image-2.6.30-020630-generic_2.6.30-020630_i386.deb
3. Ini untuk 32bit, kalau ubuntu anda 64bit pilih yang mempunyai embel-embel “AMD64
4. kumpulkan pada 1 folder arahkan terminal pada folder tersebut… dengan cd /home/USER/Downloads biasanya, kalau di desktop yah arahkan pada desktop….
5. kemudian cukup dengan sudo dpkg -i *deb maka otomatis dpkg akan menginstall semua file tsb.
6. lalu update grub anda sudo update-grub
7. lalu reboot, masuk ke kernel 2.6.30… Selesai

Posted in Uncategorized | Leave a comment

>cpufreqd: no cpufreqd socket found

>Masalah ini saya temukan setelah utak atik kernel… lalu konfigurasi cpufreqd ada yang berubah… ternyata mudah sekali cukup edit sedikit konfigurasinya…
ktikan :
Alt+F2
gksu gedit /etc/cpufreqd.conf
kalau anda gunakan gedit kalau sudah ganti yah ganti dengan text editor kesukaan anda…
anda akan melihat :
[General]
pidfile=/var/run/cpufreqd.pid
poll_interval=2
verbosity=4
enable_remote=0
remote_group=root
[/General]

lalu anda ganti saja
[General]
pidfile=/var/run/cpufreqd.pid
poll_interval=2
verbosity=4
enable_remote=1
remote_group=root
[/General]

lalu reboot, di save dlu yah itu konfigurasinya…
pasti cpufreqdnya akan bekerja lagi seperti semula.

Posted in Uncategorized | Leave a comment