<?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=Iiegn</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=Iiegn"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Iiegn"/>
	<updated>2026-06-10T12:41:14Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_X24&amp;diff=32790</id>
		<title>Installation instructions for the ThinkPad X24</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installation_instructions_for_the_ThinkPad_X24&amp;diff=32790"/>
		<updated>2007-08-31T13:56:00Z</updated>

		<summary type="html">&lt;p&gt;Iiegn: /* Miscellaneous */ a solution to 'lost interrupt' problems with CF cards&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Specific installation notes for the ThinkPad {{X24}}.&lt;br /&gt;
&lt;br /&gt;
==General Notes==&lt;br /&gt;
If you don't have a CD-ROM solution, please look at [[Installation on ThinkPads without CD-ROM drive]].&lt;br /&gt;
&lt;br /&gt;
==Distro specific Instructions==&lt;br /&gt;
&lt;br /&gt;
===Debian 4.0 Etch===&lt;br /&gt;
====Miscellaneous====&lt;br /&gt;
Use a default depth of 16 in xorg.conf alongwith the radeon driver. The radeonfb patch will fix the [[problem with high power drain in ACPI sleep]]&lt;br /&gt;
&lt;br /&gt;
inserting a flash card into my X24 with kernel 2.6.22 (same result with 2.6.18-3,4,5) initially resulted in 'kernel: hde:&amp;lt;4&amp;gt;hde: lost interrupt' messages. changing interrupt settings of the serial, the IRDA and the parallel port in the BIOS solved the problem.&lt;br /&gt;
&lt;br /&gt;
===Ubuntu 7.04 - Feisty Fawn===&lt;br /&gt;
====Video Adapter====&lt;br /&gt;
By default Ubuntu sets the ''ati'' driver in xorg.conf. It is a wrapper which points (on the X24) to the ''radeon'' driver. You could simply displace ''ati'' by ''radeon''. If you want use ''desktop effects'' you have to lower the depth to 16. On depth 24 the video adapter does not provide ''direct rendering'', which is necessary for an acceptable animation performance.&lt;br /&gt;
====Wireless LAN Mini-PCI Adapter====&lt;br /&gt;
There are 3 drivers shipped with the standard kernel of Ubuntu: orinoco_pci (WEP), prism2_pci (WEP) and hostap_pci (WEP/WPA/WPA2). All 3 are active by default. Usually the orinoco driver should be used in a standard installation. With a blacklist you could activate/deactivate a special driver. You can provide a blacklist by creating a file in /etc/modprobe.d.&lt;br /&gt;
&lt;br /&gt;
=====orinoco=====&lt;br /&gt;
The recommended driver is the orinoco_pci. If you want use the orinoco driver you have to create a file in /etc/modprobe.d where you blacklist the other 2 drivers:&lt;br /&gt;
&lt;br /&gt;
/etc/modprobe.d/blacklist-wlan&lt;br /&gt;
   &lt;br /&gt;
   blacklist hostap&lt;br /&gt;
   blacklist hostap_pci&lt;br /&gt;
   blacklist prism2_pci&lt;br /&gt;
&lt;br /&gt;
=====hostap=====&lt;br /&gt;
If you want use WPA or WPA2 encryption with your wireless lan adapter you have to use the hostap driver. But be aware. (In combination with the network manager) You could have trouble with mounting/unmounting filesystems. The blacklist in /etc/modprobe.d should look like this:&lt;br /&gt;
&lt;br /&gt;
/etc/modprobe.d/blacklist-wlan&lt;br /&gt;
   &lt;br /&gt;
   blacklist hermes&lt;br /&gt;
   blacklist orinoco&lt;br /&gt;
   blacklist orinoco_pci&lt;br /&gt;
   blacklist prism2_pci&lt;br /&gt;
&lt;br /&gt;
If you have trouble to connect to an access point you should check the firmware version of your wireless adapter:&lt;br /&gt;
   &amp;gt; dmesg | grep wifi&lt;br /&gt;
   ...&lt;br /&gt;
   wifi0: NIC: id=0x8013 v1.0.0&lt;br /&gt;
   wifi0: PRI: id=0x15 v1.1.0&lt;br /&gt;
   wifi0: STA: id=0x1f v1.4.9&lt;br /&gt;
With some older versions the hostap driver have some stability issues. I use the combination of 1.1.1 and 1.7.4 which seems to be the most reasonable firmware versions:&lt;br /&gt;
   wifi0: NIC: id=0x8013 v1.0.0&lt;br /&gt;
   wifi0: PRI: id=0x15 v1.1.1&lt;br /&gt;
   wifi0: STA: id=0x1f v1.7.4&lt;br /&gt;
How to upgrade your firmware is explained on http://linux.junsun.net/intersil-prism/. Some firmware versions are hosted on http://www.netgate.com/support/prism_firmware.&lt;br /&gt;
&lt;br /&gt;
You will find a detail description of the 3 linux wlan drivers on: http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Linux.Wireless.drivers.802.11b.html&lt;br /&gt;
&lt;br /&gt;
====Standby or Suspend-to-Ram====&lt;br /&gt;
If you have trouble with you standby mode and you use the Network Manager, you should deactivate the Network Manager before entering the standby mode by adding the following file to /etc/acpi/suspend.d:&lt;br /&gt;
&lt;br /&gt;
/etc/acpi/suspend.d/05-network-manager.sh&lt;br /&gt;
   #!/bin/sh   &lt;br /&gt;
   dbus-send --system \&lt;br /&gt;
     --dest=org.freedesktop.NetworkManager \&lt;br /&gt;
     /org/freedesktop/NetworkManager \&lt;br /&gt;
     org.freedesktop.NetworkManager.sleep&lt;br /&gt;
&lt;br /&gt;
and resume:&lt;br /&gt;
&lt;br /&gt;
/etc/acpi/resume.d/91-network-manager.sh&lt;br /&gt;
   #!/bin/sh&lt;br /&gt;
   dbus-send --system \&lt;br /&gt;
     --dest=org.freedesktop.NetworkManager \&lt;br /&gt;
     /org/freedesktop/NetworkManager \&lt;br /&gt;
     org.freedesktop.NetworkManager.wake&lt;br /&gt;
&lt;br /&gt;
This seems to solve the problem.&lt;br /&gt;
(Found on: https://bugs.launchpad.net/ubuntu/feisty/+source/network-manager/+bug/40125)&lt;br /&gt;
&lt;br /&gt;
==External Sources==&lt;br /&gt;
*[http://vslavov.freeshell.org/ibmx24.html OpenBSD on a ThinkPad X24]&lt;br /&gt;
*[http://mythic-beasts.com/~mark/random/thinkpad-X24/ Debian on a ThinkPad X24]&lt;/div&gt;</summary>
		<author><name>Iiegn</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Intel_PRO/Wireless_2915ABG_Mini-PCI_Adapter&amp;diff=31347</id>
		<title>Intel PRO/Wireless 2915ABG Mini-PCI Adapter</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Intel_PRO/Wireless_2915ABG_Mini-PCI_Adapter&amp;diff=31347"/>
		<updated>2007-07-17T19:36:04Z</updated>

		<summary type="html">&lt;p&gt;Iiegn: /* ThinkPads this works in */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{| width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
&amp;lt;div style=&amp;quot;margin: 0; margin-right:10px; border: 1px solid #dfdfdf; padding: 0em 1em 1em 1em; background-color:#F8F8FF; align:right;&amp;quot;&amp;gt;&lt;br /&gt;
=== Intel PRO/Wireless 2915ABG Mini-PCI Adapter ===&lt;br /&gt;
This is a Mini-PCI WiFi Adapter that is installed in a Mini-PCI slot.&lt;br /&gt;
=== Features ===&lt;br /&gt;
* Chipset: Intel 2915&lt;br /&gt;
* IEEE Standards: 802.11a, 802.11b, 802.11g&lt;br /&gt;
* PCI ID: 8086:4224&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
[[image:mini-pci-wifi-card.gif|Mini-PCI WiFi Adapter]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
See the [http://support.intel.com/support/wireless/wlan/pro2915abg/ support page] and [ftp://download.intel.com/network/connectivity/resources/doc_library/tech_brief/303330.htm Product Overview] from Intel.&lt;br /&gt;
&lt;br /&gt;
=== IBM Partnumbers ===&lt;br /&gt;
IBM Order PN (US): 41N2990&amp;lt;br&amp;gt;&lt;br /&gt;
IBM Order PN (EU): 41N2991&amp;lt;br&amp;gt;&lt;br /&gt;
IBM FRU PN (US): 93P4235&amp;lt;br&amp;gt;&lt;br /&gt;
IBM FRU PN (US): 27K9936&amp;lt;br&amp;gt;&lt;br /&gt;
IBM FRU PN (EU): 93P4237&amp;lt;br&amp;gt;&lt;br /&gt;
IBM FRU PN (Japan): 93P4239&amp;lt;br&amp;gt;&lt;br /&gt;
IBM FRU PN (HB): 93P4241&amp;lt;br&amp;gt;&lt;br /&gt;
{{NOTE| Only the IBM Parts will work, any other parts will give an 1802 error on Post because the sub-vendor PCI ID is different, see [[Problem with unauthorized MiniPCI network card]] for more details}}&lt;br /&gt;
&lt;br /&gt;
=== Also known (in IBM literature) as.... ===&lt;br /&gt;
* ...&lt;br /&gt;
&lt;br /&gt;
=== Linux WiFi driver ===&lt;br /&gt;
This adapter works with the [[ipw2200]] driver.  Refer to the [[ipw2200|driver documentation]] for more information.&lt;br /&gt;
&lt;br /&gt;
=== OS/2 WiFi driver ===&lt;br /&gt;
Supported by [[GenMAC]] in version 2.0 and above.&lt;br /&gt;
&lt;br /&gt;
=== ThinkPads this card may be found in ===&lt;br /&gt;
* {{R52}}&lt;br /&gt;
* {{T42}}, {{T43}}, {{T43p}}&lt;br /&gt;
* {{X32}}&lt;br /&gt;
* {{X41}}, {{X41T}}&lt;br /&gt;
* {{Z60m}}&lt;br /&gt;
&lt;br /&gt;
=== ThinkPads this works in ===&lt;br /&gt;
* {{T40}} with bios version 2.00b (1RET68WW) and later&lt;br /&gt;
* {{X24}} need not be the original IBM part&lt;br /&gt;
&lt;br /&gt;
[[Category:Components]]&lt;/div&gt;</summary>
		<author><name>Iiegn</name></author>
		
	</entry>
</feed>