只是想让大家知道,我已经解决了这个问题。不知怎么的,它在 Backtrack 5 中被关闭了,我能够使用 bt5 中的键盘命令打开无线功能。
当我跑步时
iwconfig
它说lo
没有eth0
无线扩展,但wlan0
它说
IEEE 802.11bgn ESSID:off/any
Mode:Managed Access Point: Not-Associated Tx-Power=off
Retry long limit:7 RTS the:off Fragment the:off
Power Management:off
我相信这就是我的问题,我只是不知道如何重新打开它
有什么帮助吗?
当我跑步的时候
lspci | grep Network
它给了我这个
02:00.0 Network controller: Intell Corporation Centrino Wireless -N +
WiMAX 6150 (rev 67)
我怎么知道我的无线被硬阻止了,因为当我运行
sudo rfkill list all
我明白了
0: Ideapad_wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
当我跑步的时候
lshw -c network
我明白了。
*-network DISABLED
description: Wireless interface
product: Centrino Wireless-N + WiMAX 6150
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:02:00.0
logical name: mon1
version: 67
serial: 40:25:c2:d2:96:2c
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list logical wireless ethernet physical
configuration: broadcast=yes driver=iwlwifi driverversion=3.2.0-32-generic-pae firmware=41.28.5.1 build 33926 latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
resources: irq:43 memory:d0500000-d0501fff
*-network
description: Ethernet interface
product: RTL8111/8168B PCI Express Gigabit Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:03:00.0
logical name: eth0
version: 06
serial: f0:de:f1:d7:a0:4d
size: 100Mbit/s
capacity: 1Gbit/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 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl_nic/rtl8168e-2.fw ip=192.168.0.65 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
resources: irq:41 ioport:2000(size=256) memory:d0404000-d0404fff memory:d0400000-d0403fff
我注意到的另一件事是我无法将计算机从飞行模式中移除。当我单击 Dash>Network 时,它告诉我飞行模式已打开,当我将其切换为关闭时,它说它已关闭,但我无法打开无线功能,当我关闭并重新打开网络窗口时,它又重新打开了。
@belacqua
是的,当我这样做的时候,它变成了这样
0: Ideapad_wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: no
Hard blocked: yes
进入这个
0: Ideapad_wlan: Wireless LAN
Soft blocked: yes
Hard blocked: no
1: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: yes
外部无线开关将其设置为
0: Ideapad_wlan: Wireless LAN
Soft blocked: yes
Hard blocked: yes
1: phy0: Wireless LAN
Soft blocked: yes
Hard blocked: yes
答案1
问题看起来是这样的:
ESSID:off/any
如果是这样...这将停止网络管理器:
sudo service network-manager stop
这将(手动)将 ESSID 添加到 wlan(将 $id 更改为您的无线网络名称):
sudo iwconfig wlan0 essid $id
sudo dhclient -v wlan0
这应该会让您获得一个 IP 地址。