Resetting HP Proliant server ILO network settings from power on System Settings

As part of reorganizing of my home network and homelab setup, I’m moving everything running on my DL380 G7 server from 19.168.1.0/24 addresses to it’s own network under 10.0.0.0/24

I thought I knew what new ip and gateway settings I needed in ILO on my server, so I changed them through the web interface, only to find out the gateway was incorrect and now I could no longer access ILO remotely on my network.

Luckily from the power on System settings, you can access the ILO config if you connect a monitor and keyboard and press F8 when prompted (see detailed step by step and timings of each option here). The F8 to access ILO settings is only on the screen for about 2 seconds, so if you miss it you’ll get the System Settings menu like this:

If you get into this Setup Utility menu then you need to exit and try again.

The F8 prompt you’re looking for appears only for about 2 seconds before the HP RAID array info appear – if you see this then you’ve already missed it and you’ll need to reboot and try again:

This is the ILO menu you should see after pressing F8 when prompted:

I had previously changed the gateway so a router on my 192.168.1.0 network that was unreachable from there. Changed, now we’re ready to reboot:

Success, ILO is now accessible on 10.0.0.2!

Raspbian error: “The following signatures couldn’t be verified because the public key is not available”

I couldn’t do a ‘sudo apt-get update’ on my Pi 3 running Raspbian as I got this error:

Fetched 74.9 kB in 31s (2,381 B/s)                            Reading package lists... Done
W: GPG error: http://security.debian.org jessie/updates InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9D6D8F6BC857C906 NO_PUBKEY AA8E81B4331F7F50

To import the missing keys:

sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-key AA8E81B4331F7F50

sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-key 9D6D8F6BC857C906

Tips from here.

Raspbian Jessie apt-get error: “Is the package apt-transport-https installed?”

Trying to do a ‘sudo apt-get update’ on my Raspberry Pi running Jessie I got this error:

$ sudo apt-get update
E: The method driver /usr/lib/apt/methods/https could not be found.
N: Is the package apt-transport-https installed?

Seeing posts online with similar errors about the sources configured in /etc/apt/sources.list, I looked in my file and I had this line:

deb http://mirrordirector.raspbian.org/raspbian/ jessie main contrib non-free rpi

I haven’t used or tried to update this Pi for a while so I can’t remember if this line was how it was originally configured or if I changed it.

Replacing this first line with what I think is more typical:

deb http://raspbian.raspberrypi.org jessie main contrib non-free rpi

and then doing a ‘sudo apt-get update’, it updates sources and now I can upgrade and install other packages again as expected.