This post will cover the Driver installation of DELL Inspiron n5110 Laptop under CentOs 6.3 .
First download Linux driver from Brodcom.
http://www.broadcom.com/docs/linux_sta/hybrid-portsrc_x86_64-v5_100_82_112.tar.gz
Then download and install kernel-devel package and gcc.
yum install kernel-devel gcc
Now in shell go to the hybrid-postsrc_x86_64-v5_100_82_112.tar.gz
then unzip the tar file.
tar xzf hybrid-postsrc_x86_64-v5_100_82_112.tar.gz
After that go to hybrid-postsrc_x86_64-v5_100_82_112 directory.
Now build the driver as a Linux Loadable kernel module
make clean
make
if any error occured, try
make API=WEXT
or
make API=CFG80211
Let the system scan wireless device.
This will load the driver for current session.If you want to load the driver in bootup follow the instructions given below.
cp wl.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless
Now you'r Drivers should work properly.
Then it will create some files including wl.ko
Now it is time to load the driver
to do that,
modprobe lib80211
insmod wl.ko
Let the system scan wireless device.
This will load the driver for current session.If you want to load the driver in bootup follow the instructions given below.
cp wl.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless
Now you'r Drivers should work properly.
I do cp wl.ko /lib/modules/`uname -r`/kernel/drivers/net/wireless, but it doesn´t work, I have load the driver manually doing:
ReplyDeletemodprobe lib80211
insmod wl.ko
every time I start the session to make the wireless works.
and im using centos 6.3
DeleteIn that case try adding those two line to .bashrc file
Deletemodprobe lib80211
insmod wl.ko
Then at the system startup it will execute those two lines for you automatically.
Btw above "cp wl.ko .." method did work for me.