<?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=Psychomog</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=Psychomog"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Psychomog"/>
	<updated>2026-06-10T02:15:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=User:Psychomog&amp;diff=37559</id>
		<title>User:Psychomog</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=User:Psychomog&amp;diff=37559"/>
		<updated>2008-05-04T00:22:43Z</updated>

		<summary type="html">&lt;p&gt;Psychomog: â†Created page with 'T43P running Feisty'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;T43P running Feisty&lt;/div&gt;</summary>
		<author><name>Psychomog</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T43p&amp;diff=37558</id>
		<title>Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T43p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T43p&amp;diff=37558"/>
		<updated>2008-05-04T00:22:21Z</updated>

		<summary type="html">&lt;p&gt;Psychomog: /* Power Management */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''I did this installation some time ago, but I am still trying out some new things from time to time. The report is not complete yet. If you also have experiences with Ubuntu 7.04 on the T43p, feel free to share them here.'' --[[User:Zeno Gantner|zeno]] 13:17, 7 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
I used the complete hard disk to install Ubuntu, so I just overwrote the Windows XP and the recovery partition.&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Connectivity ==&lt;br /&gt;
=== Ethernet ===&lt;br /&gt;
Works out of the box.&lt;br /&gt;
=== WLAN ===&lt;br /&gt;
The hardware was autmatically recognized.&lt;br /&gt;
&lt;br /&gt;
==== No Encryption/WEP ====&lt;br /&gt;
Open wireless networks work out of the box using the Network Manager applet.&lt;br /&gt;
I did not try WEP.&lt;br /&gt;
&lt;br /&gt;
'''Hint:'''&lt;br /&gt;
Do not set up your wireless home network using no encryption/authentication.&lt;br /&gt;
Also do not use WEP for your wireless network. Using the right tools, the keys may be found out in a few minutes.&lt;br /&gt;
So it is basically equivalent to no encryption.&lt;br /&gt;
&lt;br /&gt;
==== WPA ====&lt;br /&gt;
WPA1 and WPA2 access can be configured using the Network Manager applet.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can manually configure the access, following the instructions in the Ubuntu Forums: [http://ubuntuforums.org/showthread.php?t=318539].&lt;br /&gt;
For me, the following configurations worked ...&lt;br /&gt;
&lt;br /&gt;
Part of &amp;lt;tt&amp;gt;/etc/network/interfaces&amp;lt;/tt&amp;gt; for WPA1 with SSID broadcast:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet dhcp&lt;br /&gt;
  wpa-driver wext&lt;br /&gt;
  # driver, &amp;quot;wext&amp;quot; = Linux wireless extensions (generic WLAN driver)&lt;br /&gt;
  wpa-ssid &amp;lt;SSID&amp;gt;&lt;br /&gt;
  # SSID&lt;br /&gt;
  wpa-ap-scan 1&lt;br /&gt;
  # &amp;quot;1&amp;quot; = broadcast of SSID, &amp;quot;2&amp;quot; = hidden broadcast&lt;br /&gt;
  wpa-proto WPA&lt;br /&gt;
  # &amp;quot;WPA&amp;quot; = WPA1, &amp;quot;RSN&amp;quot; = WPA2&lt;br /&gt;
  wpa-pairwise TKIP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-group TKIP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-key-mgmt WPA-PSK&lt;br /&gt;
  # &amp;quot;WPA-PSK&amp;quot; = pre-shared key (usual in home networks), &amp;quot;WPA-EAP&amp;quot; = enterprise authentication server (e.g. RADIUS)&lt;br /&gt;
  wpa-psk &amp;lt;KEY&amp;gt;&lt;br /&gt;
  # use the following command to produce &amp;lt;KEY&amp;gt;:   wpa_passphrase 'SSID' 'PASSPHRASE'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You just need to insert your values for &amp;lt;SSID&amp;gt; and &amp;lt;KEY&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Part of &amp;lt;tt&amp;gt;/etc/network/interfaces&amp;lt;/tt&amp;gt; for WPA2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet dhcp&lt;br /&gt;
  wpa-driver wext&lt;br /&gt;
  # driver, &amp;quot;wext&amp;quot; = Linux wireless extensions (generic WLAN driver)&lt;br /&gt;
  wpa-ssid &amp;lt;SSID&amp;gt;&lt;br /&gt;
  # SSID&lt;br /&gt;
  wpa-ap-scan 2&lt;br /&gt;
  # &amp;quot;1&amp;quot; = broadcast of SSID, &amp;quot;2&amp;quot; = hidden broadcast&lt;br /&gt;
  wpa-proto RSN&lt;br /&gt;
  # &amp;quot;WPA&amp;quot; = WPA1, &amp;quot;RSN&amp;quot; = WPA2&lt;br /&gt;
  wpa-pairwise CCMP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-group CCMP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-key-mgmt WPA-PSK&lt;br /&gt;
  # &amp;quot;WPA-PSK&amp;quot; = pre-shared key (usual in home networks), &amp;quot;WPA-EAP&amp;quot; = enterprise authentication server (e.g. RADIUS)&lt;br /&gt;
  wpa-psk &amp;lt;KEY&amp;gt;&lt;br /&gt;
  # use the following command to produce &amp;lt;KEY&amp;gt;:   wpa_passphrase 'SSID' 'PASSPHRASE'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Have a look at the [http://ubuntuforums.org/showthread.php?t=318539 examples in the forum] for more options.&lt;br /&gt;
&lt;br /&gt;
Note: I will try it again with the Network Manager applet, because I got it to work on another computer...&lt;br /&gt;
&lt;br /&gt;
=== Modem ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
=== Bluetooth ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
=== IrDA ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
&lt;br /&gt;
== DVD ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Works out of the box. I haven't tried the microphone yet.&lt;br /&gt;
&lt;br /&gt;
== Power Management ==&lt;br /&gt;
&lt;br /&gt;
-- the following was added by [[User:psychomog]]&lt;br /&gt;
&lt;br /&gt;
Suspend to RAM (suspend on the Gnome logout menu) worked out of the box&lt;br /&gt;
&lt;br /&gt;
Suspend to disk did not work out of the box, and had to install uswsusp as per the instructions here:&lt;br /&gt;
&lt;br /&gt;
http://blog.paulbetts.org/index.php/2007/02/11/fixing-software-suspend-hibernate-with-uswsusp-in-ubuntu-feisty-and-edgy/&lt;br /&gt;
&lt;br /&gt;
There are also possible issues with swap partition becoming corrupted when upgrading from Edgy to Feisty (which is how I installed Feisty). Basically the UUID of my swap partition in /etc/fstab was not the same as that given by vol_id [my swap partition]&lt;br /&gt;
&lt;br /&gt;
To fix this:&lt;br /&gt;
&lt;br /&gt;
https://launchpad.net/ubuntu/+bug/66637/comments/23&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
=== Special Keys ===&lt;br /&gt;
The volume control keys worked out of the box.&lt;br /&gt;
&lt;br /&gt;
=== Fingerprint Reader ===&lt;br /&gt;
&lt;br /&gt;
Use [https://wiki.ubuntu.com/ThinkFinger this tutorial].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:T43p]]&lt;br /&gt;
[[Category:Ubuntu 7.04]]&lt;/div&gt;</summary>
		<author><name>Psychomog</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T43p&amp;diff=37557</id>
		<title>Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T43p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T43p&amp;diff=37557"/>
		<updated>2008-05-04T00:22:00Z</updated>

		<summary type="html">&lt;p&gt;Psychomog: /* Power Management */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''I did this installation some time ago, but I am still trying out some new things from time to time. The report is not complete yet. If you also have experiences with Ubuntu 7.04 on the T43p, feel free to share them here.'' --[[User:Zeno Gantner|zeno]] 13:17, 7 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
I used the complete hard disk to install Ubuntu, so I just overwrote the Windows XP and the recovery partition.&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Connectivity ==&lt;br /&gt;
=== Ethernet ===&lt;br /&gt;
Works out of the box.&lt;br /&gt;
=== WLAN ===&lt;br /&gt;
The hardware was autmatically recognized.&lt;br /&gt;
&lt;br /&gt;
==== No Encryption/WEP ====&lt;br /&gt;
Open wireless networks work out of the box using the Network Manager applet.&lt;br /&gt;
I did not try WEP.&lt;br /&gt;
&lt;br /&gt;
'''Hint:'''&lt;br /&gt;
Do not set up your wireless home network using no encryption/authentication.&lt;br /&gt;
Also do not use WEP for your wireless network. Using the right tools, the keys may be found out in a few minutes.&lt;br /&gt;
So it is basically equivalent to no encryption.&lt;br /&gt;
&lt;br /&gt;
==== WPA ====&lt;br /&gt;
WPA1 and WPA2 access can be configured using the Network Manager applet.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can manually configure the access, following the instructions in the Ubuntu Forums: [http://ubuntuforums.org/showthread.php?t=318539].&lt;br /&gt;
For me, the following configurations worked ...&lt;br /&gt;
&lt;br /&gt;
Part of &amp;lt;tt&amp;gt;/etc/network/interfaces&amp;lt;/tt&amp;gt; for WPA1 with SSID broadcast:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet dhcp&lt;br /&gt;
  wpa-driver wext&lt;br /&gt;
  # driver, &amp;quot;wext&amp;quot; = Linux wireless extensions (generic WLAN driver)&lt;br /&gt;
  wpa-ssid &amp;lt;SSID&amp;gt;&lt;br /&gt;
  # SSID&lt;br /&gt;
  wpa-ap-scan 1&lt;br /&gt;
  # &amp;quot;1&amp;quot; = broadcast of SSID, &amp;quot;2&amp;quot; = hidden broadcast&lt;br /&gt;
  wpa-proto WPA&lt;br /&gt;
  # &amp;quot;WPA&amp;quot; = WPA1, &amp;quot;RSN&amp;quot; = WPA2&lt;br /&gt;
  wpa-pairwise TKIP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-group TKIP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-key-mgmt WPA-PSK&lt;br /&gt;
  # &amp;quot;WPA-PSK&amp;quot; = pre-shared key (usual in home networks), &amp;quot;WPA-EAP&amp;quot; = enterprise authentication server (e.g. RADIUS)&lt;br /&gt;
  wpa-psk &amp;lt;KEY&amp;gt;&lt;br /&gt;
  # use the following command to produce &amp;lt;KEY&amp;gt;:   wpa_passphrase 'SSID' 'PASSPHRASE'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You just need to insert your values for &amp;lt;SSID&amp;gt; and &amp;lt;KEY&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Part of &amp;lt;tt&amp;gt;/etc/network/interfaces&amp;lt;/tt&amp;gt; for WPA2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet dhcp&lt;br /&gt;
  wpa-driver wext&lt;br /&gt;
  # driver, &amp;quot;wext&amp;quot; = Linux wireless extensions (generic WLAN driver)&lt;br /&gt;
  wpa-ssid &amp;lt;SSID&amp;gt;&lt;br /&gt;
  # SSID&lt;br /&gt;
  wpa-ap-scan 2&lt;br /&gt;
  # &amp;quot;1&amp;quot; = broadcast of SSID, &amp;quot;2&amp;quot; = hidden broadcast&lt;br /&gt;
  wpa-proto RSN&lt;br /&gt;
  # &amp;quot;WPA&amp;quot; = WPA1, &amp;quot;RSN&amp;quot; = WPA2&lt;br /&gt;
  wpa-pairwise CCMP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-group CCMP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-key-mgmt WPA-PSK&lt;br /&gt;
  # &amp;quot;WPA-PSK&amp;quot; = pre-shared key (usual in home networks), &amp;quot;WPA-EAP&amp;quot; = enterprise authentication server (e.g. RADIUS)&lt;br /&gt;
  wpa-psk &amp;lt;KEY&amp;gt;&lt;br /&gt;
  # use the following command to produce &amp;lt;KEY&amp;gt;:   wpa_passphrase 'SSID' 'PASSPHRASE'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Have a look at the [http://ubuntuforums.org/showthread.php?t=318539 examples in the forum] for more options.&lt;br /&gt;
&lt;br /&gt;
Note: I will try it again with the Network Manager applet, because I got it to work on another computer...&lt;br /&gt;
&lt;br /&gt;
=== Modem ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
=== Bluetooth ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
=== IrDA ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
&lt;br /&gt;
== DVD ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Works out of the box. I haven't tried the microphone yet.&lt;br /&gt;
&lt;br /&gt;
== Power Management ==&lt;br /&gt;
&lt;br /&gt;
-- the following was added by [User:psychomog]&lt;br /&gt;
&lt;br /&gt;
Suspend to RAM (suspend on the Gnome logout menu) worked out of the box&lt;br /&gt;
&lt;br /&gt;
Suspend to disk did not work out of the box, and had to install uswsusp as per the instructions here:&lt;br /&gt;
&lt;br /&gt;
http://blog.paulbetts.org/index.php/2007/02/11/fixing-software-suspend-hibernate-with-uswsusp-in-ubuntu-feisty-and-edgy/&lt;br /&gt;
&lt;br /&gt;
There are also possible issues with swap partition becoming corrupted when upgrading from Edgy to Feisty (which is how I installed Feisty). Basically the UUID of my swap partition in /etc/fstab was not the same as that given by vol_id [my swap partition]&lt;br /&gt;
&lt;br /&gt;
To fix this:&lt;br /&gt;
&lt;br /&gt;
https://launchpad.net/ubuntu/+bug/66637/comments/23&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
=== Special Keys ===&lt;br /&gt;
The volume control keys worked out of the box.&lt;br /&gt;
&lt;br /&gt;
=== Fingerprint Reader ===&lt;br /&gt;
&lt;br /&gt;
Use [https://wiki.ubuntu.com/ThinkFinger this tutorial].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:T43p]]&lt;br /&gt;
[[Category:Ubuntu 7.04]]&lt;/div&gt;</summary>
		<author><name>Psychomog</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T43p&amp;diff=37556</id>
		<title>Installing Ubuntu 7.04 (Feisty Fawn) on a ThinkPad T43p</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Installing_Ubuntu_7.04_(Feisty_Fawn)_on_a_ThinkPad_T43p&amp;diff=37556"/>
		<updated>2008-05-04T00:20:57Z</updated>

		<summary type="html">&lt;p&gt;Psychomog: /* Power Management */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;''I did this installation some time ago, but I am still trying out some new things from time to time. The report is not complete yet. If you also have experiences with Ubuntu 7.04 on the T43p, feel free to share them here.'' --[[User:Zeno Gantner|zeno]] 13:17, 7 July 2007 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
I used the complete hard disk to install Ubuntu, so I just overwrote the Windows XP and the recovery partition.&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Connectivity ==&lt;br /&gt;
=== Ethernet ===&lt;br /&gt;
Works out of the box.&lt;br /&gt;
=== WLAN ===&lt;br /&gt;
The hardware was autmatically recognized.&lt;br /&gt;
&lt;br /&gt;
==== No Encryption/WEP ====&lt;br /&gt;
Open wireless networks work out of the box using the Network Manager applet.&lt;br /&gt;
I did not try WEP.&lt;br /&gt;
&lt;br /&gt;
'''Hint:'''&lt;br /&gt;
Do not set up your wireless home network using no encryption/authentication.&lt;br /&gt;
Also do not use WEP for your wireless network. Using the right tools, the keys may be found out in a few minutes.&lt;br /&gt;
So it is basically equivalent to no encryption.&lt;br /&gt;
&lt;br /&gt;
==== WPA ====&lt;br /&gt;
WPA1 and WPA2 access can be configured using the Network Manager applet.&lt;br /&gt;
&lt;br /&gt;
Alternatively, you can manually configure the access, following the instructions in the Ubuntu Forums: [http://ubuntuforums.org/showthread.php?t=318539].&lt;br /&gt;
For me, the following configurations worked ...&lt;br /&gt;
&lt;br /&gt;
Part of &amp;lt;tt&amp;gt;/etc/network/interfaces&amp;lt;/tt&amp;gt; for WPA1 with SSID broadcast:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet dhcp&lt;br /&gt;
  wpa-driver wext&lt;br /&gt;
  # driver, &amp;quot;wext&amp;quot; = Linux wireless extensions (generic WLAN driver)&lt;br /&gt;
  wpa-ssid &amp;lt;SSID&amp;gt;&lt;br /&gt;
  # SSID&lt;br /&gt;
  wpa-ap-scan 1&lt;br /&gt;
  # &amp;quot;1&amp;quot; = broadcast of SSID, &amp;quot;2&amp;quot; = hidden broadcast&lt;br /&gt;
  wpa-proto WPA&lt;br /&gt;
  # &amp;quot;WPA&amp;quot; = WPA1, &amp;quot;RSN&amp;quot; = WPA2&lt;br /&gt;
  wpa-pairwise TKIP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-group TKIP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-key-mgmt WPA-PSK&lt;br /&gt;
  # &amp;quot;WPA-PSK&amp;quot; = pre-shared key (usual in home networks), &amp;quot;WPA-EAP&amp;quot; = enterprise authentication server (e.g. RADIUS)&lt;br /&gt;
  wpa-psk &amp;lt;KEY&amp;gt;&lt;br /&gt;
  # use the following command to produce &amp;lt;KEY&amp;gt;:   wpa_passphrase 'SSID' 'PASSPHRASE'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
You just need to insert your values for &amp;lt;SSID&amp;gt; and &amp;lt;KEY&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Part of &amp;lt;tt&amp;gt;/etc/network/interfaces&amp;lt;/tt&amp;gt; for WPA2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
auto eth1&lt;br /&gt;
iface eth1 inet dhcp&lt;br /&gt;
  wpa-driver wext&lt;br /&gt;
  # driver, &amp;quot;wext&amp;quot; = Linux wireless extensions (generic WLAN driver)&lt;br /&gt;
  wpa-ssid &amp;lt;SSID&amp;gt;&lt;br /&gt;
  # SSID&lt;br /&gt;
  wpa-ap-scan 2&lt;br /&gt;
  # &amp;quot;1&amp;quot; = broadcast of SSID, &amp;quot;2&amp;quot; = hidden broadcast&lt;br /&gt;
  wpa-proto RSN&lt;br /&gt;
  # &amp;quot;WPA&amp;quot; = WPA1, &amp;quot;RSN&amp;quot; = WPA2&lt;br /&gt;
  wpa-pairwise CCMP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-group CCMP&lt;br /&gt;
  # &amp;quot;TKIP&amp;quot; for WPA1, &amp;quot;CCMP&amp;quot; for WPA2 (AES)&lt;br /&gt;
  wpa-key-mgmt WPA-PSK&lt;br /&gt;
  # &amp;quot;WPA-PSK&amp;quot; = pre-shared key (usual in home networks), &amp;quot;WPA-EAP&amp;quot; = enterprise authentication server (e.g. RADIUS)&lt;br /&gt;
  wpa-psk &amp;lt;KEY&amp;gt;&lt;br /&gt;
  # use the following command to produce &amp;lt;KEY&amp;gt;:   wpa_passphrase 'SSID' 'PASSPHRASE'&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Have a look at the [http://ubuntuforums.org/showthread.php?t=318539 examples in the forum] for more options.&lt;br /&gt;
&lt;br /&gt;
Note: I will try it again with the Network Manager applet, because I got it to work on another computer...&lt;br /&gt;
&lt;br /&gt;
=== Modem ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
=== Bluetooth ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
=== IrDA ===&lt;br /&gt;
Not tried yet.&lt;br /&gt;
&lt;br /&gt;
== DVD ==&lt;br /&gt;
TODO&lt;br /&gt;
&lt;br /&gt;
== Sound ==&lt;br /&gt;
Works out of the box. I haven't tried the microphone yet.&lt;br /&gt;
&lt;br /&gt;
== Power Management ==&lt;br /&gt;
Suspend to RAM (suspend on the Gnome logout menu) worked out of the box&lt;br /&gt;
&lt;br /&gt;
Suspend to disk did not work out of the box, and had to install uswsusp as per the instructions here:&lt;br /&gt;
&lt;br /&gt;
http://blog.paulbetts.org/index.php/2007/02/11/fixing-software-suspend-hibernate-with-uswsusp-in-ubuntu-feisty-and-edgy/&lt;br /&gt;
&lt;br /&gt;
There are also possible issues with swap partition becoming corrupted when upgrading from Edgy to Feisty (which is how I installed Feisty). Basically the UUID of my swap partition in /etc/fstab was not the same as that given by vol_id [my swap partition]&lt;br /&gt;
&lt;br /&gt;
To fix this:&lt;br /&gt;
&lt;br /&gt;
https://launchpad.net/ubuntu/+bug/66637/comments/23&lt;br /&gt;
&lt;br /&gt;
== Misc ==&lt;br /&gt;
=== Special Keys ===&lt;br /&gt;
The volume control keys worked out of the box.&lt;br /&gt;
&lt;br /&gt;
=== Fingerprint Reader ===&lt;br /&gt;
&lt;br /&gt;
Use [https://wiki.ubuntu.com/ThinkFinger this tutorial].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:T43p]]&lt;br /&gt;
[[Category:Ubuntu 7.04]]&lt;/div&gt;</summary>
		<author><name>Psychomog</name></author>
		
	</entry>
</feed>