Not too difficult, here are a few tips to make sure that your experience is flawless.
When configuring the virtual machine, make sure that you
enable APIC and ACPI in Settings –> System.
create a fixed sized harddisk to improve disk I/O speeds.
After installing Windows XP, make sure that you
download the driver for the Intel Pro 1000 network [...]
Over the last couple of months, I have been nagging myself to fix several of the issues with my Linux installation, in particular I need to:
update my kernel (currently 2.6.27-rc9)
get the wacom input device working with the newest xorg-server
add some snaz to my desktop configuration (openbox, dmenu…bleh)
So, sparing you the `wget`ing and `tar -xf`ing, [...]
The latest Xorg video driver for Intel chipsets will probably cause a slowdown in rendering due to a switch from TTM to GEM. GEM is only supported in kernel 2.6.28 and above so it’s recommended that you stick with drivers released before 2.4.3.
More information: http://bugs.freedesktop.org/show_bug.cgi?id=13922
http://www.x.org/wiki/ttm
15 November, 2008 – 02:26
I’m simply going to list the steps.
wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.27.6.tar.bz2
tar xf linux-2.6.27.6.tar.bz2
cd linux-2.6.27.6
zcat /proc/config.gz > .config
make menuconfig
make
su
make modules_install
mkinitcpio -k `make kernelrelease` -g /boot/kernel-`make kernelrelease`.img
cp System.map /boot/System.map-`make kernelrelease`
cp arch/i386/boot/bzImage /boot/vmlinuz-`make kernelrelease`
install -D -m644 .config /boot/kconfig-`make kernelrelease`
/sbin/depmod -A -v `make kernelrelease`
vi /boot/grub/menu.lst
reboot
rc3 is another solid release. Follow the same procedure documented in upgrading to linux-2.6.27-rc2.
The catalyst patch works with this release.
Choosing to run the latest kernel means choosing to deal with errors. Luckily, my mileage with 2.6.27-rc2 has been pretty good. Here are a few pointers (and an experimental patch) to use when setting up catalyst-8.7 kernel 2.6.27-rc2.
I created the patch from various components incl.:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=485793
Also, note that I do not have any working [...]
git makes it incredibly easy to upgrade my kernel to the latest (but not necessarily greatest). I’ve decided that I’ll stick to tagged releases instead of the latest git pull.
I’ll skip the prologue and just show the commands.
Download the latest commits.
linux-git % git pull (Note: Make sure you are in the master branch [...]
I recently upgraded my kernel to linux-2.6.27-rc1.
This was the first time I compiled a kernel on this distro (but not the first time I have compiled one). Thankfully, the compilation had no problematic errors. This write up is more for my benefit than for yours; nevertheless, I hope it will help you out.
What works
ipw3945->iwl3945, catalyst, [...]