Go to file
Pratham Patel f420775701
read version from /etc/os-release
2024-02-10 09:23:25 +05:30
includes read version from /etc/os-release 2024-02-10 09:23:25 +05:30
scripts read version from /etc/os-release 2024-02-10 09:23:25 +05:30
LICENSE init commit 2023-09-13 06:59:56 +05:30
README.md use "&&" between nmcli con down and con up to not get stuck lol 2023-11-19 18:57:40 +05:30
Rocky.ks revert from two images to only a single image (GPT) 2023-10-16 08:08:05 +05:30
create-image.sh read version from /etc/os-release 2024-02-10 09:23:25 +05:30

README.md

README

Expanding the rootfs

sudo /usr/local/bin/expand-rootfs.sh
sudo systemctl reboot

Notes for building your own image

  1. You need the packages appliance-tools perl-Digest-SHA pykickstart zstd (some packages are from the EPEL repository).
  2. You can only build aarch64 images if your host is aarch64. I have not hardcoded a particular $basearch in the repositories

Other

Kickstart documentation

Credits

  • Bryan Zuelly
  • Pablo Greco
  • Pratham Patel
  • Sherif Nagy
sudo nmcli con modify 'Wired connection 1' \
    ifname eth0 \
    ipv4.method manual \
    ipv4.addresses 10.0.0.170/24 \
    gw4 10.0.0.1 \
    ipv4.dns 1.1.1.1
sudo nmcli con down 'Wired connection 1' && sudo nmcli con up 'Wired connection 1'