# elementary_os **Repository Path**: anzye/elementary_os ## Basic Information - **Project Name**: elementary_os - **Description**: mirrors for elementary os - **Primary Language**: Vala - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-07-19 - **Last Updated**: 2024-05-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README
elementary

elementary OS

Build scripts for image creation



Stable Daily 5.1 Daily 6.0

--- ## 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: ```sh docker run --privileged -i -v /proc:/proc \ -v ${PWD}:/working_dir \ -w /working_dir \ debian:latest \ /bin/bash -s etc/terraform.conf < build.sh ``` ### Raspberry Pi 4 ```sh docker run --privileged -i -v /proc:/proc \ -v ${PWD}:/working_dir \ -w /working_dir \ debian:unstable \ ./build-rpi.sh ``` ### Pinebook Pro ```sh docker run --privileged -i -v /proc:/proc \ -v ${PWD}:/working_dir \ -w /working_dir \ debian:unstable \ ./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](https://github.com/elementary/os/wiki/Building-iso-Images).