Friday, August 14, 2020

HP-SPP - firmware patch..

 HP-SPP
Go to software location
# cd /repo/HP/SPP

Mount the image
# mount -o loop PL6....gen10spp...iso /tmp/a
# mkdir /hpspp
# rsync -av /tmp/a/ /hpspp/
# cd /hpspp; ./launch_sum.sh
SUM uses /var as log dir. does not have write/exec permission

# more launch_sun.sh
# vi ./packages/smartupdate

look for noexec and put double quote on "$MOUNT_TEMPDIR " - These are 2 places

result=`mount | grep -i "$MOUNT_TEMPDIR "

# nohup ./launch_sum.sh &
# cat nohup.out
get the url

# xhost +
# firefox
past the URL and follow the step

select
- localhost guided
- interactive
- next next
- deploy

once done, reboot

If it prompts for password
# ps -ef | grep sum
# kill <PID>
# rm -rf /var/tmp/sum


Or using cdrom


burn burn iso to cdrom and get external cdrom

plug in to your server.

login to ILO console

reboot the machine .


press F10 or F11 to boot from cd .. pick the best option

select external cd or something


and just follow the steps

No comments:

Post a Comment

Git branch show detached HEAD

  Git branch show detached HEAD 1. List your branch $ git branch * (HEAD detached at f219e03)   00 2. Run re-set hard $ git reset --hard 3. ...