Total Pageviews

Saturday 27 October 2012

升级Dell服务器的firmware


仅供CentOS系统,其他系统请参考:http://linux.dell.com/wiki/index.php/Repository/firmware
至于为什么要升级,部分人认为,“稳定最重要,只要不出问题,就不要升级”,一部分人认为,保持更新,可以“无形之中清扫掉自己不知也没时间、没精力去知的系统问题,从而避免掉进陷阱”……这里不争论这个问题。
准备工具:
1)安装Dell的 community repository
wget -q -O – http://linux.dell.com/repo/community/bootstrap.cgi | bash
2)安装firmware-tools
yum -y install firmware-addon-dell
3)安装Dell的 firmware repository
wget -q -O – http://linux.dell.com/repo/firmware/bootstrap.cgi | bash
4)install BIOS payload
yum install $(bootstrap_firmware)
5)开始更新
update_firmware –yes
小抄:
# set up repos
wget -q -O – http://linux.dell.com/repo/community/bootstrap.cgi | bash
wget -q -O – http://linux.dell.com/repo/firmware/bootstrap.cgi | bash
# install firmware tools
yum -y install firmware-addon-dell
# install BIOS update
yum -y install $(bootstrap_firmware)
update_firmware –yes