<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Scott</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Scott"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Scott"/>
	<updated>2026-04-07T01:50:57Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26635</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26635"/>
		<updated>2006-11-28T19:10:21Z</updated>

		<summary type="html">&lt;p&gt;Scott: /* Wireless Networking */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs].&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
enabled=0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Important:&amp;lt;/b&amp;gt; Disabling the AT-RPMs repository by default (using enabled=0) in the above configuration is important.  Some repositories have been known not to play well together.  See [http://forums.fedoraforum.org/showthread.php?t=94861 this post] on the [http://forums.fedoraforum.org/ Fedora Forms] for more information.  However, AT-RPMs does provide a packaged version of the Intel wireless drivers and firmware that we'll use to set up wireless networking later.  As long as AT-RPMs is disabled by default, Yum won't install software from their repository unless we explicitly tell it to do so.&lt;br /&gt;
&lt;br /&gt;
== ATi Video Driver (fglrx) ==&lt;br /&gt;
&lt;br /&gt;
Installing the fglrx driver is easy if you've enabled the Livna.org RPM repository as discribed earlier in this article.  Unfortunately, the proprietary ATi driver currently does not support desktop effects or composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
To install the drivers, as root:&lt;br /&gt;
 [root@scottt60 ~]# yum install kmod-fglrx.i686 xorg-x11-drv-fglrx&lt;br /&gt;
&lt;br /&gt;
While the driver installs, X fails to use direct Open GL rendering.  There are two things that need to be done to get the driver working.  First, we must disable effects by adding these lines to the bottom of /etc/X11/xorg.conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;ServerFlags&amp;quot;&lt;br /&gt;
        Option  &amp;quot;AIGLX&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Extensions&amp;quot;&lt;br /&gt;
        Option &amp;quot;Composite&amp;quot; &amp;quot;Disable&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, we need to add ATi's driver directory to dynamic linker (ld) search path and update the linker configuration:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@scottt60 ~]# echo &amp;quot;/usr/lib/ati-fglrx/&amp;quot; &amp;gt; /etc/ld.so.conf.d/ati-fglrx.conf&lt;br /&gt;
[root@scottt60 ~]# ldconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After ldconfig completes, restart X.  You can check if you've completed your installation correctly by running fglrxinfo.  Your output should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[scott@scottt60 ~]$ fglrxinfo &lt;br /&gt;
display: :0.0  screen: 0&lt;br /&gt;
OpenGL vendor string: ATI Technologies Inc.&lt;br /&gt;
OpenGL renderer string: ATI Mobility Radeon X1400 Generic&lt;br /&gt;
OpenGL version string: 2.0.6174 (8.31.5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Congratulations, your video configuration is complete.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum --enablerepo=atrpms install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, make it executable and add the script with chkconfig to be started on boot:&lt;br /&gt;
 &lt;br /&gt;
 # chmod 750 /etc/init.d/ipw3945d&lt;br /&gt;
 # chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;br /&gt;
&lt;br /&gt;
=External Sources=&lt;br /&gt;
*This guide is listed at the [http://tuxmobil.org/ibm.html TuxMobil Linux laptop and notebook installation survey (IBM/Lenovo)].&lt;br /&gt;
&lt;br /&gt;
[[Category:Fedora]]&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26634</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26634"/>
		<updated>2006-11-28T19:09:29Z</updated>

		<summary type="html">&lt;p&gt;Scott: Updated mixing repos warning, specifially AT-RPMS&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs].&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
enabled=0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Important:&amp;lt;/b&amp;gt; Disabling the AT-RPMs repository by default (using enabled=0) in the above configuration is important.  Some repositories have been known not to play well together.  See [http://forums.fedoraforum.org/showthread.php?t=94861 this post] on the [http://forums.fedoraforum.org/ Fedora Forms] for more information.  However, AT-RPMs does provide a packaged version of the Intel wireless drivers and firmware that we'll use to set up wireless networking later.  As long as AT-RPMs is disabled by default, Yum won't install software from their repository unless we explicitly tell it to do so.&lt;br /&gt;
&lt;br /&gt;
== ATi Video Driver (fglrx) ==&lt;br /&gt;
&lt;br /&gt;
Installing the fglrx driver is easy if you've enabled the Livna.org RPM repository as discribed earlier in this article.  Unfortunately, the proprietary ATi driver currently does not support desktop effects or composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
To install the drivers, as root:&lt;br /&gt;
 [root@scottt60 ~]# yum install kmod-fglrx.i686 xorg-x11-drv-fglrx&lt;br /&gt;
&lt;br /&gt;
While the driver installs, X fails to use direct Open GL rendering.  There are two things that need to be done to get the driver working.  First, we must disable effects by adding these lines to the bottom of /etc/X11/xorg.conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;ServerFlags&amp;quot;&lt;br /&gt;
        Option  &amp;quot;AIGLX&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Extensions&amp;quot;&lt;br /&gt;
        Option &amp;quot;Composite&amp;quot; &amp;quot;Disable&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, we need to add ATi's driver directory to dynamic linker (ld) search path and update the linker configuration:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@scottt60 ~]# echo &amp;quot;/usr/lib/ati-fglrx/&amp;quot; &amp;gt; /etc/ld.so.conf.d/ati-fglrx.conf&lt;br /&gt;
[root@scottt60 ~]# ldconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After ldconfig completes, restart X.  You can check if you've completed your installation correctly by running fglrxinfo.  Your output should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[scott@scottt60 ~]$ fglrxinfo &lt;br /&gt;
display: :0.0  screen: 0&lt;br /&gt;
OpenGL vendor string: ATI Technologies Inc.&lt;br /&gt;
OpenGL renderer string: ATI Mobility Radeon X1400 Generic&lt;br /&gt;
OpenGL version string: 2.0.6174 (8.31.5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Congratulations, your video configuration is complete.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, make it executable and add the script with chkconfig to be started on boot:&lt;br /&gt;
 &lt;br /&gt;
 # chmod 750 /etc/init.d/ipw3945d&lt;br /&gt;
 # chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;br /&gt;
&lt;br /&gt;
=External Sources=&lt;br /&gt;
*This guide is listed at the [http://tuxmobil.org/ibm.html TuxMobil Linux laptop and notebook installation survey (IBM/Lenovo)].&lt;br /&gt;
&lt;br /&gt;
[[Category:Fedora]]&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26497</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26497"/>
		<updated>2006-11-22T18:53:25Z</updated>

		<summary type="html">&lt;p&gt;Scott: Removed note about ATi driver not working.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine. &lt;br /&gt;
* AFAIK livna does not support mixing its repository with other sources than Fedora Core and Fedora Extras, so try adding software just from one repo.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATi Video Driver (fglrx) ==&lt;br /&gt;
&lt;br /&gt;
Installing the fglrx driver is easy if you've enabled the Livna.org RPM repository as discribed earlier in this article.  Unfortunately, the proprietary ATi driver currently does not support desktop effects or composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
To install the drivers, as root:&lt;br /&gt;
 [root@scottt60 ~]# yum install kmod-fglrx.i686 xorg-x11-drv-fglrx&lt;br /&gt;
&lt;br /&gt;
While the driver installs, X fails to use direct Open GL rendering.  There are two things that need to be done to get the driver working.  First, we must disable effects by adding these lines to the bottom of /etc/X11/xorg.conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;ServerFlags&amp;quot;&lt;br /&gt;
        Option  &amp;quot;AIGLX&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Extensions&amp;quot;&lt;br /&gt;
        Option &amp;quot;Composite&amp;quot; &amp;quot;Disable&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, we need to add ATi's driver directory to dynamic linker (ld) search path and update the linker configuration:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@scottt60 ~]# echo &amp;quot;/usr/lib/ati-fglrx/&amp;quot; &amp;gt; /etc/ld.so.conf.d/ati-fglrx.conf&lt;br /&gt;
[root@scottt60 ~]# ldconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After ldconfig completes, restart X.  You can check if you've completed your installation correctly by running fglrxinfo.  Your output should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[scott@scottt60 ~]$ fglrxinfo &lt;br /&gt;
display: :0.0  screen: 0&lt;br /&gt;
OpenGL vendor string: ATI Technologies Inc.&lt;br /&gt;
OpenGL renderer string: ATI Mobility Radeon X1400 Generic&lt;br /&gt;
OpenGL version string: 2.0.6174 (8.31.5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Congratulations, your video configuration is complete.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, make it executable and add the script with chkconfig to be started on boot:&lt;br /&gt;
 &lt;br /&gt;
 # chmod 750 /etc/init.d/ipw3945d&lt;br /&gt;
 # chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Fedora]]&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=User:Scott&amp;diff=26496</id>
		<title>User:Scott</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=User:Scott&amp;diff=26496"/>
		<updated>2006-11-22T18:49:37Z</updated>

		<summary type="html">&lt;p&gt;Scott: /* My Thinkpad */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== My Thinkpad ==&lt;br /&gt;
&lt;br /&gt;
My current Thinkpad is a Lenovo [[:Category:T60 | T60]] 2623-D7U running [[:Category:Fedora | Fedora Core 6]].&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26495</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26495"/>
		<updated>2006-11-22T18:46:58Z</updated>

		<summary type="html">&lt;p&gt;Scott: Whitespace cleanup.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
As of 11/06, most things are working well.  There are still a few issues related to the proprietary ATi driver that still need to be ironed out.  Stay tuned for updates.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine. &lt;br /&gt;
* AFAIK livna does not support mixing its repository with other sources than Fedora Core and Fedora Extras, so try adding software just from one repo.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATi Video Driver (fglrx) ==&lt;br /&gt;
&lt;br /&gt;
Installing the fglrx driver is easy if you've enabled the Livna.org RPM repository as discribed earlier in this article.  Unfortunately, the proprietary ATi driver currently does not support desktop effects or composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
To install the drivers, as root:&lt;br /&gt;
 [root@scottt60 ~]# yum install kmod-fglrx.i686 xorg-x11-drv-fglrx&lt;br /&gt;
&lt;br /&gt;
While the driver installs, X fails to use direct Open GL rendering.  There are two things that need to be done to get the driver working.  First, we must disable effects by adding these lines to the bottom of /etc/X11/xorg.conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;ServerFlags&amp;quot;&lt;br /&gt;
        Option  &amp;quot;AIGLX&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Extensions&amp;quot;&lt;br /&gt;
        Option &amp;quot;Composite&amp;quot; &amp;quot;Disable&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, we need to add ATi's driver directory to dynamic linker (ld) search path and update the linker configuration:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@scottt60 ~]# echo &amp;quot;/usr/lib/ati-fglrx/&amp;quot; &amp;gt; /etc/ld.so.conf.d/ati-fglrx.conf&lt;br /&gt;
[root@scottt60 ~]# ldconfig&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After ldconfig completes, restart X.  You can check if you've completed your installation correctly by running fglrxinfo.  Your output should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[scott@scottt60 ~]$ fglrxinfo &lt;br /&gt;
display: :0.0  screen: 0&lt;br /&gt;
OpenGL vendor string: ATI Technologies Inc.&lt;br /&gt;
OpenGL renderer string: ATI Mobility Radeon X1400 Generic&lt;br /&gt;
OpenGL version string: 2.0.6174 (8.31.5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Congratulations, your video configuration is complete.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, make it executable and add the script with chkconfig to be started on boot:&lt;br /&gt;
 &lt;br /&gt;
 # chmod 750 /etc/init.d/ipw3945d&lt;br /&gt;
 # chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Fedora]]&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26494</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26494"/>
		<updated>2006-11-22T18:43:04Z</updated>

		<summary type="html">&lt;p&gt;Scott: Added fglrx configuration information.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
As of 11/06, most things are working well.  There are still a few issues related to the proprietary ATi driver that still need to be ironed out.  Stay tuned for updates.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine. &lt;br /&gt;
* AFAIK livna does not support mixing its repository with other sources than Fedora Core and Fedora Extras, so try adding software just from one repo.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATi Video Driver (fglrx) ==&lt;br /&gt;
&lt;br /&gt;
Installing the fglrx driver is easy if you've enabled the Livna.org RPM repository as discribed earlier in this article.  Unfortunately, the proprietary ATi driver currently does not support desktop effects or composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To install the drivers, as root:&lt;br /&gt;
 [root@scottt60 ~]# yum install kmod-fglrx.i686 xorg-x11-drv-fglrx&lt;br /&gt;
&lt;br /&gt;
While the driver installs, X fails to use direct Open GL rendering.  There are two things that need to be done to get the driver working.  First, we must disable effects by adding these lines to the bottom of /etc/X11/xorg.conf:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;ServerFlags&amp;quot;&lt;br /&gt;
        Option  &amp;quot;AIGLX&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Extensions&amp;quot;&lt;br /&gt;
        Option &amp;quot;Composite&amp;quot; &amp;quot;Disable&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, we need to add ATi's driver directory to dynamic linker (ld) search path and update the linker configuration:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[root@scottt60 ~]# echo &amp;quot;/usr/lib/ati-fglrx/&amp;quot; &amp;gt; /etc/ld.so.conf.d/ati-fglrx.conf&lt;br /&gt;
[root@scottt60 ~]# ldconfig&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After ldconfig completes, restart X.  You can check if you've completed your installation correctly by running fglrxinfo.  Your output should look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[scott@scottt60 ~]$ fglrxinfo &lt;br /&gt;
display: :0.0  screen: 0&lt;br /&gt;
OpenGL vendor string: ATI Technologies Inc.&lt;br /&gt;
OpenGL renderer string: ATI Mobility Radeon X1400 Generic&lt;br /&gt;
OpenGL version string: 2.0.6174 (8.31.5)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Congratulations, your video configuration is complete.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, make it executable and add the script with chkconfig to be started on boot:&lt;br /&gt;
 &lt;br /&gt;
 # chmod 750 /etc/init.d/ipw3945d&lt;br /&gt;
 # chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Fedora]]&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26245</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26245"/>
		<updated>2006-11-07T04:25:42Z</updated>

		<summary type="html">&lt;p&gt;Scott: /* Setting Up Additional Repositories */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
As of 11/06, most things are working well.  There are still a few issues related to the proprietary ATi driver that still need to be ironed out.  Stay tuned for updates.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATI Video Driver ==&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, make it executable and add the script with chkconfig to be started on boot:&lt;br /&gt;
 &lt;br /&gt;
 # chmod 750 /etc/init.d/ipw3945d&lt;br /&gt;
 # chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26244</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26244"/>
		<updated>2006-11-07T04:25:07Z</updated>

		<summary type="html">&lt;p&gt;Scott: added chmod to ipw init script.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
As of 11/06, most things are working well.  There are still a few issues related to the proprietary ATi driver that still need to be ironed out.  Stay tuned for updates.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATI Video Driver ==&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, make it executable and add the script with chkconfig to be started on boot:&lt;br /&gt;
 &lt;br /&gt;
 # chmod 750 /etc/init.d/ipw3945d&lt;br /&gt;
 # chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26243</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26243"/>
		<updated>2006-11-07T04:19:37Z</updated>

		<summary type="html">&lt;p&gt;Scott: Updated T60 version number.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (2623).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
As of 11/06, most things are working well.  There are still a few issues related to the proprietary ATi driver that still need to be ironed out.  Stay tuned for updates.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATI Video Driver ==&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, add the script with chkconfig to be started on boot:&lt;br /&gt;
&lt;br /&gt;
 chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T60&amp;diff=26242</id>
		<title>Installation instructions for the ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T60&amp;diff=26242"/>
		<updated>2006-11-07T04:18:55Z</updated>

		<summary type="html">&lt;p&gt;Scott: Added link to FC6 / T60 install.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Specific installation notes for the ThinkPad {{T60}}.&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific instructions==&lt;br /&gt;
&lt;br /&gt;
*{{Install|Ubuntu| 6.06 Flight 5|T60}}&lt;br /&gt;
*{{Install|Fedora| Core 6| T60}}&lt;br /&gt;
*{{Install|Fedora| Core 5| T60}}&lt;br /&gt;
*{{Install|Suse| 10.1| T60}}&lt;br /&gt;
* For Gentoo, there exists [[Installation_instructions_for_the_ThinkPad_T60p|installation instructions for T60p]], the sister model.&lt;br /&gt;
&lt;br /&gt;
== Compatibility ==&lt;br /&gt;
* [http://www.emperorlinux.com/mfgr/lenovo/toucan/?tab=details&amp;amp;id=358 Thinkpad T60] page on [http://www.emperorlinux.com emperorlinux.com] (compatibility review and custom kernel)&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26241</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26241"/>
		<updated>2006-11-07T04:17:01Z</updated>

		<summary type="html">&lt;p&gt;Scott: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
As of 11/06, most things are working well.  There are still a few issues related to the proprietary ATi driver that still need to be ironed out.  Stay tuned for updates.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATI Video Driver ==&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, add the script with chkconfig to be started on boot:&lt;br /&gt;
&lt;br /&gt;
 chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26240</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26240"/>
		<updated>2006-11-07T04:15:29Z</updated>

		<summary type="html">&lt;p&gt;Scott: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* ATi OpenGL Direct Rendering&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATI Video Driver ==&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, add the script with chkconfig to be started on boot:&lt;br /&gt;
&lt;br /&gt;
 chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26228</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26228"/>
		<updated>2006-11-06T18:39:34Z</updated>

		<summary type="html">&lt;p&gt;Scott: /* Works Out of the Box */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
; Dual Cores (SMP processing)&lt;br /&gt;
: As of Kernel 2.6.18, used in Fedora Core 6, there is no loger a single cpu and smp kernel image.  SMP is now configured on-the-fly.  FC6's kernel will automatically discover the T60's dual core cpu and bring up CPU0 and CPU1.&lt;br /&gt;
&lt;br /&gt;
; Wired Networking &lt;br /&gt;
: Kernel recognizes eth0 and correctly loads the e1000 driver.&lt;br /&gt;
&lt;br /&gt;
; Video at 1400x1050&lt;br /&gt;
: Fedora does not ship the proprietary ATi driver, as a reult the VESA driver is used.  Installation of the ATi fgrlx driver is described later in this article.&lt;br /&gt;
&lt;br /&gt;
; Touchpad / Mouse&lt;br /&gt;
&lt;br /&gt;
; Think-Light&lt;br /&gt;
&lt;br /&gt;
; Sound &lt;br /&gt;
: The first-boot sound test fails to play the test sound.  However, sound support is correctly configured and the snd-hda-intel driver is loaded at startup.&lt;br /&gt;
&lt;br /&gt;
; Suspend to RAM &lt;br /&gt;
: Works out of the box under Gnome.  Gnome power management intregrates with HAL (Linux's hardware abstraction layer) and DBUS, which correctly put this computer into a suspsend to RAM state and wake it up correctly.&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* 3d&lt;br /&gt;
* MP3 / MP4A Playback&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATI Video Driver ==&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, add the script with chkconfig to be started on boot:&lt;br /&gt;
&lt;br /&gt;
 chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26227</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26227"/>
		<updated>2006-11-06T18:32:34Z</updated>

		<summary type="html">&lt;p&gt;Scott: Added wireless networking.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
* Wired Networking on eth0 (e1000 driver)&lt;br /&gt;
* Video at 1400x1050 (VESA driver)&lt;br /&gt;
* Touchpad / Mouse&lt;br /&gt;
* Think-Light&lt;br /&gt;
* Sound (snd-hda-intel driver)&lt;br /&gt;
* Suspend to RAM under Gnome&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* 3d&lt;br /&gt;
* MP3 / MP4A Playback&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ATI Video Driver ==&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;br /&gt;
&lt;br /&gt;
== Wireless Networking ==&lt;br /&gt;
&lt;br /&gt;
To use the T60's built in wireless networking driver, you will need to install ipw3945 driver.  The AT-RPMs repository, mentioned earlier in this article, provides the necessary packages. As root:&lt;br /&gt;
&lt;br /&gt;
 # yum install ipw3945d ipw3945-ucode ipw3945-kmdl-2.6.18-1.2798.fc6.i686&lt;br /&gt;
&lt;br /&gt;
Once installed, you must add a startup script to have ipw3945d started at boot.  Create the following script in a file named /etc/init.d/ipw3945d&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#! /bin/bash&lt;br /&gt;
#&lt;br /&gt;
# ipw3490d      Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
# chkconfig: 2345 09 90&lt;br /&gt;
# description:  Load / unload Intel ipw3490 daemon&lt;br /&gt;
#&lt;br /&gt;
### BEGIN INIT INFO&lt;br /&gt;
# Provides: ipw3490d&lt;br /&gt;
### END INIT INFO&lt;br /&gt;
&lt;br /&gt;
# Source function library.&lt;br /&gt;
. /etc/init.d/functions&lt;br /&gt;
&lt;br /&gt;
if [ ! -f /etc/sysconfig/network ]; then&lt;br /&gt;
    exit 0&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
case &amp;quot;$1&amp;quot; in&lt;br /&gt;
  start)&lt;br /&gt;
        echo -n &amp;quot;Starting ipw3945d: &amp;quot;&lt;br /&gt;
        /sbin/ipw3945d &amp;gt; /dev/null 2&amp;gt;&amp;amp;1&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  stop)&lt;br /&gt;
        echo -n &amp;quot;Stopping ipw3945d: &amp;quot;&lt;br /&gt;
        killproc ipw3945d&lt;br /&gt;
        echo&lt;br /&gt;
        ;;&lt;br /&gt;
  status)&lt;br /&gt;
        status ipw3945d&lt;br /&gt;
        ;;&lt;br /&gt;
  restart)&lt;br /&gt;
        cd &amp;quot;$CWD&amp;quot;&lt;br /&gt;
        $0 stop&lt;br /&gt;
        $0 start&lt;br /&gt;
        ;;&lt;br /&gt;
  *)&lt;br /&gt;
        echo $&amp;quot;Usage: $0 {start|stop|restart|status}&amp;quot;&lt;br /&gt;
        exit 1&lt;br /&gt;
esac&lt;br /&gt;
&lt;br /&gt;
exit 0&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now, add the script with chkconfig to be started on boot:&lt;br /&gt;
&lt;br /&gt;
 chkconfig --add ipw3945d&lt;br /&gt;
&lt;br /&gt;
Make sure things are setup correctly by running chkconfig --list ipw345d.  Your output should look something like:&lt;br /&gt;
&lt;br /&gt;
 # chkconfig --list ipw3945d&lt;br /&gt;
 ipw3945d        0:off   1:off   2:on    3:on    4:on    5:on    6:off&lt;br /&gt;
&lt;br /&gt;
If everything looks okay, reboot.  Once restarted you should be able to run &amp;lt;code&amp;gt;ifconfig eth1&amp;lt;/code&amp;gt; and see information about your wireless card.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26226</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26226"/>
		<updated>2006-11-06T18:21:57Z</updated>

		<summary type="html">&lt;p&gt;Scott: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
* Wired Networking on eth0 (e1000 driver)&lt;br /&gt;
* Video at 1400x1050 (VESA driver)&lt;br /&gt;
* Touchpad / Mouse&lt;br /&gt;
* Think-Light&lt;br /&gt;
* Sound (snd-hda-intel driver)&lt;br /&gt;
* Suspend to RAM under Gnome&lt;br /&gt;
&lt;br /&gt;
== Requires Tweaking == &lt;br /&gt;
&lt;br /&gt;
* Wireless Networking (Requires ipw3945 driver)&lt;br /&gt;
* 3d&lt;br /&gt;
* MP3 / MP4A Playback&lt;br /&gt;
* Suspend to Disk / Hibernate&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your computer; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ATI Video Driver ===&lt;br /&gt;
&lt;br /&gt;
I still haven't gotten this working.  While the driver installs, X fails to use direct Open GL rendering.  There appears to be a problem with the fglrx driver not supporting composite rendering used be default in Fedora Core 6.&lt;br /&gt;
&lt;br /&gt;
Stay tuned for the fix once I get it working.&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26225</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26225"/>
		<updated>2006-11-06T18:15:09Z</updated>

		<summary type="html">&lt;p&gt;Scott: /* Getting Up to Date */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== First Boot ==&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
* Wired ethernet&lt;br /&gt;
* Video at 1400x1050(VESA driver)&lt;br /&gt;
* Touchpad / Mouse&lt;br /&gt;
* Think-light&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
Before completing installation, it's best to get up to date by running yum update as root or by using the new graphical updater, Pup, that ships with Fedora Core 6.  After all updates are installed, reboot before continuing the post-install tasks.&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your cpmuter; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ATI Video Driver ===&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26224</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26224"/>
		<updated>2006-11-06T18:12:28Z</updated>

		<summary type="html">&lt;p&gt;Scott: /* Replacing the Kernel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== First Boot ==&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
* Wired ethernet&lt;br /&gt;
* Video at 1400x1050(VESA driver)&lt;br /&gt;
* Touchpad / Mouse&lt;br /&gt;
* Think-light&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [[yum]] to do the kernel swap.&lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute: yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Fix your [[Grub]] configuration&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
On a minimal install, the only dependencies removed were gnome-session, compiz, gnome-volume-manager, and pcmciautils.  Getting things back on track required:&lt;br /&gt;
&lt;br /&gt;
 # yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
&lt;br /&gt;
After [Yum] completes, you will have to fix the boot loader or you will be unable to boot after a restart.&lt;br /&gt;
&lt;br /&gt;
Again as root, fire up your favorite text editor and add the following lines to your grub configuration (/boot/grub/grub.conf) just below the initial comments:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
title FC6 2.6.18-1.2798&lt;br /&gt;
        kernel /vmlinuz-2.6.18-1.2798.fc6 ro root=LABEL=/ rhgb quiet&lt;br /&gt;
        initrd /initrd-2.6.18-1.2798.fc6.img&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your cpmuter; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ATI Video Driver ===&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26202</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26202"/>
		<updated>2006-11-05T00:51:36Z</updated>

		<summary type="html">&lt;p&gt;Scott: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== First Boot ==&lt;br /&gt;
&lt;br /&gt;
== Works Out of the Box ==&lt;br /&gt;
&lt;br /&gt;
* Wired ethernet&lt;br /&gt;
* Video at 1400x1050(VESA driver)&lt;br /&gt;
* Touchpad / Mouse&lt;br /&gt;
* Think-light&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [yum] to do the kernel swap.  &lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute&lt;br /&gt;
 yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
A complete transaction log of what you may expect:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@scottt60 ~]# yum remove kernel&lt;br /&gt;
Loading &amp;quot;installonlyn&amp;quot; plugin&lt;br /&gt;
Setting up Remove Process&lt;br /&gt;
Resolving Dependencies&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package kernel.i586 0:2.6.18-1.2798.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
Setting up repositories&lt;br /&gt;
Reading repository metadata in from local files&lt;br /&gt;
--&amp;gt; Processing Dependency: kernel &amp;gt;= 2.6 for package: gnome-volume-manager&lt;br /&gt;
--&amp;gt; Processing Dependency: kernel &amp;gt;= 2.6.12-1.1411_FC5 for package: pcmciautils&lt;br /&gt;
--&amp;gt; Restarting Dependency Resolution with new changes.&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package pcmciautils.i386 0:014-5 set to be erased&lt;br /&gt;
---&amp;gt; Package gnome-volume-manager.i386 0:2.15.0-2.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
--&amp;gt; Processing Dependency: gnome-volume-manager for package: gnome-session&lt;br /&gt;
--&amp;gt; Restarting Dependency Resolution with new changes.&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package gnome-session.i386 0:2.16.0-3.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
--&amp;gt; Processing Dependency: gnome-session &amp;gt;= 2.15.90-2.fc6 for package: compiz&lt;br /&gt;
--&amp;gt; Restarting Dependency Resolution with new changes.&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package compiz.i386 0:0.0.13-0.32.20060817git.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
&lt;br /&gt;
Dependencies Resolved&lt;br /&gt;
&lt;br /&gt;
=============================================================================&lt;br /&gt;
 Package                 Arch       Version          Repository        Size &lt;br /&gt;
=============================================================================&lt;br /&gt;
Removing:&lt;br /&gt;
 kernel                  i586       2.6.18-1.2798.fc6  installed          43 M&lt;br /&gt;
Removing for dependencies:&lt;br /&gt;
 compiz                  i386       0.0.13-0.32.20060817git.fc6  installed         1.9 M&lt;br /&gt;
 gnome-session           i386       2.16.0-3.fc6     installed         1.3 M&lt;br /&gt;
 gnome-volume-manager    i386       2.15.0-2.fc6     installed         1.9 M&lt;br /&gt;
 pcmciautils             i386       014-5            installed          57 k&lt;br /&gt;
&lt;br /&gt;
Transaction Summary&lt;br /&gt;
=============================================================================&lt;br /&gt;
Install      0 Package(s)         &lt;br /&gt;
Update       0 Package(s)         &lt;br /&gt;
Remove       5 Package(s)         &lt;br /&gt;
&lt;br /&gt;
Is this ok [y/N]: y&lt;br /&gt;
Downloading Packages:&lt;br /&gt;
Running Transaction Test&lt;br /&gt;
Finished Transaction Test&lt;br /&gt;
Transaction Test Succeeded&lt;br /&gt;
Running Transaction&lt;br /&gt;
  Removing  : pcmciautils                  ######################### [1/5]&lt;br /&gt;
grubby fatal error: unable to find a suitable template&lt;br /&gt;
  Removing  : kernel                       ######################### [2/5]&lt;br /&gt;
  Removing  : gnome-session                ######################### [3/5]&lt;br /&gt;
  Removing  : compiz                       ######################### [4/5]&lt;br /&gt;
  Removing  : gnome-volume-manager         ######################### [5/5]&lt;br /&gt;
&lt;br /&gt;
Removed: kernel.i586 0:2.6.18-1.2798.fc6&lt;br /&gt;
Dependency Removed: compiz.i386 0:0.0.13-0.32.20060817git.fc6 gnome-session.i386 0:2.16.0-3.fc6 gnome-volume-manager.i386 0:2.15.0-2.fc6 pcmciautils.i386 0:014-5&lt;br /&gt;
Complete!&lt;br /&gt;
[root@scottt60 ~]# yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
Loading &amp;quot;installonlyn&amp;quot; plugin&lt;br /&gt;
Setting up Install Process&lt;br /&gt;
Setting up repositories&lt;br /&gt;
Reading repository metadata in from local files&lt;br /&gt;
Parsing package install arguments&lt;br /&gt;
Resolving Dependencies&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Downloading header for gnome-session to pack into transaction set.&lt;br /&gt;
gnome-session-2.16.0-3.fc 100% |=========================|  30 kB    00:00     &lt;br /&gt;
---&amp;gt; Package gnome-session.i386 0:2.16.0-3.fc6 set to be updated&lt;br /&gt;
---&amp;gt; Downloading header for pcmciautils to pack into transaction set.&lt;br /&gt;
pcmciautils-014-5.i386.rp 100% |=========================| 4.2 kB    00:00     &lt;br /&gt;
---&amp;gt; Package pcmciautils.i386 0:014-5 set to be updated&lt;br /&gt;
---&amp;gt; Downloading header for compiz to pack into transaction set.&lt;br /&gt;
compiz-0.0.13-0.32.200608 100% |=========================|  20 kB    00:01     &lt;br /&gt;
---&amp;gt; Package compiz.i386 0:0.0.13-0.32.20060817git.fc6 set to be updated&lt;br /&gt;
---&amp;gt; Downloading header for kernel to pack into transaction set.&lt;br /&gt;
kernel-2.6.18-1.2798.fc6. 100% |=========================| 206 kB    00:02     &lt;br /&gt;
---&amp;gt; Package kernel.i686 0:2.6.18-1.2798.fc6 set to be installed&lt;br /&gt;
---&amp;gt; Downloading header for gnome-volume-manager to pack into transaction set.&lt;br /&gt;
gnome-volume-manager-2.15 100% |=========================|  22 kB    00:00     &lt;br /&gt;
---&amp;gt; Package gnome-volume-manager.i386 0:2.15.0-2.fc6 set to be updated&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
&lt;br /&gt;
Dependencies Resolved&lt;br /&gt;
&lt;br /&gt;
=============================================================================&lt;br /&gt;
 Package                 Arch       Version          Repository        Size &lt;br /&gt;
=============================================================================&lt;br /&gt;
Installing:&lt;br /&gt;
 compiz                  i386       0.0.13-0.32.20060817git.fc6  core              426 k&lt;br /&gt;
 gnome-session           i386       2.16.0-3.fc6     core              408 k&lt;br /&gt;
 gnome-volume-manager    i386       2.15.0-2.fc6     core              403 k&lt;br /&gt;
 kernel                  i686       2.6.18-1.2798.fc6  core               16 M&lt;br /&gt;
 pcmciautils             i386       014-5            core               29 k&lt;br /&gt;
&lt;br /&gt;
Transaction Summary&lt;br /&gt;
=============================================================================&lt;br /&gt;
Install      5 Package(s)         &lt;br /&gt;
Update       0 Package(s)         &lt;br /&gt;
Remove       0 Package(s)         &lt;br /&gt;
&lt;br /&gt;
Total download size: 17 M&lt;br /&gt;
Is this ok [y/N]: y&lt;br /&gt;
Downloading Packages:&lt;br /&gt;
(1/5): gnome-session-2.16 100% |=========================| 408 kB    00:03     &lt;br /&gt;
(2/5): pcmciautils-014-5. 100% |=========================|  29 kB    00:00     &lt;br /&gt;
(3/5): compiz-0.0.13-0.32 100% |=========================| 426 kB    00:04     &lt;br /&gt;
(4/5): kernel-2.6.18-1.27 100% |=========================|  16 MB    03:13     &lt;br /&gt;
(5/5): gnome-volume-manag 100% |=========================| 403 kB    00:04     &lt;br /&gt;
Running Transaction Test&lt;br /&gt;
Finished Transaction Test&lt;br /&gt;
Transaction Test Succeeded&lt;br /&gt;
Running Transaction&lt;br /&gt;
  Installing: kernel                       ######################### [1/5] &lt;br /&gt;
grubby fatal error: unable to find a suitable template&lt;br /&gt;
  Installing: gnome-volume-manager         ######################### [2/5] &lt;br /&gt;
  Installing: gnome-session                ######################### [3/5] &lt;br /&gt;
  Installing: pcmciautils                  ######################### [4/5] &lt;br /&gt;
  Installing: compiz                       ######################### [5/5] &lt;br /&gt;
&lt;br /&gt;
Installed: compiz.i386 0:0.0.13-0.32.20060817git.fc6 gnome-session.i386 0:2.16.0-3.fc6 gnome-volume-manager.i386 0:2.15.0-2.fc6 kernel.i686 0:2.6.18-1.2798.fc6 pcmciautils.i386 0:014-5&lt;br /&gt;
Complete!&lt;br /&gt;
[root@scottt60 ~]#&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Setting Up Additional Repositories ===&lt;br /&gt;
&lt;br /&gt;
In order to get the ATI driver and the Intel Wireless working, you will need to add two repositories to your cpmuter; [http://rpm.livna.org/ Livna RPMs] and [http://atrpms.net/ AT-RPMs] repositories to your machine.&lt;br /&gt;
&lt;br /&gt;
; Enabling Livna's Repository &lt;br /&gt;
: As root,  rpm -ivh http://rpm.livna.org/livna-release-6.rpm .&lt;br /&gt;
&lt;br /&gt;
; Enabling AT-RPMs Repository&lt;br /&gt;
: As root, use your favorite editor to create /etc/yum.repos.d/atrpms.repo and type in;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[atrpms]&lt;br /&gt;
name=Fedora Core $releasever - $basearch - ATrpms&lt;br /&gt;
baseurl=http://dl.atrpms.net/fc$releasever-$basearch/atrpms/stable&lt;br /&gt;
gpgkey=http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
gpgcheck=1&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== ATI Video Driver ===&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26200</id>
		<title>Installing Fedora Core 6 on a ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Fedora_Core_6_on_a_ThinkPad_T60&amp;diff=26200"/>
		<updated>2006-11-05T00:20:31Z</updated>

		<summary type="html">&lt;p&gt;Scott: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
* Note: this page is a work in progress&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
Installation of Fedora Core 6 (Zod) on a Thinkpad T60 (xxxx).  The installation completes successfully but installs the i586 kernel instead of the required i686 kernel.  The wrong kernel is due to a [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 known bug] in the Anaconda installer.&lt;br /&gt;
&lt;br /&gt;
== First Boot ==&lt;br /&gt;
&lt;br /&gt;
== Post Install ==&lt;br /&gt;
&lt;br /&gt;
=== Getting Up to Date ===&lt;br /&gt;
&lt;br /&gt;
=== Replacing the Kernel ===&lt;br /&gt;
&lt;br /&gt;
As previously mentioned, the i586 kernel is installed on this machine instead of the i686 version.  The i686 version is required to install the ATI video drivers and Intel Wireless drivers required to get this machine 100% operational.&lt;br /&gt;
&lt;br /&gt;
Installing the new kernel can be done by various methods as documented on the [https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=211941 Red Hat Bugzilla bug].  However, the safest method is to use [yum] to do the kernel swap.  &lt;br /&gt;
&lt;br /&gt;
To swap kernels:&lt;br /&gt;
# Open up a terminal window are become root.&lt;br /&gt;
# Execute&lt;br /&gt;
 yum remove kernel&lt;br /&gt;
# Make note of any other packages that will be removed due to dependency issues.  The packages will have to be reinstalled in the next step.&lt;br /&gt;
# Install the kernel.i686 package and any other packages removed in the previous step.&lt;br /&gt;
# Reboot&lt;br /&gt;
&lt;br /&gt;
A complete transaction log of what you may expect:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[root@scottt60 ~]# yum remove kernel&lt;br /&gt;
Loading &amp;quot;installonlyn&amp;quot; plugin&lt;br /&gt;
Setting up Remove Process&lt;br /&gt;
Resolving Dependencies&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package kernel.i586 0:2.6.18-1.2798.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
Setting up repositories&lt;br /&gt;
Reading repository metadata in from local files&lt;br /&gt;
--&amp;gt; Processing Dependency: kernel &amp;gt;= 2.6 for package: gnome-volume-manager&lt;br /&gt;
--&amp;gt; Processing Dependency: kernel &amp;gt;= 2.6.12-1.1411_FC5 for package: pcmciautils&lt;br /&gt;
--&amp;gt; Restarting Dependency Resolution with new changes.&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package pcmciautils.i386 0:014-5 set to be erased&lt;br /&gt;
---&amp;gt; Package gnome-volume-manager.i386 0:2.15.0-2.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
--&amp;gt; Processing Dependency: gnome-volume-manager for package: gnome-session&lt;br /&gt;
--&amp;gt; Restarting Dependency Resolution with new changes.&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package gnome-session.i386 0:2.16.0-3.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
--&amp;gt; Processing Dependency: gnome-session &amp;gt;= 2.15.90-2.fc6 for package: compiz&lt;br /&gt;
--&amp;gt; Restarting Dependency Resolution with new changes.&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Package compiz.i386 0:0.0.13-0.32.20060817git.fc6 set to be erased&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
&lt;br /&gt;
Dependencies Resolved&lt;br /&gt;
&lt;br /&gt;
=============================================================================&lt;br /&gt;
 Package                 Arch       Version          Repository        Size &lt;br /&gt;
=============================================================================&lt;br /&gt;
Removing:&lt;br /&gt;
 kernel                  i586       2.6.18-1.2798.fc6  installed          43 M&lt;br /&gt;
Removing for dependencies:&lt;br /&gt;
 compiz                  i386       0.0.13-0.32.20060817git.fc6  installed         1.9 M&lt;br /&gt;
 gnome-session           i386       2.16.0-3.fc6     installed         1.3 M&lt;br /&gt;
 gnome-volume-manager    i386       2.15.0-2.fc6     installed         1.9 M&lt;br /&gt;
 pcmciautils             i386       014-5            installed          57 k&lt;br /&gt;
&lt;br /&gt;
Transaction Summary&lt;br /&gt;
=============================================================================&lt;br /&gt;
Install      0 Package(s)         &lt;br /&gt;
Update       0 Package(s)         &lt;br /&gt;
Remove       5 Package(s)         &lt;br /&gt;
&lt;br /&gt;
Is this ok [y/N]: y&lt;br /&gt;
Downloading Packages:&lt;br /&gt;
Running Transaction Test&lt;br /&gt;
Finished Transaction Test&lt;br /&gt;
Transaction Test Succeeded&lt;br /&gt;
Running Transaction&lt;br /&gt;
  Removing  : pcmciautils                  ######################### [1/5]&lt;br /&gt;
grubby fatal error: unable to find a suitable template&lt;br /&gt;
  Removing  : kernel                       ######################### [2/5]&lt;br /&gt;
  Removing  : gnome-session                ######################### [3/5]&lt;br /&gt;
  Removing  : compiz                       ######################### [4/5]&lt;br /&gt;
  Removing  : gnome-volume-manager         ######################### [5/5]&lt;br /&gt;
&lt;br /&gt;
Removed: kernel.i586 0:2.6.18-1.2798.fc6&lt;br /&gt;
Dependency Removed: compiz.i386 0:0.0.13-0.32.20060817git.fc6 gnome-session.i386 0:2.16.0-3.fc6 gnome-volume-manager.i386 0:2.15.0-2.fc6 pcmciautils.i386 0:014-5&lt;br /&gt;
Complete!&lt;br /&gt;
[root@scottt60 ~]# yum install kernel.i686 gnome-session compiz gnome-volume-manager pcmciautils&lt;br /&gt;
Loading &amp;quot;installonlyn&amp;quot; plugin&lt;br /&gt;
Setting up Install Process&lt;br /&gt;
Setting up repositories&lt;br /&gt;
Reading repository metadata in from local files&lt;br /&gt;
Parsing package install arguments&lt;br /&gt;
Resolving Dependencies&lt;br /&gt;
--&amp;gt; Populating transaction set with selected packages. Please wait.&lt;br /&gt;
---&amp;gt; Downloading header for gnome-session to pack into transaction set.&lt;br /&gt;
gnome-session-2.16.0-3.fc 100% |=========================|  30 kB    00:00     &lt;br /&gt;
---&amp;gt; Package gnome-session.i386 0:2.16.0-3.fc6 set to be updated&lt;br /&gt;
---&amp;gt; Downloading header for pcmciautils to pack into transaction set.&lt;br /&gt;
pcmciautils-014-5.i386.rp 100% |=========================| 4.2 kB    00:00     &lt;br /&gt;
---&amp;gt; Package pcmciautils.i386 0:014-5 set to be updated&lt;br /&gt;
---&amp;gt; Downloading header for compiz to pack into transaction set.&lt;br /&gt;
compiz-0.0.13-0.32.200608 100% |=========================|  20 kB    00:01     &lt;br /&gt;
---&amp;gt; Package compiz.i386 0:0.0.13-0.32.20060817git.fc6 set to be updated&lt;br /&gt;
---&amp;gt; Downloading header for kernel to pack into transaction set.&lt;br /&gt;
kernel-2.6.18-1.2798.fc6. 100% |=========================| 206 kB    00:02     &lt;br /&gt;
---&amp;gt; Package kernel.i686 0:2.6.18-1.2798.fc6 set to be installed&lt;br /&gt;
---&amp;gt; Downloading header for gnome-volume-manager to pack into transaction set.&lt;br /&gt;
gnome-volume-manager-2.15 100% |=========================|  22 kB    00:00     &lt;br /&gt;
---&amp;gt; Package gnome-volume-manager.i386 0:2.15.0-2.fc6 set to be updated&lt;br /&gt;
--&amp;gt; Running transaction check&lt;br /&gt;
&lt;br /&gt;
Dependencies Resolved&lt;br /&gt;
&lt;br /&gt;
=============================================================================&lt;br /&gt;
 Package                 Arch       Version          Repository        Size &lt;br /&gt;
=============================================================================&lt;br /&gt;
Installing:&lt;br /&gt;
 compiz                  i386       0.0.13-0.32.20060817git.fc6  core              426 k&lt;br /&gt;
 gnome-session           i386       2.16.0-3.fc6     core              408 k&lt;br /&gt;
 gnome-volume-manager    i386       2.15.0-2.fc6     core              403 k&lt;br /&gt;
 kernel                  i686       2.6.18-1.2798.fc6  core               16 M&lt;br /&gt;
 pcmciautils             i386       014-5            core               29 k&lt;br /&gt;
&lt;br /&gt;
Transaction Summary&lt;br /&gt;
=============================================================================&lt;br /&gt;
Install      5 Package(s)         &lt;br /&gt;
Update       0 Package(s)         &lt;br /&gt;
Remove       0 Package(s)         &lt;br /&gt;
&lt;br /&gt;
Total download size: 17 M&lt;br /&gt;
Is this ok [y/N]: y&lt;br /&gt;
Downloading Packages:&lt;br /&gt;
(1/5): gnome-session-2.16 100% |=========================| 408 kB    00:03     &lt;br /&gt;
(2/5): pcmciautils-014-5. 100% |=========================|  29 kB    00:00     &lt;br /&gt;
(3/5): compiz-0.0.13-0.32 100% |=========================| 426 kB    00:04     &lt;br /&gt;
(4/5): kernel-2.6.18-1.27 100% |=========================|  16 MB    03:13     &lt;br /&gt;
(5/5): gnome-volume-manag 100% |=========================| 403 kB    00:04     &lt;br /&gt;
Running Transaction Test&lt;br /&gt;
Finished Transaction Test&lt;br /&gt;
Transaction Test Succeeded&lt;br /&gt;
Running Transaction&lt;br /&gt;
  Installing: kernel                       ######################### [1/5] &lt;br /&gt;
grubby fatal error: unable to find a suitable template&lt;br /&gt;
  Installing: gnome-volume-manager         ######################### [2/5] &lt;br /&gt;
  Installing: gnome-session                ######################### [3/5] &lt;br /&gt;
  Installing: pcmciautils                  ######################### [4/5] &lt;br /&gt;
  Installing: compiz                       ######################### [5/5] &lt;br /&gt;
&lt;br /&gt;
Installed: compiz.i386 0:0.0.13-0.32.20060817git.fc6 gnome-session.i386 0:2.16.0-3.fc6 gnome-volume-manager.i386 0:2.15.0-2.fc6 kernel.i686 0:2.6.18-1.2798.fc6 pcmciautils.i386 0:014-5&lt;br /&gt;
Complete!&lt;br /&gt;
[root@scottt60 ~]#&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=User:Scott&amp;diff=24260</id>
		<title>User:Scott</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=User:Scott&amp;diff=24260"/>
		<updated>2006-08-17T22:16:40Z</updated>

		<summary type="html">&lt;p&gt;Scott: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== My Thinkpad ==&lt;br /&gt;
&lt;br /&gt;
My current Thinkpad is a Lenovo [[:Category:T60 | T60]] 2623-D7U running [[:Category:Fedora | Fedora Core 5]].&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T60&amp;diff=24259</id>
		<title>Installation instructions for the ThinkPad T60</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_T60&amp;diff=24259"/>
		<updated>2006-08-17T21:27:45Z</updated>

		<summary type="html">&lt;p&gt;Scott: Fixed link to Fedora distribution article.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Specific installation notes for the ThinkPad {{T60}}.&lt;br /&gt;
&lt;br /&gt;
==Distribution-specific instructions==&lt;br /&gt;
&lt;br /&gt;
*{{Install|Ubuntu| 6.06 Flight 5|T60}}&lt;br /&gt;
*{{Install|Fedora| Core 5| T60}}&lt;br /&gt;
*{{Install|Suse| 10.1| T60}}&lt;br /&gt;
== Compatibility ==&lt;br /&gt;
* [http://www.emperorlinux.com/mfgr/lenovo/toucan/?tab=details&amp;amp;id=358 Thinkpad T60] page on [http://www.emperorlinux.com emperorlinux.com] (compatibility review and custom kernel)&lt;/div&gt;</summary>
		<author><name>Scott</name></author>
		
	</entry>
</feed>