DELL Server Tools install Script for PVE8.x

hitman

Renowned Member
Jan 5, 2018
111
29
68
36
PVE8.x Bash Install Script for DELL dcism & idracadm8

Bash:
#!/bin/bash
echo "DELL Server Tool install for PVE8.x"

while true; do

read -p "Do you want to proceed? (yes/no) " yn

case $yn in
yes )

curl -fsSL https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc | gpg --dearmor -o /etc/apt/trusted.gpg.d/dell-apt-key.gpg
clear

echo "
deb [signed-by=/etc/apt/trusted.gpg.d/dell-apt-key.gpg] http://linux.dell.com/repo/community/openmanage/11000/jammy jammy main
# For Proxmox 7
#deb [signed-by=/etc/apt/trusted.gpg.d/dell-apt-key.gpg] http://linux.dell.com/repo/community/openmanage/10300/focal focal main
# If you want iDRAC Service Module(iSM)
deb [signed-by=/etc/apt/trusted.gpg.d/dell-apt-key.gpg] http://linux.dell.com/repo/community/openmanage/iSM/5100/bullseye bullseye main
deb http://ftp.debian.org/debian bullseye main" > /etc/apt/sources.list.d/linux.dell.com.sources.list
clear

echo "
Package: *
Pin: release n=bullseye
Pin-Priority: -1
" > /etc/apt/preferences.d/bullseye
clear

echo "DELL Server Tools"
apt update
apt install libssl1.1
apt update
apt-get install srvadmin-idracadm8
apt-get install dcism
clear

systemctl enable dcismeng
systemctl start dcismeng

echo "Load DELL System Infos"
racadm getsysinfo
echo "Install finish :)"

break;;

no ) echo exiting...;
exit;;

* ) echo invalid response;;

esac

done
 

Attachments

  • dell_tools.tar
    3 KB · Views: 1

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!