-
Notifications
You must be signed in to change notification settings - Fork 0
How Build Custom ISO
You need Debian 12+ based operating system.
-
Install live-build
sudo apt install -y live-build -
Get build configs
git clone https://github.com/b1-ack/operating-system/ -
Create a directory for work
mkdir custom.iso cd custom.iso -
Mark up the configs for assembly For x64
bash ../operating-system/amd64.shFor x32bash ../operating-system/i386.sh -
Apply the configs For x64
cp -r ../operating-system/amd64 ./For x32cp -r ../operating-system/amd64 ./ && cp -r ../operating-system/i386 ./ -
Customize your configs config/archives config/hooks config/includes.binary config/includes.chroot_after_packages config/package-lists - > live.list.chroot: packages to live mode custom.list.chroot: your packages for installed system
-
Build ISO
sudo lb build
During the build, you'll be asked if you're sure about the bootloader settings. To confirm, enter the requested passphrase. When complete, you'll receive a live-image-amd64.iso or live-image-i386.iso file.