Creating the Live Environment

Creating a live environment to boot into and run the Serpent OS installer

Creating a Bootable USB Drive

You’ll need your USB drive and the ISO file downloaded from the Serpent OS download page.

Linux

  1. Insert your USB drive into an available USB port on your machine.
  2. Open a terminal window and navigate to the directory where the ISO file is located.
cd ~/Downloads
  1. Identify the device name of your USB drive by running the following command:
lsblk

Look for the device name of your USB drive, it will be something like /dev/sdX where X is a letter representing the device.

  1. Now run the following command to write the ISO file to the USB drive:
sudo dd if=serpentos-<version>.iso of=/dev/sdX bs=4M conv=fsync oflag=direct status=progress

This command will write the ISO file to the USB drive and you’ll see a progress indicator as it completes.

  1. To ensure the write process has completed successfully, run the following command:
sudo sync

Once the command has run, you can safely remove the USB drive from your machine.

Windows

  1. Insert your USB drive into an available USB port on your machine.
  2. Download and install Rufus, a free and open-source tool for creating bootable USB drives.
  3. TODO: Add steps for using Rufus to create a bootable USB drive.