Changes between Version 1 and Version 2 of linux/X60


Ignore:
Timestamp:
1970/01/01 09:19:23 (55 years ago)
Author:
yuna
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • linux/X60

    v1 v2  
    1010 
    1111その後、インストールアイコンをクリックし、インストールを行います。Linux用のパーティションを作成するところでは、拡張パーティションを作成し、Linuxのルートファイルシステム領域と、スワップパーティションを確保すると良いでしょう。また、WindowsXPとLinuxの間でデータをやり取りするFAT32パーティションを作成しておくと良いでしょう。 
     12 
     13== Wireless LAN == 
     14無線LANがデフォルトでは動かない。lspciでデバイスを調べると、 
     15{{{ 
     16$ sudo lspci 
     17...  
     1803:00.0 Network controller: Atheros Communications, Inc. Unknown device 0024 (rev 01) 
     19... 
     20}}} 
     21となっている。次のパッチをmadwifiドライバに当てればきちんと動く。 
     22{{{ 
     23--- ath/if_ath_pci.c~   2006-11-16 00:40:33.000000000 +0900 
     24+++ ath/if_ath_pci.c    2006-11-16 00:43:03.000000000 +0900 
     25@@ -99,6 +99,7 @@ 
     26        { 0x168c, 0x001b, PCI_ANY_ID, PCI_ANY_ID }, 
     27        { 0x168c, 0x001c, PCI_ANY_ID, PCI_ANY_ID }, /* PCI Express 5424 */ 
     28        { 0x168c, 0x001d, PCI_ANY_ID, PCI_ANY_ID }, /* PCI Express ???  */ 
     29+       { 0x168c, 0x0024, PCI_ANY_ID, PCI_ANY_ID }, /* Thinkpad X60  */ 
     30        { 0x168c, 0x9013, PCI_ANY_ID, PCI_ANY_ID }, /* sonicwall */ 
     31        { 0 } 
     32 }; 
     33}}}