Long awaited CentOS 6.0 was release few days back. Thank you CentOS Team!
If you haven’t downloaded it yet, please do so because this is really cool. The biggest attraction for me was two new minimal mode which does exactly what it claims. Default minimal mode on x64 system installs with 197 packages only (still some bloatware but lot better than earlier).
My first test installation was on a Dell Inspiron 1525 laptop. The installation won’t start unless we pick “basic video driver”, option #2 on the first screen. The minimal desktop installed fine but wireless was broken. NetworkManager applet reported that device firmware was missing for following device.
# /sbin/lspci -vnn | grep 14e4
0c:00.0 Network controller [0280]: Broadcom Corporation BCM4312 802.11b/g [14e4:4315] (rev 01)
After a bit of googling, I found the workaround to make it working.
yum install b43-fwcutter b43-openfwwf
mkdir ~/b43-driver; cd ~/b43-driver
wget http://downloads.openwrt.org/sources/broadcom-wl-4.150.10.5.tar.bz2
tar jxf broadcom-wl-4.150.10.5.tar.bz2
cd broadcom-wl-4.150.10.5/driver
b43-fwcutter -w /lib/firmware/ wl_apsta_mimo.o
And reboot. Hope this helps someone.
Cheers,
- Sudhaker