Linux下添加无线网卡的指南(linux添加无线网卡)
在Linux系统下添加无线网卡是一件很有必要的事情,具体操作步骤如下:
## 一、确认无线网卡的型号
有时候用户可能没有清楚的记住自己的无线网卡是什么型号,此时可以使用Linux的指令“lsusb”查看。命令行模式下,先运行“lsusb -v”命令查看当前主机所有USB设备,接着会看到如下信息:
Bus 001 Device 003: ID 0424:9512 Standard Microsystems Corp.
Device Descriptor: Vendor ID: 0424
Product ID: 9512 Version: 2.00
Serial Number: Speed: 12Mb/s
...
其中,往往会出现Vendor ID和Product ID,他们就代表该无线网卡的厂商和型号,例如,Vendor ID 0424,Product ID 9512时,就表明该无线卡型号为Realtek RTL8191SU。
## 二、查看内核是否支持
无论有多少厂商的无线网卡,只有内核的驱动支持了,系统才能实际使用,此时可以通过以下指令查看:
“`bash
# lspci -v
…
02:02.0 Ethernet controller: Qualcomm Atheros AR242x / AR542x Wireless Network Adapter (rev 01)
Subsystem: Qualcomm Atheros Device 1005
Flags: bus master, fast devsel, latency 0, IRQ 4
Memory at fde00000 (32-bit, non-prefetchable) [size=64K]
Capabilities: [40] Power Management version 3
Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
Capabilities: [70] Express Endpoint, MSI 00
Kernel driver in use: ath5k
这里以qualcomm Atheros网卡模型为例,倒数第一行“Kernel driver in use”下面,出现“ath5k”,说明系统已经支持这个无线网卡,并有对应的驱动加载。
## 三、安装驱动
如果内核不支持当前无线网卡,则需要下载相应厂家提供的驱动,然后手动安装,以qualcomm Atheros为例,可以使用如下命令进行操作:
```bash# apt-get install firmware-atheros
## 四、配置无线网络
安装完成驱动之后,使用如下命令激活无线网卡:
“`bash
# ifconfig wlan0 up
并且使用“iwconfig”命令进行连网配置,将当前无线设备设置为相应无线信号:
```bash# iwconfig wlan0 essid "YOURSSID"
# iwconfig wlan0 key "YOURPASSWORD"
## 五、测试连接
最后输入“ifconfig wlan0”查看无线网卡IP地址的设置情况,看输出的inet地址是否是连接的无线网的IP,注意一般不建议出现“0.0.0.0”的情况。
最后可以ping一下“www.baidu.com”,看是否能获取反馈:
“`bash
# ping www.baidu.com
以上说明,Linux系统下添加无线网卡的操作方法,步骤相对简单,只需要the right commands以及确认好网卡型号既可。