Last active
March 20, 2023 19:19
-
-
Save bugre/cc11b40290c993af3fbb9033ce7f84b5 to your computer and use it in GitHub Desktop.
Ubuntu (20.04) install racadm and ipmitool
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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