Skip to content

ISO Building#

You will need a system running Arch Linux or a derivative of it.

To build a blendOS ISO, do the following:

  1. Install archiso
    sudo pacman -S archiso
    
  2. Clone the build repo
    git clone https://git.blendos.co/blendOS/image-builder.git
    
  3. Build the ISO
    cd image-builder && sudo mkarchiso -v -w workdir/ -o out/ .
    
    The ISO will appear in the out folder.

Rebuilds

For rebuilds, you'll need to remove the out and workdir folders.

sudo rm -rf ./out ./workdir
* sudo is required as archiso creates these folders as root.