To the Bat Cluster! Setting Up Enterprise Linux for ARM

with Josh Everett (Red Hat) and Massimo Moran (ARM)

Have Cluster, Will Travel

The Dragon Propulsion Laboratory examined in depth the excellent X-Gene ARM chips that were an early entrant on the ARM 64-bit scene and enabled so much of the software-side Linux OS development on ARMv8. More recently, we built a custom cluster in cooperation with Wayne Enterprises that we affectionately refer to as our “Bat Cluster”. In this third blog, we are moving back to the software side of the equation, setting up Red Hat Enterprise Linux on the Bat Cluster itself.

Enterprise Bits #

Red Hat Enterprise Linux introduced full support for 64-bit ARM with release 7.4 in November of 2017, and while there are many flavors of Linux on ARM, only something as robust and secure as RHEL would do for a sophisticated user like Wayne Enterprises!

The most commonplace strategy for board bring-up on ARM development boards is to use a PXE server to deliver boot images to the board over the network, even for install purposes. While that is a very suitable process for development shops, setting up dedicated DHCP server is somewhat unwieldy for personal use. We chose to perform a local install instead without requiring network support. As the Mustang board is headless and does not have any video interface, this is somewhat different from the RHEL install process we are all used to.

We are reserving the SATA interfaces for bulk storage use, ideally with Ceph — but that’s another blog. That leaves the SD Card (properly the Serial Digital Interface) and USB ports as our best alternatives to boot the board all the way to Linux user space. Both SD and USB interfaces are fully supported by U-Boot, but we did not fathom a satisfactory way to boot from SD card within the depths of the latest UEFI firmware.

Write rate dropping threefold on cheap USB media as GC is overwhelmed by sustained writing

We also had a fascinating adventure discovering that USB 3.1 storage media can actually underperform older USB 2 storage with better garbage collection implementations. As operating system boot generates a burst of write activity on account of logs, this can actually lead to device timeouts. We discarded some cheaper, unbranded USB keys and replaced them with a trusty old standby, the same SanDisk Cruzer Fit USB keys that were once selected as the internal boot media of the first generation Ubuntu Orange Box.

Orange Box Ports Galore.png

Back to The Bat Lab #

We started by downloading the Enterprise Linux ISO images for ARM 64 from Red Hat’s content distribution network (a developer subscription may be required for access).

RHEL 7.6 for ARM Download Page.png

In this blog we use the second binary DVD image exclusively, labeled Red Hat Enterprise Linux Alternate Architectures 7.6 Binary DVD (rhel-alt-server-7.6-aarch64-dvd.iso).

$ ls -lh rhel-alt-server-7.6-aarch64-dvd.iso
-rw-rw-r-- 1 jeverett jeverett 3.0G Feb 15 16:38 rhel-alt-server-7.6-aarch64-dvd.iso
$

We laid out the install setup as we did back in 2015, except that we have finally upgraded our USB-to-SATA cable to USB 3. Our plan is to boot from a temporary SATA SSD device (a 120GB Samsung 750 EVO we had laying around), as it is very easy to boot these boards from the SATA interface, and install from here on to our permanent USB boot drives (the ever reliable SanDisk Cruze drives I mentioned earlier).

USB to SATA connection

dd to the Rescue #

We keep things easy and lay down a single partition, mostly because we want a clean GPT partition table on the drive to start with. disks comes in handy for this purpose as usual. We then image the whole drive with the bootable ISO we just downloaded:

sudo dd if=rhel-alt-server-7.6-aarch64-dvd.iso of=/dev/sda
sync

Build Partition Layout

With our newly prepared disk, we are ready to install RHEL directly on the boot USB drives we are setting up for each Mustang board. We are designating our bootable drives as USB FS0:\, which maps to the top USB port on the board’s IO stack. The rest of the board bringup setup involves just configuring the Serial-to-USB cable by connecting to UART0, which is the bottom serial port.

Connect to the serial port using screen:

sudo screen /dev/ttyUSB0 115200

EVK 3PCx Ports

Actually Installing RHEL #

The first screen offers to boot from install media or, alternatively, to verify the install media before booting. Our serial terminal is running on a Fedora system, in case you wonder about the background art.

Its Alive

In deference to Murphy’s Law, we recommend you choose to verify the install medium on its first use and not tempt fate.

Booting

Once the Installer drive boots, we minimally need to carry out these three steps to install a working RHEL 7.6 system:

Install Main

We chose the US-EST timezone as we are doing this build at our Westford engineering HQ, and no, our password is not “password”. To save ourselves the need to set up further configuration later, we also configured the following:

If the installer requires it after these steps you may have to confirm the software selection once more (4, 1). Hit b to proceed and start installing.

Ready to go

Enterprising ARM #

Final partition setup

Our install resulted in the bootable partition layout above. After rebooting, we keep tapping the escape key in our screen serial connection until we are prompted with the UEFI setup utility.

Bootup

UEFI setup

The boot configuration may happen to be right, there is nothing in the Fourth Law of Thermodynamics to prevent it. Yet again, it may not be, so we check. The boot order should list our SanDisk USB key as the first boot option in the boot menu.

Boot Configuration

We are ready to reboot again, but not before we set up wired network connections for each of our boards. We chose to configure the eth1 network interface amongst the four this board has available. The corresponding port is found at the base of the dual ethernet socket located just right of the serial ports.

If all goes well, you will be prompted to log in. Log in as root with the password you selected at setup time.

RHEL Login

Subscription Manager #

To support updates and package installs, we need to activate the RHEL subscription:

subscription-manager register
subscription-manager attach --auto

You will be prompted to authenticate with the customer portal as part of this process.

Now in Triplicate #

Now that we have a fully configured host, we proceed to replicate it for the other boards. We start using dd to copy the master image to a local disk, and then in turn imaging two more USB keys from the master image. On our laptop the first USB storage device is found at sdb, but this is likely to be different on your system:

sudo dd if=/dev/sdb of=master_node_image status=progress
sudo dd of=/dev/sdb if=master_node_image status=progress

We need to update the hostname to differentiate each device. We acccomplish this as follows after first boot. For example, we renamed the second board thusly:

hostnamectl set-hostname batcluster-2

Idle cluster power draw

Power Footprint #

We took a few power draw measurements of the cluster as we completed the setup. In our testing, a single X-Gene 1 Mustang board of the 3PCx revision is showing a power envelope between 32 and 36 watts. This measurement was taken with idle CPU, and includes the board itself, the USB storage key and active serial and ethernet connections. The power supply efficiency was rated 80 Plus (Bronze). Peak load was at 46W in normal operation, and pegging the CPU at 100% with a fork bomb produced the maximum draw of 63W.

Measuring the entire cluster, we benchmarked the idle power draw at a steady 110 watts — that is for 24 cores! — and pegging all CPUs at 100% with an infinite shell loop for each core raised the power draw to a still cool 193 watts. Pretty amazing.

Comments? Discuss on Hacker News.

Acknowledgements #

The authors wish to thank Edward Gasiorowski of Ampere Computing for his invaluable assistance and his knowledge of multiple generations of the X-Gene hardware.

UPDATE:

There is an additional location to download RHEL 7.6 for ARM that may come in handy. Credit goes to Yan Fisher!

 
48
Kudos
 
48
Kudos

Now read this

Finding UX in the Trash

The point of UX is making things effortless # I usually resist sharing at large my opinions on how to make software, out of some impostor syndrome nonsense modesty thing. But this was too much fun not to write it up and share with you... Continue →