新买来的机子,华硕P8 H61-M LX PLUS 主板,准备做centos5.4 的服务器,装系统的时候遇到
an error had occurred -no valid devices were found on which to create new file systems please check your hardware for the cause of this problem
这个问题,发现不了硬盘,最后发现,需要在bios里调一下,把achi模式改成ide模式即可,这次主要说的不是这个问题,看看下个问题.
装完系统后,只能ping自己,网关不通,重启network 服务正常,提示
bringing up interface eth0: r8169: eth0: unknown chipset (mac_version=1)
在网上看了些资料,貌似centos5.4 自带的网卡驱动会有点问题,需要安装官方驱动,以下是解决问题方法:
# lspci |grep Ethernet
04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 06)
# cat /etc/modprobe.conf
alias eth0 r8169
看的出来,貌似不一致啊。
# lsmod |grep 8169
# rmmod r8169
# make clean modules
下载这个linux版的网卡驱动程序
在安装之前需要安装 kernel-devel gcc 包,否则会报错。。。。
用rpm或者本地yum安装都可以的
# tar -xf r8168-8.029.00.tar.bz2
# cd r8168-8.029.00.tar.bz2
# lsmod | grep r8168
# ifconfig -a
更详细的操作可以参考此目录下的 README 文档
安装完后修改下
# cat /etc/modprobe.conf
alias eth0 r8168
至此,你的网络就应该可以了。。。。
阅读(6380) | 评论(0) | 转发(0) |