<?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=Aurora</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=Aurora"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Aurora"/>
	<updated>2026-05-05T08:17:15Z</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=39107</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=39107"/>
		<updated>2008-10-14T23:46:52Z</updated>

		<summary type="html">&lt;p&gt;Aurora: /* Wireless LAN */&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>Aurora</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=39106</id>
		<title>Talk:Installing Kubuntu on a ThinkPad A30</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Talk:Installing_Kubuntu_on_a_ThinkPad_A30&amp;diff=39106"/>
		<updated>2008-10-14T23:31:41Z</updated>

		<summary type="html">&lt;p&gt;Aurora: New section: Bug not adressed in instructions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please make it read more like instructions, and less personal.&lt;br /&gt;
&lt;br /&gt;
I have moved the page so it has the proper title like other such pages, and linked it back to the A30 page so people can find it easily.&lt;br /&gt;
&lt;br /&gt;
If you want you can also create a general {{Kubuntu}} page, if you feel so inclined, just have a look at some of the other Distro specific pages first such as {{Debian}}&lt;br /&gt;
&lt;br /&gt;
--[[User:Tonko|Tonko]] 04:10, 21 Nov 2005 (CET)&lt;br /&gt;
&lt;br /&gt;
= wpasupplicant note seems wrong =&lt;br /&gt;
&lt;br /&gt;
I've set wpasupplicant up on Debian and Ubuntu [http://www.vollink.com/gary/deb_wifi.html See My Page On This] and have never needed to install the hostap (Access Point) package drivers to get wpasupplicant to function for client purposes.  Could somebody have a look to see if this is really a requirement under Kubuntu.&lt;br /&gt;
&lt;br /&gt;
-- Gary Vollink 16:41, 12 Jan 2006 (CST - US/Chicago)&lt;br /&gt;
&lt;br /&gt;
== Bug not adressed in instructions ==&lt;br /&gt;
&lt;br /&gt;
There seems to be a bug in the kubuntu installation regarding the A30 Thinkpad that is not adressed in this instruction manual. When selecting to suspend to RAM, the system really suspends (amazingly), but the screen goes all whacky - strange colors appearing and the screen light stays on (so its not really suspended). That way, there is no sense in suspending, since the display will eat the batteries. Is there a solution to this and if there is, could you please add it to the instrucions? --[[User:Aurora|Aurora]] 01:31, 15 October 2008 (CEST)&lt;/div&gt;</summary>
		<author><name>Aurora</name></author>
		
	</entry>
</feed>