forked from ubuntucinnamon/iso-builder-devel
-
-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: K.B.Dharun Krishna <[email protected]>
- Loading branch information
Showing
9 changed files
with
41 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto eol=lf |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ updates: | |
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
schedule: | ||
interval: 'monthly' | ||
interval: 'weekly' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
builds/ | ||
tmp/ | ||
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,38 @@ | ||
<div align="center"> | ||
|
||
## ISO Builder | ||
## Vanilla OS Live ISO Builder | ||
|
||
<sup2>This ISO builder was basically a combination of previous efforts from Ubuntu | ||
Get the latest Vanilla OS ISOs from the [Releases page](https://github.com/Vanilla-OS/live-iso/releases). | ||
|
||
--- | ||
|
||
<sup2>This ISO builder is a combination of previous efforts from Ubuntu | ||
Budgie (budgie-remix at the time), some stuff from livecd-rootfs from launchpad | ||
and Elementary OS, thanks to the amazing devs from all around! | ||
Elem Link: https://github.com/elementary/os</sup2> | ||
|
||
------------ | ||
|
||
</div> | ||
|
||
> Releases usually follows the Ubuntu release cycle i.e. `22.10, 23.04..`. Releases named `22.10-r1` means that the release is still 22.10 with just a refreshed of the repositories and packages, this is meant to help users getting the latest release with updated packages, with more fixes and features OTB. | ||
## Why not just fork from livecd-rootfs? | ||
|
||
The Ubuntu ISO's are built with ubuntu-cdimage scripts and with livecd-rootfs, | ||
but it has a lot of extra scripts that are hard to navigate all at once unless | ||
you have previous experience and is a bottomless well of asterisks attached to it. | ||
It's better to get something not perfect, but close enough. | ||
--- | ||
|
||
## Building Locally | ||
|
||
As UCR is built with the Debian version of `live-build`, not the Ubuntu patched version, it's easiest to build an iso in a vanilla-pico VM or container. This prevents messing up your host system too. | ||
|
||
The following example uses Docker and assumes you have Docker correctly installed and set up: | ||
|
||
1) Clone this project & `cd` into it: | ||
1.) Clone this project & `cd` into it: | ||
|
||
``` | ||
git clone https://github.com/Vanilla-OS/live-iso.git && cd live-iso | ||
``` | ||
```sh | ||
git clone https://github.com/Vanilla-OS/live-iso.git && cd live-iso | ||
``` | ||
|
||
2) Configure the channel in the `etc/terraform.conf` (unstable, all). | ||
2.) Configure the channel in the `etc/terraform.conf` (unstable, all). | ||
|
||
3) Run the build: | ||
3.) Run the build: | ||
|
||
``` | ||
docker run --privileged -i -v /proc:/proc \ | ||
-v ${PWD}:/working_dir \ | ||
-w /working_dir \ | ||
ghcr.io/vanilla-os/pico:main \ | ||
/bin/bash -s etc/terraform.conf < build.sh | ||
``` | ||
```sh | ||
docker run --privileged -i -v /proc:/proc \ | ||
-v ${PWD}:/working_dir \ | ||
-w /working_dir \ | ||
ghcr.io/vanilla-os/pico:main \ | ||
/bin/bash -s etc/terraform.conf < build.sh | ||
``` | ||
|
||
4) When done, your image will be in the `builds` folder. | ||
4.) When done, your image will be in the `builds` folder. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters