Fedora 11 on ThinkPad W500

This was the release I was waiting for! The installation was a bit of a trouble but it was surely worth the effort. Its really the first Fedora release that I really liked. Its stable, has good hardware support and boots really quickly (<20 seconds on my system).

In my case, Windows 7 RC was already installed on one partition, so Fedora 11 (x64) was installed in second partition. So, now I have dual boot configuration – the windows boot loader presents option to continue booting windows or launch GRUB from Linux partition. I didn’t want GRUB to be present in MBR as I experiment a lot with Linux system – so, its better if I have a working system even if I blow up Linux installation :)

The installation was smooth except for the disk partitioning step. Anaconda kept crashing while creating partitions. After a few attempts, I finally got this partitioning scheme:

/boot FS type has to be ext3. Its not allowed to be ext4.

Package selection step was smooth (as usual I selected KDE). Then comes boot loader options. I selected boot loader to be installed on first sector of boot partition (/dev/sda5 here), so I can later configure Windows boot loader to load Linux.

The system failed to boot after installation! For some mysterious reasons Linux installation overwrote MBR even though I selected Linux boot loader to be installed on boot partition. Fortunately, the recovery was easy. I rebooted with Windows 7 DVD and it presented Repair Windows –> Startup Recovery option which allowed recovering the MBR. This at least allowed Windows to boot again. Phew! But now, there was not trace of Linux. We have to now setup Windows to dual boot Linux.

Setting up Win7 and Fedora dual booting

Win7 uses something called BCD (Boot Configuration Data) to manage boot loader related stuff. With Windows XP you could simply extract first 512 bytes from Linux boot partition using ‘dd’ command, save this file in ‘C:\’ and add an entry for this boot sector file in ‘C:\boot.ini’ file. However, with BCD things are bit complex – boot.ini no longer exists. After lot of googling and experimentation I could not figure out how to add entry for Linux in Win7 boot loader.

Finally, I found a program called EasyBCD 2.0 beta (‘stable’ version of EasyBCD didn’t work). This program allows adding Linux as one of entries in Windows boot loader:

EasyBCD

While adding the entry, select Linux boot partition from ‘Devices’ list. In above case, Partition 4 is the boot partition. Remember that /boot partition is only 200MB and only ‘Partition 4’ is listed as ‘0 GB’, so we can guess that this the one we need to select. I selected the entry name as ‘NeoSmart Linux native’ but you can be smarter and call it ‘Fedora 11’ or something.

Once the entry is added, you will see it listed as one of Windows boot loader boot options. Selecting it will take you to GRUB installed on the Linux boot partition. That’s it!

Into the Linux

Fedora is now up and running natively. Everything worked out of box. Wireless network detected, suspend and hibernation worked perfectly. The KDE 4.2 looks simply awesome!

Only thing that’s a bit annoying is that tapping on touchpad is not detected as a click. Till now I haven’t found a solution for this. Also, this system has switchable graphics (ATI FireGL 5700 / Intel integrated crap). I have set integrated Intel graphics card as default in BIOS, so I don’t how well ATI plays with this version of Fedora.

Next Steps

As expected from a Linux box, MP3 and tons of video formats do not play by default. With Fedora 11, fortunately its now almost trivial to get these working.

First you need to add rpmfusion-{free, nonfree} repositories as shown here.

For MP3 support:

  • yum install audacious* # if you use Audacious audio player (my favourite!)
  • yum install xine* amarok* #if you use Amarok (this used to be my favourite)

For various Video formats:

  • yum install smplayer* # smplayer is a simple and nice video player.

This installs lots of codecs (as dependency of smplayer) to play nearly all file formats: flv, mpg, mov etc. etc.

Adobe Flash:

Since this is a 64-bit system, you need to download Flash Player 10 pre-release from here:

http://labs.adobe.com/downloads/flashplayer10.html

tar-unzip the file and copy the libflashplayer.so file to /usr/lib64/mozilla/plugins. Restart Firefox and test with some YouTube videos.

DeltaRPMs:

Install yum-presto plugin. This causes yum to download only the ‘delta’ between two version of packages resulting in much smaller download during upgrade.

  • yum install yum-presto

and now, upgrade all packages:

  • yum upgrade –y

Misc Notes:

  • By default, KDE4 Konsole does not read ~/.bash_profile on startup. To do this, change Konsole Shell command (using ‘Settings –> Edit current profile’) to:

/usr/bin/bash –login

  • With default ‘Oxygen’ style, its difficult to distinguish active and inactive windows. So, my personal preference is to use ‘Plastique’ style which looks much better and is easier on eyes.
  • To get that Lion (‘leonidas’) wallpaper :)

yum install leonidas-backgrounds*

linux 

See also