Http://www.linuxidc.com/Linux/2014-10/108418.htm
First, check whether the installation of wireless network card driver
The above results show that you are not installed, do not have wireless Internet access. If you have installed the network card driver and can achieve wireless Internet access will have the following display:
Second, check the wireless card model
[Root@mr-zhao software]# lspci |grep-i Network
03:00.0 Network Controller:realtek Semiconductor Co., Ltd. RTL 8188CE 802.11b/g/n WiFi Adapter (rev. 01)
You can see my NIC type is RTL8188CE
Third, view the system kernel version
[Root@mr-zhao software]# Uname-r
2.6.32-431.el6.i686
Four, according to their own network card model and system kernel version download wireless network card driver
Download address: Http://www.realtek.com.tw/downloads/downloadsView.aspx? langid=1&pfid=48&level=5&conn=4&prodid=228&downtypeid=3&getdown=false&downloads= True
Note here: My kernel is 2.6.32, but my Linux driver for kernel 2.6.24 (and later), 2.6.24 This version did not install successfully. Later this Linux driver for kernel 2.6.23 (a nd earlier) version can actually install successfully.
V. Download the TAR package for compilation and installation
Since is the TAR source code package to compile the installation, then must have the compilation tool, otherwise will be the error.
1. [Root@mr-zhao software]# yum Install gcc-y//install GCC Compilation tool
2, extract the tar source package, to install.
3, read Readme.txt documents.
4, execute make; install installation
Embarrassed ~ the error.
The workaround is as follows:
Yum Install Kernel-devel-y
5, make clean, and then execute make install. It's OK.
Six, restart the machine can be connected to the wireless network.