mirror of
https://github.com/ManInDark/bootc-image.git
synced 2026-01-20 22:44:28 +01:00
FIX: add partition information
This commit is contained in:
@@ -6,7 +6,9 @@ I've attached various links I used to learn about how all of this works below, t
|
|||||||
|
|
||||||
## Build
|
## Build
|
||||||
|
|
||||||
A qcow image may be built by first calling `make oci` to build the oci image and then `make qcow` to turn it into a bootable qcow image.
|
A qcow image may be built by first calling `make oci` to build the oci image and then `make qcow` to turn it into a bootable qcow image. For hardware installation, I recommend the anaconda-iso variant.
|
||||||
|
|
||||||
|
You should adapt user & disk settings in `disk_config/user.toml` before you build your own installation iso though.
|
||||||
|
|
||||||
## Links
|
## Links
|
||||||
|
|
||||||
|
|||||||
@@ -2,3 +2,22 @@
|
|||||||
name = "testuser"
|
name = "testuser"
|
||||||
password = "test"
|
password = "test"
|
||||||
groups = ["wheel"]
|
groups = ["wheel"]
|
||||||
|
|
||||||
|
[[customizations.disk.partitions]]
|
||||||
|
type = "plain"
|
||||||
|
fs_type = "swap"
|
||||||
|
minsize = "4 GiB"
|
||||||
|
|
||||||
|
[[customizations.disk.partitions]]
|
||||||
|
type = "plain"
|
||||||
|
fs_type = "ext4"
|
||||||
|
label = "root"
|
||||||
|
minsize = "10 GiB"
|
||||||
|
mountpoint = "/"
|
||||||
|
|
||||||
|
[[customizations.disk.partitions]]
|
||||||
|
type = "plain"
|
||||||
|
fs_type = "ext4"
|
||||||
|
label = "home"
|
||||||
|
minsize = "10 GiB"
|
||||||
|
mountpoint = "/home"
|
||||||
|
|||||||
Reference in New Issue
Block a user