I’m currently using Linux Mint and wanted to communicate with the iDRAC interfaces on Dell servers. Install racadm:
1 |
sudo echo 'deb http://linux.dell.com/repo/community/ubuntu xenial openmanage' | sudo tee -a /etc/apt/sources.list.d/linux.dell.com.sources.list |
1 |
sudo gpg --keyserver pool.sks-keyservers.net --recv-key 1285491434D8786F |
1 |
gpg -a --export 1285491434D8786F | sudo apt-key add - |
1 |
sudo apt-get update |
1 |
sudo apt-get install srvadmin-idracadm8 |
Test with:
1 |
/bin/racadm -R 192.168.1.10 -u root -p topsecret getniccfg |
or if you want to be prompted for login credentials use:
1 |
/bin/racadm -R 192.168.1.10 -i getsysinfo |
Example racadm commands Dump lots of info:
1 |
racadm -r 192.168.1.10 -u root -p topsecret racdump |
Get the status of the PERC/Raid battery:
1 |
racadm -r 192.168.1.10 -u root -p topsecret storage get batteries -o |
Set… Read more »