web-dev-qa-db-ja.com

Lenovo Ideapadz570のIntelWifi Link1000でワイヤレスを有効にできません

私はlenovoideapadz570でubuntu11.10を使用しています。ワイヤレスインターネットが機能していません。

ワイヤレススイッチがオンになっていることを確認しました。 Windows 7のワイヤレスは問題なく動作しますが、ubuntu 11.10ではワイヤレス接続を有効にできません。

私は実行しました

次のコマンドとここにステータスがあります。

Sudolshwクラスのネットワーク

  *-network DISABLED      
       description: Wireless interface
       product: Centrino Wireless-N 1000
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:02:00.0
       logical name: wlan0
       version: 00
       serial: 74:e5:0b:1c:a4:a4
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=iwlagn driverversion=3.0.0-12-generic firmware=39.31.5.1 build 35138 latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
       resources: irq:42 memory:d0500000-d0501fff


  *-network
       description: Ethernet interface
       product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:03:00.0
       logical name: eth0
       version: 05
       serial: f0:de:f1:64:b6:62
       size: 10Mbit/s
       capacity: 100Mbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half firmware=rtl_nic/rtl8105e-1.fw latency=0 link=no multicast=yes port=MII speed=10Mbit/s
       resources: irq:41 ioport:2000(size=256) memory:d0404000-d0404fff memory:d0400000-d0403fff

これがrfkillリストのすべての出力です:

rfkillリストすべて

0: ideapad_wlan: Wireless LAN
    Soft blocked: no
    Hard blocked: no

1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

2: Acer-wireless: Wireless LAN
    Soft blocked: yes
    Hard blocked: no

注:Windows 7のワイヤレスカードのプロパティは、Intel WifiLink 1000BGNであることを示しています。誰かがこの問題を解決するのを手伝ってくれませんか。

1
Brij

Rfkill-listの結果は、ソフトブロックの問題を示しています。

Acer-wmiカーネルモジュールをブラックリストに登録してみてください。

Sudo nano /etc/modprobe.d/blacklist.conf

追加 blacklist Acer_wmiこのファイルの下部にある改行として。

その後、再起動します。

再起動後、再実行rfkill list all-うまくいけば、ソフトブロックの値が「はい」から「いいえ」に変更されます-ワイヤレスを再度有効にする必要があります。

0
fossfreedom