Friday, November 30, 2012
Kaos Linux
Kernel 3.6.8
- ALSA: usb-audio: Fix crash at re-preparing the PCM stream
- ALSA: hda - Fix invalid connections in VT1802 codec
- ALSA: hda - Fix empty DAC filling in patch_via.c
- ALSA: HDA: Fix digital microphone on CS420x
- tcp: fix retransmission
Install Hackintosh di ACER 4540
- AMD Turion X2
- ATI HD 4200
- RAM 3GB
- HDD 320 GB
- Sound
- WiFi (Atheros)
- Bluetooth
- Touchpad
- WebCam
Thursday, November 15, 2012
Chroot : Exec Format Error
Jam 2 malam kaya gini mau buka komputer ternyata burgnya error. Lupa tadi kuapain, karena LiveUSB keformat, jadinya bongkar tempat CD. Asal ngambil CD linux buat restore BURG biar bisa masuk ke Mint lagi.
Setelah masuk dan booting yg lama banget dan berisik suara CD. Waktunya merestore BURG! Setelah selesai mounting, pas mau jalaning perintah chroot ternyata error.
Errornya :
CHROOT : Exec Format Error
Hal ini disebabkan karena perbedaan system arsitektur komputer saya dengan master linux yang saya masukkan tadi. Komputer saya terinstall dengan Linux Mint 64 bit, sehingga jika ingin restore, harus menggunakan arsitektur yang sama.
SOLUSI?
Coba booting dengan master linux yang sesuai dengan linux yang terinstall di komputer anda. Lebih baik menggunakan master yang sama seperti linux yang terinstall.
Tuesday, November 13, 2012
Percepat Kompilasi Kernel
-j [jobs], --jobs[=jobs]
Specifies the number of jobs (commands) to run simultaneously. If there is more than one -j option, the last one is effective. If the -j option is given without an argument, make will not limit the number of jobs that can run simultaneously.
Monday, November 12, 2012
Bahasa Indonesia
Friday, November 9, 2012
Fix Internal Error -- Ubuntu Software Center
sudo apt-get install -f
Wednesday, November 7, 2012
How to Compile Kernel ?
- First you must download the kernel source code from www.kernel.org
- After downloaded, extract with your favorite package manager, or you can do that from terminal and type this command tar -xjvf linux-x.y.z.tar.bz2 -C /usr/src.
- The source code will be unpack to folder /usr/src
- Go to the directory by typing cd /usr/src
- Type make menuconfig to configure the kernel before you compile it.
- BE CAREFUL ! There are plenty of configuration that if you didn't careful, the kernel may not work perfectly on your computer. If you don't know how to configure, just leave it default.
- To compile, type sudo make. It will took a long time to compile the kernel, about 50 - 60 minutes.
- After finished, type sudo make modules_install install. The command will install the driver for your hardware and after it finished, the kernel will be updated into your system.
- After that, reboot the computer, and the kernel should be in the GRUB list. If didn't, boot with old kernel, go to terminal and type update-grub (GRUB user) [OPTIONAL]
- Simple enough to do this, the bad things is that you must wait for a while to compile the kernel. If you have any question, please post here.
Tuesday, November 6, 2012
NUTZ! 5.0 -- Quantal Release Party Yogyakarta
- Register online ? Go to http://nutz5.ukdwnetclub.com
You're in Jogja or near Jogja ? Please come and join us ! Celebrate the Release Party !
Monday, November 5, 2012
Kernel 3.6.6 -- Not working well
Saturday, November 3, 2012
Expanding my Linux's Partition
Backup : dd if=/dev/sdax of=file.img
Restore : dd if=file.img of=/dev/sdax
Restore with proggress bar :dd if=FILE.IMG | pv -s $(stat file.img | egrep -o "Size : [[:digit::]]*" | egrep -o "[[:digit:]]*") | dd of=/dev/sdax