Skip to content

Instantly share code, notes, and snippets.

@WietseWind
Last active April 10, 2024 15:03
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save WietseWind/e4cffd3a3cdc7728945edcf2b5b7be7d to your computer and use it in GitHub Desktop.
Save WietseWind/e4cffd3a3cdc7728945edcf2b5b7be7d to your computer and use it in GitHub Desktop.
Install racadm on Ubuntu 20.04 / 18.04
wget http://archive.ubuntu.com/ubuntu/pool/universe/s/sblim-cmpi-devel/libcmpicppimpl0_2.0.3-0ubuntu2_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/multiverse/s/sblim-sfcb/sfcb_1.4.9-0ubuntu5_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/s/sblim-sfc-common/libsfcutil0_1.0.1-0ubuntu4_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/multiverse/c/cim-schema/cim-schema_2.48.0-0ubuntu1_all.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/openwsman_2.6.5-0ubuntu3_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/s/sblim-sfcc/libcimcclient0_2.2.8-0ubuntu2_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman-server1_2.6.5-0ubuntu3_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman1_2.6.5-0ubuntu3_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman-client4_2.6.5-0ubuntu3_amd64.deb
wget http://archive.ubuntu.com/ubuntu/pool/universe/o/openwsman/libwsman-curl-client-transport1_2.6.5-0ubuntu3_amd64.deb
dpkg -i libwsman-curl-client-transport1_2.6.5-0ubuntu3_amd64.deb
dpkg -i libwsman-client4_2.6.5-0ubuntu3_amd64.deb
dpkg -i libwsman1_2.6.5-0ubuntu3_amd64.deb
dpkg -i libwsman-server1_2.6.5-0ubuntu3_amd64.deb
dpkg -i libcimcclient0_2.2.8-0ubuntu2_amd64.deb
dpkg -i openwsman_2.6.5-0ubuntu3_amd64.deb
dpkg -i cim-schema_2.48.0-0ubuntu1_all.deb
dpkg -i libsfcutil0_1.0.1-0ubuntu4_amd64.deb
dpkg -i sfcb_1.4.9-0ubuntu5_amd64.deb
dpkg -i libcmpicppimpl0_2.0.3-0ubuntu2_amd64.deb
gpg --keyserver keyserver.ubuntu.com --recv-key 1285491434D8786F && gpg -a --export 1285491434D8786F | apt-key add -
# Ubuntu 18.04
echo "deb http://linux.dell.com/repo/community/openmanage/930/bionic bionic main" > /etc/apt/sources.list.d/linux.dell.com.sources.list
# Ubuntu 20.04
echo "deb http://linux.dell.com/repo/community/openmanage/950/focal focal main" > /etc/apt/sources.list.d/linux.dell.com.sources.list
apt update && apt install srvadmin-idracadm7 srvadmin-base libargtable2-0 && cd /bin && ln -s /opt/dell/srvadmin/sbin/racadm . && chmod +x /opt/dell/srvadmin/sbin/racadm
racadm
# racadm getniccfg
@pcw11211
Copy link

thank you, saved me a lot of time

@WietseWind
Copy link
Author

thank you, saved me a lot of time

Happy to hear that :) Isn't it amazing, random internet strangers posting random gists with commands :D

@mikegreen
Copy link

On line 24, pool.sks-keyservers.net has been deprecated (you will get gpg: keyserver receive failed: Server indicated a failure), you can use:
gpg --keyserver keyserver.ubuntu.com --recv-key 1285491434D8786F

@juhlee-microsoft
Copy link

@mikegreen Canonical bumped again so this key does not work as of today. 8/12/2022. This change will float forever.

@ravibhure
Copy link

@mikegreen

ravi@localhost:~$ gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-key 1285491434D8786F && gpg -a --export 1285491434D8786F | sudo apt-key add -
gpg: key 1285491434D8786F: "Dell Inc., PGRE 2012 (PG Release Engineering Build Group 2012) <PG_Release_Engineering@Dell.com>" not changed
gpg: Total number processed: 1
gpg:              unchanged: 1
OK

@WietseWind
Copy link
Author

@mikegreen Canonical bumped again so this key does not work as of today. 8/12/2022. This change will float forever.

I updated the gist :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment