个人工具

“UbuntuHelp:IdeaPadS/Fixes”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(创建新页面为 '{{From|https://help.ubuntu.com/community/IdeaPadS/Fixes}} {{Languages|UbuntuHelp:IdeaPadS/Fixes}} <<Include(IdeaPadS/Header)>> This page contains suggested fixes and/or hacks to...')
 
 
第5行: 第5行:
 
NOTE:  this page was copied from the AA1 page, and not updated fully yet.  It is just a place-holder. Please add notes as much as possible!
 
NOTE:  this page was copied from the AA1 page, and not updated fully yet.  It is just a place-holder. Please add notes as much as possible!
 
== Wireless ==
 
== Wireless ==
The wireless card on the S12 contains an xxx chipset.
+
=== Wireless on S12 VIA platform  ===
There are two proprietary drivers:
+
The wireless card contains an BCM4312 802.11b/g (rev 01) chipset.
* a
+
There are two drivers:
* b
+
* proprietary [http://www.broadcom.com/support/802.11/linux_sta.php Broadcom STA driver]. It can be installed with default hardware driver manager. Supports only channels from 1 to 11.
 +
* b43 driver from compat-wireless-2.6 (in Ubuntu it included in linux-backports-modules-karmic package) with firmware from proprietary driver. In kernels 2.6.32 this version of driver will be in mainstream.
 
There is also an alternative driver called ndiswrapper, which uses the Windows-native drivers for the card.
 
There is also an alternative driver called ndiswrapper, which uses the Windows-native drivers for the card.
 
Before trying any of these drivers, '''ensure that only the wireless driver you wish to use is allowed to load''' by blacklisting the others. This is important, since drivers may load and compete for access to the hardware, leaving the end user confused.
 
Before trying any of these drivers, '''ensure that only the wireless driver you wish to use is allowed to load''' by blacklisting the others. This is important, since drivers may load and compete for access to the hardware, leaving the end user confused.
Here is an example of a blacklist file named /etc/modprobe.d/blacklist-wifi that only allows the use of ndiswrapper:
+
Here is an example of a blacklist file named ''/etc/modprobe.d/blacklist-wifi'' that only allows the use of proprietary wl driver:
 
<pre><nowiki>
 
<pre><nowiki>
blacklist ath_pci
+
blacklist b43
blacklist ath5k
+
blacklist ssb
# blacklist ndiswrapper
+
blacklist ndiswrapper
 +
# blacklist wl
 +
</nowiki></pre>
 +
=== Installation of b43 driver in Ubuntu 9.10 ===
 +
Use the current Git version of b43-fwcutter. Download, extract the b43-fwcutter tarball and build it:
 +
<pre><nowiki>
 +
git clone http://git.bu3sch.de/git/b43-tools.git
 +
cd b43-tools/fwcutter
 +
make
 +
cd ..
 +
</nowiki></pre>
 +
Use version 4.174.64.19 of Broadcom's proprietary driver. (The tarball is mislabeled as "4.178.10.4", but it is actually 4.174.64.19.). Download and extract the firmware from this driver tarball:
 +
<pre><nowiki>
 +
export FIRMWARE_INSTALL_DIR="/lib/firmware"
 +
wget http://downloads.openwrt.org/sources/broadcom-wl-4.178.10.4.tar.bz2
 +
tar xjf broadcom-wl-4.178.10.4.tar.bz2
 +
cd broadcom-wl-4.178.10.4/linux
 +
sudo ../../fwcutter/b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" wl_apsta.o
 +
</nowiki></pre>
 +
Unload all current modules for wireless card, then install compat-wireless-2.6 and load b43 driver:
 +
<pre><nowiki>
 +
sudo rmmod wl b43 mac80211 cfg80211 led_class ssb
 +
sudo aptitude install linux-backports-modules-karmic
 +
sudo modprobe b43
 
</nowiki></pre>
 
</nowiki></pre>
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

2010年5月19日 (三) 22:46的最新版本

<<Include(IdeaPadS/Header)>> This page contains suggested fixes and/or hacks to get hardware working properly with Ubuntu on the IdeaPadS-series. NOTE: this page was copied from the AA1 page, and not updated fully yet. It is just a place-holder. Please add notes as much as possible!

Wireless

Wireless on S12 VIA platform

The wireless card contains an BCM4312 802.11b/g (rev 01) chipset. There are two drivers:

  • proprietary Broadcom STA driver. It can be installed with default hardware driver manager. Supports only channels from 1 to 11.
  • b43 driver from compat-wireless-2.6 (in Ubuntu it included in linux-backports-modules-karmic package) with firmware from proprietary driver. In kernels 2.6.32 this version of driver will be in mainstream.

There is also an alternative driver called ndiswrapper, which uses the Windows-native drivers for the card. Before trying any of these drivers, ensure that only the wireless driver you wish to use is allowed to load by blacklisting the others. This is important, since drivers may load and compete for access to the hardware, leaving the end user confused. Here is an example of a blacklist file named /etc/modprobe.d/blacklist-wifi that only allows the use of proprietary wl driver:

blacklist b43
blacklist ssb
blacklist ndiswrapper
# blacklist wl

Installation of b43 driver in Ubuntu 9.10

Use the current Git version of b43-fwcutter. Download, extract the b43-fwcutter tarball and build it:

git clone http://git.bu3sch.de/git/b43-tools.git
cd b43-tools/fwcutter
make
cd ..

Use version 4.174.64.19 of Broadcom's proprietary driver. (The tarball is mislabeled as "4.178.10.4", but it is actually 4.174.64.19.). Download and extract the firmware from this driver tarball:

export FIRMWARE_INSTALL_DIR="/lib/firmware"
wget http://downloads.openwrt.org/sources/broadcom-wl-4.178.10.4.tar.bz2
tar xjf broadcom-wl-4.178.10.4.tar.bz2
cd broadcom-wl-4.178.10.4/linux
sudo ../../fwcutter/b43-fwcutter -w "$FIRMWARE_INSTALL_DIR" wl_apsta.o

Unload all current modules for wireless card, then install compat-wireless-2.6 and load b43 driver:

sudo rmmod wl b43 mac80211 cfg80211 led_class ssb
sudo aptitude install linux-backports-modules-karmic
sudo modprobe b43