|
http://linux.dell.com/repo/hardware/
http://linux.dell.com/repo/hardware/OMSA_7.2/(Dell 12G系列服务器需要安装此版)
http://linux.dell.com/repo/hardware/OMSA_6.5/(Dell 11G系列服务器需要安装此版) Dell OM 7.2 Linux RepositoryWhat is this?This is the officially supported yum repository for Open Manage. This repository contains OMSA, drivers, BIOS, and firmware.
Please see the detailed description in the Dell OMSA Linux wiki page How to set upComplete this step before any of the steps below. wget -q -O - http://linux.dell.com/repo/hardware/OMSA_7.2/bootstrap.cgi | bashOMSA and firmware update packages were previously only available as 32-bit binaries, but are now available 64-bit native for x86_64 systems.
Warning: If you have a 32-bit Dell package installed (srvadmin-* dell_ie*) on your system, it continues to use the 32-bit packages. To use the 64-bit packages, uninstall the existing 32-bit packages before installing them. New installations install the architecture of OMSA that matches your operating system. Installing OpenManage Server AdministratorNOTE: OMSA will not install on unsupported systems. If you receive a message at install that the system is not supported, it is likely that your system is not supported, and the install will fail. This is most common on SC-class systems, as OMSA is completely unsupported on these systems. yum yum install srvadmin-allrug rug install srvadmin-baserug install srvadmin-webserverrug install srvadmin-storageservicesNOTE: If you want to install srvadmin-all, you have to have 'setserial' installed. I dont have the details on this, but it doesnt appear that setserial is installed by default. zypper zypper install srvadmin-allUpgrading Existing OpenManage Server AdministratorIf a prior version of OpenManage Server Administrator is already installed on the box, then it can be upgraded to OM 7.2 using one of the following steps. yum yum upgraderug rug updatezypper zypper updateInstalling firmware-tools to manage BIOS and firmware updatesyum yum install dell_ft_installyum install $(bootstrap_firmware)rug rug install dell_ft_installrug install $( bootstrap_firmware | xargs -n1 -r rug --terse wp | cut -d'|' -f3 | grep -v "No matches" | sort | uniq )zypper zypper install dell_ft_installzypper install $(bootstrap_firmware)Installing DTKyum yum install syscfgyum install raidcfgrug rug install syscfgrug install raidcfgzypper zypper install syscfgzypper install raidcfgManaging BIOS and firmware updatesInventory firmware version levels inventory_firmwareCompare versions installed to those available update_firmwareInstall any applicable updates update_firmware --yesStart interactive GUI inventory_firmware_guiUninstalling OpenManage Server Administratorall rpm -e $(rpm -qa | grep srvadmin)This will fail if any packages depend on OMSA. Uninstall those first. yum yum erase $(rpm -qa | grep srvadmin) Yum will uninstall OMSA and any packages that depend on OMSA. zypper zypper rm$(rpm -qa | grep srvadmin)zypper will uninstall OMSA and any packages that depend on OMSA. rug rug rm$(rpm -qa | grep srvadmin)rug will uninstall OMSA and any packages that depend on OMSA.
|