This page will guide a user on booting the LiveCD .iso
file directly onto a BMC.
A Cray Pre-Install Toolkit ISO is required for this process. This ISO can be obtained from:
cray-pre-install-toolkit-sle15sp2.x86_64-1.4.10-20210514183447-gc054094.iso
Most BMCs offer a web interface for controlling the node and providing access to its BIOS and firmware.
Refer to the following pages based on the node vendor for help mounting an ISO image:
HPE iLO BMCs allow for booting directly from an HTTP-accessible ISO location.
Enter the Virtual Media URL
, select Boot on Next Reset
, and click Insert Media
.
Reboot by selecting Reset
in the top right power menu.
Open the virtual terminal by choosing the HTML5 Console
option when clicking the terminal image in the bottom left corner.
NOTE
It may appear that the boot is stalled at a line ofEXT4-fs (loop1): mounted ...
orStarting dracut pre-mount hook...
. This is the step when it begins downloading the ISO’s SquashFS root file system, which can take a few minutes.
Gigabyte BMCs allow for booting over HTTP.
WARNING: Do not try to boot over NFS or CIFS because of problems in the Gigabyte firmware.
Go to the BMC settings and setup the remote ISO for the protocol and node.
Access the BMC’s web interface and navigate to Settings
-> Media Redirection Settings
-> General Settings
.
Enable Remote Media Support
and Mount CD/DVD
and then fill in the server IP address or DNS name and the path to the server.
NOTE
The Gigabyte URL appears to not allow certain characters and has a limit on path length. You may need to move or rename the ISO to a location with a smaller file name.
Navigate to Image Redirection
-> Remote Images
.
Click on the Start
button to start the Virtual ISO mount.
Reboot the node and select the Virtual CDROM
option from the manual boot options.
The ISO boots with no password, requiring one be set on first login. Continue the bootstrap process by setting the root password following the procedure First log in.
NOTE
The root OS/
directory is writable without persistence. This means that restarting the machine will result in all changes being lost. Before restarting, consider following Backing up the overlay COW FS and the accompanying Restoring from an overlay COW FS backup section.
Backup the writable overlay’s upperdir
so that changes are not lost after a reboot or when updating the ISO.
(pit#
) This requires a location to scp
a tar file as a backup.
tar czf /run/overlay.tar.gz -C /run/overlayfs/rw .
scp /run/overlay.tar.gz <somelocation>
NOTE
To reduce the size of the backup, delete any SquashFS files first, or exclude them in thetar
command using--exclude='*.squashfs'
. Those will need to be repopulated after restoring the backup.
Restore a backed up tar file from the previous command with the following:
scp <somelocation> /run/overlay.tar.gz
tar xf /run/overlay.tar.gz -C /run/overlayfs/rw
mount -o remount /
If the SquashFS
files were excluded from the backup, repopulate them following the configuration section.