Skip to content

Instantly share code, notes, and snippets.

@bugre
Last active March 20, 2023 19:19
Show Gist options
  • Save bugre/cc11b40290c993af3fbb9033ce7f84b5 to your computer and use it in GitHub Desktop.
Save bugre/cc11b40290c993af3fbb9033ce7f84b5 to your computer and use it in GitHub Desktop.
Ubuntu (20.04) install racadm and ipmitool
sudo apt-get install gpg libssl-dev
## the default "sudo gpg --keyserver pool.sks-keyservers.net --recv-key 1285491434D8786F" fails.. pool.sks-keyservers.net is having problems...
gpg --keyserver keyserver.ubuntu.com --recv-key 1285491434D8786F && gpg -a --export 1285491434D8786F | sudo apt-key add -
echo 'deb http://linux.dell.com/repo/community/openmanage/932/bionic bionic main' | sudo tee -a /etc/apt/sources.list.d/linux.dell.com.sources.list
sudo apt-get update
sudo apt-get install srvadmin-idracadm8
sudo apt install ipmitool
## disable the added repo from old Dell, after installing the tools
sudo sed -i.bak -e 's|deb http://linux.dell.com/repo/community/openmanage/932/bionic bionic main|#deb http://linux.dell.com/repo/community/openmanage/932/bionic bionic main|' /etc/apt/sources.list.d/linux.dell.com.sources.list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment