In bullet point 4 inside the Host Setup topic, the link provided to download the ISO gives the user too many options and unclear instructions on wher exactly to find the ISO file. We propose that the first link is always to the latest release and then additional versions can be found on a second link. Other references to the mirror are updated as well. Additionally, on the Introduction page (https://docs.starlingx.io/), the provided link is for release 8. We also changed it to point to the latest release. The main page still shows the current version, however now the change is pretty straighforwar for when new releases come. Closes-Bug: 2016032 Change-Id: I94201ef4f436b137f2601b033cb344d726384b55 Signed-off-by: Bruno Muniz <bruno.muniz@encora.com>
3.8 KiB
Create Bootable USB
Follow the instructions for your system to create a bootable USB with the StarlingX ISO:
bootable-usb-linux
bootable-usb-mac
bootable-usb-windows
Create a bootable USB drive on Linux*
Open a terminal and get root privilege:
sudo -s
Get the latest StarlingX ISO from the CENGN StarlingX mirror. Alternately, you can get an older release ISO from here.
Navigate to the directory with the StarlingX ISO.
Plug in the USB drive and get its identifier:
lsblk
This will list available disks and their partitions.
Unmount the USB drive before burning an image onto it. (Note that some Linux distros automatically mount a USB drive when it is plugged in.) For example:
umount /dev/sdd2
Burn the StarlingX bootimage.iso onto the USB drive:
dd if=</path/to/bootimage.iso> of=<your USB device> bs=1M status=progress
Caution
Not fully unmounting the USB drive before burning an image can cause file system checksum errors. If this happens, burn the image again, ensuring all the USB drive partitions are unmounted first.
Create a bootable USB drive on macOS*
Launch the Terminal app.
Get the latest StarlingX ISO from the CENGN StarlingX mirror. Alternately, you can get an older release ISO from here.
Navigate to the directory with the ISO.
Plug in a USB drive and get its identifier:
diskutil list
This will list available disks and their partitions.
Unmount the USB drive identified in the previous step. For example:
diskutil umountDisk /dev/disk2
Burn the StarlingX bootimage.iso onto the USB drive. The example below burns an ISO onto `<your USB device>`:
sudo dd if=</path/to/bootimage.iso> of=<your USB device> bs=1m
To speed up the imaging process, add an ‘r’ in front of the disk identifier. For example /dev/rdisk2.
Press
<CTL>-T
to check imaging progress.Eject the USB drive.
diskutil eject /dev/disk2
Create a bootable USB drive on Windows*
- Get the latest StarlingX ISO from the CENGN StarlingX mirror. Alternately, you can get an older release ISO from here.
- Download the Rufus utility to burn the image onto a USB drive. Only use the latest version of Rufus.
- Plug in the USB drive and open Rufus.
- Under Boot selection, click the
SELECT
button. - Find and select the StarlingX ISO.
- Click the
START
button. - When the dialogue appears, select
Write in ISO image mode (Recommended)
. - Select the Windows taskbar menu for USB and select eject.