现在安装MACosx后BCM5751仍然存在无法驱动问题;
主要表现在网络属性里内建以太网成红色,显示没有插入网线。
经测试较快的解决方案如下:
下载AppleBCM5751Ethernet.kext.zip文件(见后面的附件)
解压缩出AppleBCM5751Ethernet.kext
把它移动到/System/Library/Extensions/里面
打开终端,依次输入:
sudo -s
chown -R root:wheel /System/Library/Extensions/
cd /System/Library/Extensions/
chmod -R 755 AppleBCM5751Ethernet.kext
kextload /System/Library/Extensions/AppleBCM5751Ethernet.kext
kextcache -k /System/Library/Extensions/
diskutil repairpermissions /
reboot
重起之后,可以在"系统预置"-"网络"里看到"内建以太网",这时候你还不能上网,因为网卡的MAC地址被归零了
打开终端,输入
sudo ifconfig en0 ether xx:xx:xx:xx:xx:xx
(x代表你的网卡Mac地址,可以到Windows下用ipconfig /all命令查到)
这样就配置上Mac地址了,(奇怪的是,Dell GX520这样处理以后,每次开机,Mac就会被归零,还得再次执行上述命令,哪位大哥给个解决的办法?)
如果你的网络是DHCP,现在就可以上网了,否则你需要配置IP地址。
到此为止。如果你遇到了和我一样的声卡、网卡,可以参考如上的办法。
解压缩出AppleBCM5751Ethernet.kext
把它移动到/System/Library/Extensions/里面
打开终端,依次输入:
sudo -s
chown -R root:wheel /System/Library/Extensions/
cd /System/Library/Extensions/
chmod -R 755 AppleBCM5751Ethernet.kext
kextload /System/Library/Extensions/AppleBCM5751Ethernet.kext
kextcache -k /System/Library/Extensions/
diskutil repairpermissions /
reboot
重起之后,可以在"系统预置"-"网络"里看到"内建以太网",这时候你还不能上网,因为网卡的MAC地址被归零了
打开终端,输入
sudo ifconfig en0 ether xx:xx:xx:xx:xx:xx
(x代表你的网卡Mac地址,可以到Windows下用ipconfig /all命令查到)
这样就配置上Mac地址了,(奇怪的是,Dell GX520这样处理以后,每次开机,Mac就会被归零,还得再次执行上述命令,哪位大哥给个解决的办法?)
如果你的网络是DHCP,现在就可以上网了,否则你需要配置IP地址。
到此为止。如果你遇到了和我一样的声卡、网卡,可以参考如上的办法。
本文转自 beansprouts 51CTO博客,原文链接:http://blog.51cto.com/netwalk/66541,如需转载请自行联系原作者