Bios Update unter laufendem Debian OS
Für Bios Updates über das Linux Host OS stellt HP lediglich RPM Pakete bereit. Diese können allerdings mithilfe des Programms alien in DEB Pakete konvertiert werden.
Mit den folgenden Befehlen wird das Paket alien installiert, das Bios RPM Update Paket geladen, in ein DEB Paket umgewandelt, entpackt und ein BIOS update aus dem laufenden System gestartet
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
NAS:~$ sudo apt install alien rpm NAS:~$ wget https://downloads.hpe.com/pub/softlib2/software1/sc-linux-fw-sys/p1180107045/v165184/RPMS/i386/firmware-system-j06-2019.04.04-1.1.i386.rpm NAS:~$ sudo alien firmware-system-j06-2019.04.04-1.1.i386.{rpm,deb} --scripts --target=x86_64 NAS:~$ cd /usr/lib/i386-linux-gnu/firmware-system-j06-2019.04.04-1.1 NAS:~$ sudo ./hpsetup Flash Engine Version: Linux-1.5.9.5-2 Name: Online ROM Flash Component for Linux - HP ProLiant MicroServer Gen8 (J06) Servers New Version: 04/04/2019 Current Version: 06/06/2014 The software is installed but is not up to date. Do you want to upgrade the software to a newer version (y/n) ? You must respond with y or n! Do you want to upgrade the software to a newer version (y/n) ?y Flash in progress do not interrupt or your system may become unusable. Working.............................................. The installation procedure completed successfully. |
ILO Firmware Update über das ILO Webinterface
Die ILO Firmware lässt sich noch einfacher updaten. Dazu muss nur eines der ILO Firmware Pakete heruntergeladen und entpackt werden. Die Datei ilo4_282.bin wird dazu aus dem RPM/EXE Paket extrahier und kann nun einfach über das ILO Webinterface hochgeladen und implementiert werden. Alternativ ist auch ein Update mit einem konvertiertem RPM zu DEB möglich.
Reset ILO Nand
Unter Umständen ist eine Formatierung des Konfigurationsspeichers nötig. Dies kann wie folgt realisiert werden:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Install hpconcfg wget -q https://downloads.linux.hpe.com/SDR/hpePublicKey2048_key1.pub -O-| sudo apt-key add echo "deb http://downloads.linux.hpe.com/SDR/repo/mcp buster/current non-free" | sudo tee /etc/apt/sources.list.d/hp-nonfree.list apt update sudo apt-get install -y hponcfg # Create Nand format Script cat <<EOF> ResetNAND.xml <RIBCL VERSION="2.0"> <LOGIN USER_LOGIN="Administrator" PASSWORD="PASSWORD"> <RIB_INFO MODE="write"> <FORCE_FORMAT VALUE="all" /> </RIB_INFO> </LOGIN> </RIBCL> EOF # format Nand hponcfg -f ResetNAND.xml |
HP Managemebt Software overview => https://downloads.linux.hpe.com/SDR/project/mcp/
Format NanD after ILO update via hpconfig => http://www.panticz.de/hp/proliant
HP Management Software for host OS => http://downloads.linux.hpe.com/SDR/repo/mcp/pool/non-free/
Add HP repo => https://forums.debian.net/viewtopic.php?t=149108
by Speefak| Infosource
Perfekt. Hat in der Webshell von Proxmox wie beschrieben funktioniert. Hat man sehr selten!! Danke!