Skip to content

clingclangclick/os

This branch is 20 commits behind elementary/os:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Dec 11, 2023
fc6b6e1 · Dec 11, 2023
Dec 11, 2023
Oct 25, 2023
Aug 18, 2020
Dec 3, 2020
Jan 23, 2020
Jul 14, 2023
Oct 10, 2019
Sep 20, 2023
Oct 19, 2022
Sep 20, 2023
Oct 25, 2023
Aug 1, 2020
Jul 13, 2023
Jan 23, 2020

Repository files navigation

elementary

elementary OS

Build scripts for image creation



Stable Daily 7.1 Daily ARM


Building Locally

As elementary OS is built with the Debian version of live-build, not the Ubuntu patched version, it's easiest to build an elementary .iso in a Debian VM or container. This prevents messing up your host system too.

The following examples assume you have Docker correctly installed and set up, and that your current working directory is this repo. When done, your image will be in the builds folder.

64-bit AMD/Intel

Configure the channel in the etc/terraform.conf (stable, daily), then run:

docker run --rm --privileged -it \
    -v /proc:/proc \
    -v ${PWD}:/working_dir \
    -w /working_dir \
    debian:latest \
    ./build.sh etc/terraform.conf

Raspberry Pi 4

docker run --rm --privileged -it \
    -v /proc:/proc \
    -v ${PWD}:/working_dir \
    -w /working_dir \
    ubuntu:22.04 \
    ./build-rpi.sh

Pinebook Pro

docker run --rm --privileged -it \
    -v /proc:/proc \
    -v ${PWD}:/working_dir \
    -w /working_dir \
    ubuntu:20.04 \
    ./build-pinebookpro.sh

Further Information

More information about the concepts behind live-build and the technical decisions made to arrive at this set of tools to build an .iso can be found on the wiki.

Packages

No packages published

Languages

  • Shell 98.2%
  • Python 1.8%