有没有一种方法可以禁用无线接口的硬件打开/关闭开关?


8

我有一台HP 520,并且正在运行最新的Ubuntu 11.10。硬件可以在Ubuntu上正常工作,但有一个例外:该设备具有用于打开和关闭wifi的硬件开关。每次通过硬件开关禁用wi-fi时,我都无法再次打开它。网络弹出窗口上的消息将为device not ready

我正在寻找的是一种完全禁用硬件开关的方法,以便当用户不小心按下按钮时,不会禁用wifi。

  • 没有设置可禁用BIOS中的开关。

来自的硬件信息lspci -nn

00:00.0 Host bridge [0600]: Intel Corporation Mobile 945GME Express Memory Controller Hub [8086:27ac] (rev 03)
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GME Express Integrated Graphics Controller [8086:27ae] (rev 03)
00:02.1 Display controller [0380]: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller [8086:27a6] (rev 03)
00:1b.0 Audio device [0403]: Intel Corporation N10/ICH 7 Family High Definition Audio Controller [8086:27d8] (rev 01)
00:1c.0 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 1 [8086:27d0] (rev 01)
00:1c.1 PCI bridge [0604]: Intel Corporation N10/ICH 7 Family PCI Express Port 2 [8086:27d2] (rev 01)
00:1d.0 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB UHCI Controller #1 [8086:27c8] (rev 01)
00:1d.7 USB Controller [0c03]: Intel Corporation N10/ICH 7 Family USB2 EHCI Controller [8086:27cc] (rev 01)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev e1)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge [8086:27b9] (rev 01)
00:1f.2 IDE interface [0101]: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller [8086:27c4] (rev 01)
02:06.0 CardBus bridge [0607]: ENE Technology Inc CB1410 Cardbus Controller [1524:1410] (rev 01)
02:08.0 Ethernet controller [0200]: Intel Corporation 82562ET/EZ/GT/GZ - PRO/100 VE (LOM) Ethernet Controller Mobile [8086:1068] (rev 01)
10:00.0 Network controller [0280]: Intel Corporation PRO/Wireless 3945ABG [Golan] Network Connection [8086:4222] (rev 02)

来自的输出lsmod | grep iwl

iwl3945                73329  0 
iwl_legacy             71499  1 iwl3945
mac80211              272785  2 iwl3945,iwl_legacy
cfg80211              172392  3 iwl3945,iwl_legacy,mac80211

我们需要更多的硬件信息来帮助您,您能否查看此问题,然后编辑您的问题并添加信息?
Jorge Castro

我改正了这个问题以使其更加清楚,并且我还添加了机器的硬件信息
avee 2011年

我认为它的履历表没有设定吗?
豪尔赫·卡斯特罗

事实上,没有。
avee

您知道WiFi(3945ABG)使用哪个驱动程序吗?您是否尝试过通过命令再次使用sudo modprobe iwl-3945和/或iwl3945-base启动设备?
用户未知,

Answers:


2

你不能。要禁用它,您可以物理上阻止或卸下硬件开关。如果rfkill显示对大多数人来说都是可行的硬阻止,则无法覆盖硬件禁用按钮。

解除阻止时,如果它陷入某种不一致的状态,则最好的选择是:
sudo modprobe -r iwl3945 && sudo modprobe iwl3945
我有hpdv7,并且无线a)使用相同的驱动程序,b)硬件切换对我有效。


0

既然是硬件,那就是硬件。如果您确实希望将其“固定”在一个位置上,请使用胶水。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.