<?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=Jstrauss</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=Jstrauss"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Jstrauss"/>
	<updated>2026-05-11T08:49:36Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=27570</id>
		<title>Installing Kubuntu on a ThinkPad A30</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=27570"/>
		<updated>2007-01-08T01:57:57Z</updated>

		<summary type="html">&lt;p&gt;Jstrauss: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary =&lt;br /&gt;
I have a {{A30}} (2652-3CU) model.  I wanted to install {{Kubuntu}} upon it and get everything working, using the base install as much as possible.  That is I didn't want to install a bunch of extra software.  I just wanted an 'out of the box' configuration&lt;br /&gt;
&lt;br /&gt;
-updated 2007/01/07 jstrauss&lt;br /&gt;
&lt;br /&gt;
== Update System ==&lt;br /&gt;
&lt;br /&gt;
First things first, edit your /etc/apt/sources.list and uncomment the other sources and  get your system up to date&lt;br /&gt;
 &lt;br /&gt;
  # sudo apt-get update &lt;br /&gt;
  # sudo apt-get upgrade -y&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
&lt;br /&gt;
-2007/01/07 - When installing 6.06 of KUbuntu, wpasupplicant is already installed, but you still need&lt;br /&gt;
to install hostap-utils&lt;br /&gt;
&lt;br /&gt;
I wanted to use WPA encryption.  To get WPA you must use the wpasupplicant module.  In order to use the wpasupplicant module you must also use the hostap wireless driver.  Kubuntu comes with both the hostap and orinico wireless drivers installed by default.  But, you need to install the hostap-utils package because it does a couple of things for you (like blacklisting the orinico driver so it doesn't load on boot and adds another wireless interface).    &lt;br /&gt;
&lt;br /&gt;
  # sudo apt-get install wpasupplicant hostap_utils -y&lt;br /&gt;
  &lt;br /&gt;
=== Rename network interfaces ===&lt;br /&gt;
On my machine when I did the install, Kubuntu named the wired LAN eth1 and my wireless eth0.  eth0 is usually your wired interface and wlan0 is your wireless.   So edit the /etc/iftab file and rename eth1 to eth0 and eth0 to wlan1.  Afterwards mine looked like:&lt;br /&gt;
&lt;br /&gt;
  root@ubuntu:/# cat /etc/iftab &lt;br /&gt;
  # This file assigns persistent names to network interfaces.  See iftab(5).&lt;br /&gt;
  eth0 mac 00:d0:59:83:5f:d2&lt;br /&gt;
  wlan1 mac 00:20:e0:89:8f:e2&lt;br /&gt;
&lt;br /&gt;
=== Using knetworkmanager ===&lt;br /&gt;
- 2007/01/07 (Added this section) &lt;br /&gt;
&lt;br /&gt;
You can use knetworkmanager to manage your wireless configuration and skip all the next sections regarding networking.&lt;br /&gt;
&lt;br /&gt;
First install knetworkmanager&lt;br /&gt;
&lt;br /&gt;
  # aptitude install knetworkmanager&lt;br /&gt;
&lt;br /&gt;
start it up under K -&amp;gt; internet -&amp;gt; knetworkmanager&lt;br /&gt;
&lt;br /&gt;
Then you need to use the &amp;quot;other wireless networks&amp;quot; to configure.  For some reason, WPA is not presented in the dropdown if you just select the ESSID of your network&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Configure wpa_supplicant ===&lt;br /&gt;
&lt;br /&gt;
You need to add the information to connect to you wireless access point into the /etc/wpa_supplicant.conf file like:&lt;br /&gt;
&lt;br /&gt;
  # wpa_passphrase &amp;lt;ssid&amp;gt; &amp;lt;passphrase&amp;gt; &amp;gt;&amp;gt; /etc/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
in my case it looks like:&lt;br /&gt;
&lt;br /&gt;
  # wpa_passphrase StayOffChannelOne my_password &amp;gt;&amp;gt; /etc/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
=== Edit /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
Lastly, I you need to change your /etc/network/interfaces to include bringing up wpa_supplicant prior to ifuping wlan0, and change the old entry for eth1 to eth0.  Mine looks like:&lt;br /&gt;
&lt;br /&gt;
  root@ubuntu:/home/jstrauss# cat /etc/network/interfaces &lt;br /&gt;
  # This file describes the network interfaces available on your system&lt;br /&gt;
  # and how to activate them. For more information, see interfaces(5).&lt;br /&gt;
        &lt;br /&gt;
  # The loopback network interface&lt;br /&gt;
  auto lo wlan0&lt;br /&gt;
  iface lo inet loopback&lt;br /&gt;
      &lt;br /&gt;
  # This is a list of hotpluggable network interfaces.&lt;br /&gt;
  # They will be activated automatically by the hotplug subsystem.&lt;br /&gt;
  mapping hotplug&lt;br /&gt;
          script grep&lt;br /&gt;
          map eth0&lt;br /&gt;
   &lt;br /&gt;
  # The primary network interface&lt;br /&gt;
  #iface eth0 inet dhcp&lt;br /&gt;
     &lt;br /&gt;
  iface wlan0 inet dhcp&lt;br /&gt;
        pre-up wpa_supplicant -i wlan0 -D hostap -c /etc/wpa_supplicant.conf &amp;amp;&lt;br /&gt;
        post-down killall wpa_supplicant&lt;br /&gt;
&lt;br /&gt;
** Note ** you should be able to use the /etc/default/wpasupplicant to startup the wpa_supplicant, but I can't get it to work correctly&lt;br /&gt;
&lt;br /&gt;
== Kaffeine &amp;amp; Multimedia ==&lt;br /&gt;
&lt;br /&gt;
By default kaffeine uses the gstreamer engine.  Install the kaffeine-xine engine:&lt;br /&gt;
&lt;br /&gt;
  # apt-get install kaffeine-xine&lt;br /&gt;
&lt;br /&gt;
Then launch kaffeine and change the engine by:&lt;br /&gt;
&lt;br /&gt;
  Settings -&amp;gt; Player Engine -&amp;gt; kaffeine&lt;/div&gt;</summary>
		<author><name>Jstrauss</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12470</id>
		<title>Installing Kubuntu on a ThinkPad A30</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12470"/>
		<updated>2005-11-20T22:17:52Z</updated>

		<summary type="html">&lt;p&gt;Jstrauss: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary =&lt;br /&gt;
I have a A30 (2652-3CU) model.  I wanted to install Kubuntu upon it and get everything working, using the base install as much as possible.  That is I didn't want to install a bunch of extra software.  I just wanted an 'out of the box' configuration&lt;br /&gt;
&lt;br /&gt;
== Update System ==&lt;br /&gt;
&lt;br /&gt;
First things first, edit your /etc/apt/sources.list and uncomment the other sources and  get your system up to date&lt;br /&gt;
 &lt;br /&gt;
  # sudo apt-get update &lt;br /&gt;
  # sudo apt-get upgrade -y&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
&lt;br /&gt;
I wanted to use WPA encryption.  To get WPA you must use the wpasupplicant module.  In order to use the wpasupplicant module you must also use the hostap wireless driver.  Kubuntu comes with both the hostap and orinico wireless drivers installed by default.  But, you need to install the hostap-utils package because it does a couple of things for you (like blacklisting the orinico driver so it doesn't load on boot and adds another wireless interface).    &lt;br /&gt;
&lt;br /&gt;
  # sudo apt-get install wpasupplicant hostap_utils -y&lt;br /&gt;
  &lt;br /&gt;
=== Rename network interfaces ===&lt;br /&gt;
On my machine when I did the install, Kubuntu named the wired LAN eth1 and my wireless eth0.  eth0 is usually your wired interface and wlan0 is your wireless.   So edit the /etc/iftab file and rename eth1 to eth0 and eth0 to wlan1.  Afterwards mine looked like:&lt;br /&gt;
&lt;br /&gt;
  root@ubuntu:/# cat /etc/iftab &lt;br /&gt;
  # This file assigns persistent names to network interfaces.  See iftab(5).&lt;br /&gt;
  eth0 mac 00:d0:59:83:5f:d2&lt;br /&gt;
  wlan1 mac 00:20:e0:89:8f:e2&lt;br /&gt;
&lt;br /&gt;
=== Configure wpa_supplicant ===&lt;br /&gt;
&lt;br /&gt;
You need to add the information to connect to you wireless access point into the /etc/wpa_supplicant.conf file like:&lt;br /&gt;
&lt;br /&gt;
  # wpa_passphrase &amp;lt;ssid&amp;gt; &amp;lt;passphrase&amp;gt; &amp;gt;&amp;gt; /etc/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
in my case it looks like:&lt;br /&gt;
&lt;br /&gt;
  # wpa_passphrase StayOffChannelOne my_password &amp;gt;&amp;gt; &amp;gt;&amp;gt; /etc/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
=== Edit /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
Lastly, I you need to change your /etc/network/interfaces to include bringing up wpa_supplicant prior to ifuping wlan0, and change the old entry for eth1 to eth0.  Mine looks like:&lt;br /&gt;
&lt;br /&gt;
  root@ubuntu:/home/jstrauss# cat /etc/network/interfaces &lt;br /&gt;
  # This file describes the network interfaces available on your system&lt;br /&gt;
  # and how to activate them. For more information, see interfaces(5).&lt;br /&gt;
        &lt;br /&gt;
  # The loopback network interface&lt;br /&gt;
  auto lo wlan0&lt;br /&gt;
  iface lo inet loopback&lt;br /&gt;
      &lt;br /&gt;
  # This is a list of hotpluggable network interfaces.&lt;br /&gt;
  # They will be activated automatically by the hotplug subsystem.&lt;br /&gt;
  mapping hotplug&lt;br /&gt;
          script grep&lt;br /&gt;
          map eth0&lt;br /&gt;
   &lt;br /&gt;
  # The primary network interface&lt;br /&gt;
  #iface eth0 inet dhcp&lt;br /&gt;
     &lt;br /&gt;
  iface wlan0 inet dhcp&lt;br /&gt;
        pre-up wpa_supplicant -i wlan0 -D hostap -c /etc/wpa_supplicant.conf &amp;amp;&lt;br /&gt;
        post-down killall wpa_supplicant&lt;br /&gt;
&lt;br /&gt;
** Note ** you should be able to use the /etc/default/wpasupplicant to startup the wpa_supplicant, but I can't get it to work correctly&lt;br /&gt;
&lt;br /&gt;
== Kaffeine &amp;amp; Multimedia ==&lt;br /&gt;
&lt;br /&gt;
By default kaffeine uses the gstreamer engine.  Install the kaffeine-xine engine:&lt;br /&gt;
&lt;br /&gt;
  # apt-get install kaffeine-xine&lt;br /&gt;
&lt;br /&gt;
Then launch kaffeine and change the engine by:&lt;br /&gt;
&lt;br /&gt;
  Settings -&amp;gt; Player Engine -&amp;gt; kaffeine&lt;/div&gt;</summary>
		<author><name>Jstrauss</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12467</id>
		<title>Installing Kubuntu on a ThinkPad A30</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12467"/>
		<updated>2005-11-20T22:10:34Z</updated>

		<summary type="html">&lt;p&gt;Jstrauss: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary =&lt;br /&gt;
I have a A30 (2652-3CU) model.  I wanted to install Kubuntu upon it and get everything working, using the base install as much as possible.  That is I didn't want to install a bunch of extra software.  I just wanted an 'out of the box' configuration&lt;br /&gt;
&lt;br /&gt;
== Update System ==&lt;br /&gt;
&lt;br /&gt;
First things first, edit your /etc/apt/sources.list and uncomment the other sources and  get your system up to date&lt;br /&gt;
 &lt;br /&gt;
  # sudo apt-get update &lt;br /&gt;
  # sudo apt-get upgrade -y&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
&lt;br /&gt;
I wanted to use WPA encryption.  To get WPA you must use the wpasupplicant module.  In order to use the wpasupplicant module you must also use the hostap wireless driver.  Kubuntu comes with both the hostap and orinico wireless drivers installed by default.  But, you need to install the hostap-utils package because it does a couple of things for you (like blacklisting the orinico driver so it doesn't load on boot and adds another wireless interface).    &lt;br /&gt;
&lt;br /&gt;
  # sudo apt-get install wpasupplicant hostap_utils -y&lt;br /&gt;
  &lt;br /&gt;
=== Rename network interfaces ===&lt;br /&gt;
On my machine when I did the install, Kubuntu named the wired LAN eth1 and my wireless eth0.  eth0 is usually your wired interface and wlan0 is your wireless.   So edit the /etc/iftab file and rename eth1 to eth0 and eth0 to wlan1.  Afterwards mine looked like:&lt;br /&gt;
&lt;br /&gt;
  root@ubuntu:/# cat /etc/iftab &lt;br /&gt;
  # This file assigns persistent names to network interfaces.  See iftab(5).&lt;br /&gt;
  eth0 mac 00:d0:59:83:5f:d2&lt;br /&gt;
  wlan1 mac 00:20:e0:89:8f:e2&lt;br /&gt;
&lt;br /&gt;
=== Configure wpa_supplicant ===&lt;br /&gt;
&lt;br /&gt;
You need to add the information to connect to you wireless access point into the /etc/wpa_supplicant.conf file like:&lt;br /&gt;
&lt;br /&gt;
  # wpa_passphrase &amp;lt;ssid&amp;gt; &amp;lt;passphrase&amp;gt; &amp;gt;&amp;gt; /etc/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
in my case it looks like:&lt;br /&gt;
&lt;br /&gt;
  # wpa_passphrase StayOffChannelOne my_password &amp;gt;&amp;gt; &amp;gt;&amp;gt; /etc/wpa_supplicant.conf&lt;br /&gt;
&lt;br /&gt;
=== Edit /etc/network/interfaces ===&lt;br /&gt;
&lt;br /&gt;
Lastly, I you need to change your /etc/network/interfaces to include bringing up wpa_supplicant prior to ifuping wlan0, and change the old entry for eth1 to eth0.  Mine looks like:&lt;br /&gt;
&lt;br /&gt;
  root@ubuntu:/home/jstrauss# cat /etc/network/interfaces &lt;br /&gt;
  # This file describes the network interfaces available on your system&lt;br /&gt;
  # and how to activate them. For more information, see interfaces(5).&lt;br /&gt;
        &lt;br /&gt;
  # The loopback network interface&lt;br /&gt;
  auto lo wlan0&lt;br /&gt;
  iface lo inet loopback&lt;br /&gt;
      &lt;br /&gt;
  # This is a list of hotpluggable network interfaces.&lt;br /&gt;
  # They will be activated automatically by the hotplug subsystem.&lt;br /&gt;
  mapping hotplug&lt;br /&gt;
          script grep&lt;br /&gt;
          map eth0&lt;br /&gt;
   &lt;br /&gt;
  # The primary network interface&lt;br /&gt;
  #iface eth0 inet dhcp&lt;br /&gt;
     &lt;br /&gt;
  iface wlan0 inet dhcp&lt;br /&gt;
        pre-up wpa_supplicant -i wlan0 -D hostap -c /etc/wpa_supplicant.conf &amp;amp;&lt;br /&gt;
        post-down killall wpa_supplicant&lt;br /&gt;
&lt;br /&gt;
** Note ** you should be able to use the /etc/default/wpasupplicant to startup the wpa_supplicant, but I can't get it to work.&lt;/div&gt;</summary>
		<author><name>Jstrauss</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12466</id>
		<title>Installing Kubuntu on a ThinkPad A30</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12466"/>
		<updated>2005-11-20T21:21:52Z</updated>

		<summary type="html">&lt;p&gt;Jstrauss: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary =&lt;br /&gt;
I have a A30 (2652-3CU) model.  I wanted to install Kubuntu upon it and get everything working, using the base install as much as possible.  That is I didn't want to install a bunch of extra software.  I just wanted an 'out of the box' configuration&lt;br /&gt;
&lt;br /&gt;
== Update System ==&lt;br /&gt;
&lt;br /&gt;
First things first, edit your /etc/apt/sources.list and uncomment the other sources and  get your system up to date&lt;br /&gt;
 &lt;br /&gt;
  # sudo apt-get update &lt;br /&gt;
  # sudo apt-get upgrade -y&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
&lt;br /&gt;
I wanted to use WPA encryption.  To get WPA you must use the wpasupplicant module.  In order to use the wpasupplicant module you must also use the hostap wireless driver.  Kubuntu comes with both the hostap and orinico wireless drivers installed by default.  But, you need to install the hostap-utils package because it does a couple of things for you (like blacklisting the orinico driver so it doesn't load on boot and adds another wireless interface).    &lt;br /&gt;
&lt;br /&gt;
  # sudo apt-get install wpasupplicant hostap_utils -y&lt;br /&gt;
  &lt;br /&gt;
On my machine when I did the install, Kubuntu named the wired LAN eth1 and my wireless eth0.  eth0 is usually your wired interface and wlan0 is your wireless.   So edit the /etc/iftab file and rename eth1 to eth0 and eth0 to wlan1.  Afterwards mine looked like:&lt;br /&gt;
&lt;br /&gt;
  root@ubuntu:/# cat /etc/iftab &lt;br /&gt;
  # This file assigns persistent names to network interfaces.  See iftab(5).&lt;br /&gt;
  eth0 mac 00:d0:59:83:5f:d2&lt;br /&gt;
  wlan1 mac 00:20:e0:89:8f:e2&lt;/div&gt;</summary>
		<author><name>Jstrauss</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12462</id>
		<title>Installing Kubuntu on a ThinkPad A30</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=12462"/>
		<updated>2005-11-20T19:27:28Z</updated>

		<summary type="html">&lt;p&gt;Jstrauss: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Summary =&lt;br /&gt;
I have a A30 (2652-3CU) model.  I wanted to install Kubuntu upon it and get everything working, using the base install as much as possible.  That is I didn't want to install a bunch of extra software.  I just wanted an 'out of the box' configuration&lt;br /&gt;
&lt;br /&gt;
== Update System ==&lt;br /&gt;
&lt;br /&gt;
First things first, edit your /etc/apt/sources.list and uncomment the other sources and  get your system up to date&lt;br /&gt;
 &lt;br /&gt;
  $ sudo apt-get update &lt;br /&gt;
  $ sudo apt-get upgrade -y&lt;br /&gt;
&lt;br /&gt;
== Wireless LAN ==&lt;br /&gt;
&lt;br /&gt;
I wanted to use WPA encryption.  To get WPA you must use the wpasupplicant module.  In order to use the wpasupplicant module you must also use the hostap wireless driver (Kubuntu comes with the orinico wireless driver installed by default).  &lt;br /&gt;
&lt;br /&gt;
  $ sudo apt-get install wpasupplicant hostap_utils -y&lt;br /&gt;
  &lt;br /&gt;
On my machine when I did the install Kubuntu named the wired LAN eth1 and my wireless eth0 which I didn't like &lt;br /&gt;
&lt;br /&gt;
Unfortunately wpasupplicant doesn't work with the orinico driver.  Fortunantely the hostap driver The orinico driver does not support WPA.  To use WPA I needed to install the hostap driver and wpa_suppplicant&lt;/div&gt;</summary>
		<author><name>Jstrauss</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Category:A30&amp;diff=12915</id>
		<title>Category:A30</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Category:A30&amp;diff=12915"/>
		<updated>2005-11-17T14:16:23Z</updated>

		<summary type="html">&lt;p&gt;Jstrauss: /* ThinkPad A30 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&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;
=== ThinkPad A30 ===&lt;br /&gt;
This pages gives an overview of all ThinkPad A30 related topics.&lt;br /&gt;
&lt;br /&gt;
For installation instructions for various linux distributions see http://www.thinkwiki.org/wiki/Category:Distributions&lt;br /&gt;
&lt;br /&gt;
==== Standard Features ====&lt;br /&gt;
* [[Intel Mobile Pentium III-M]] 933 MHz, 1.0 or 1.13 GHz CPU&lt;br /&gt;
* [[ATI Mobility Radeon 7000]] with 16MB&lt;br /&gt;
** 14.1&amp;quot; TFT display with 1024x768 resolution&lt;br /&gt;
** 15.0&amp;quot; TFT display with 1024x768 resolution&lt;br /&gt;
** 15.0&amp;quot; TFT display with 1400x1050 resolution&lt;br /&gt;
* 128 or 256MB memory standard&lt;br /&gt;
* 20 or 30GB HDD&lt;br /&gt;
* [[CS4299]] AC'97 Audio controller&lt;br /&gt;
* [[UltraBay|UltraBay 2000]] (left side) with one of the following:&lt;br /&gt;
** none (empty)&lt;br /&gt;
** Diskette drive&lt;br /&gt;
* [[UltraBay|UltraBay Plus]] (right side) with one of the following:&lt;br /&gt;
** CD-ROM drive&lt;br /&gt;
** DVD-ROM drive&lt;br /&gt;
* [[CDC slot]] 1 with one of the following:&lt;br /&gt;
** none (empty)&lt;br /&gt;
** [[Ethernet Daughter Card (EDC)]]&lt;br /&gt;
* [[CDC slot]] 2 with one of the following:&lt;br /&gt;
** none (empty)&lt;br /&gt;
** [[Modem Daughter Card (MDC)]]&lt;br /&gt;
* [[MiniPCI slot]] with one of the following:&lt;br /&gt;
** none (empty)&lt;br /&gt;
** [[IBM High Rate Wireless LAN Mini-PCI Adapter with Modem]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
|style=&amp;quot;vertical-align:top&amp;quot; |&lt;br /&gt;
[[image:ThinkPadA30.jpg|ThinkPad A30]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* [ftp://ftp.software.ibm.com/pc/pccbbs/mobiles_pdf/92p1902.pdf ThinkPad A30/p, A31/p Hardware Maintenance Manual (September 2003)] (3,354,819 Bytes)&lt;br /&gt;
[[Category:Models]]&lt;/div&gt;</summary>
		<author><name>Jstrauss</name></author>
		
	</entry>
</feed>