Skip to content

grml/grml-live

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b267352 · Mar 14, 2025
Dec 27, 2024
Jan 29, 2025
Mar 10, 2025
Mar 14, 2025
Jan 29, 2025
Mar 13, 2025
Feb 2, 2023
Dec 2, 2024
Dec 2, 2024
Feb 11, 2025
Dec 28, 2024
Mar 14, 2025
Dec 27, 2024
Jan 29, 2025
Dec 27, 2024
Feb 4, 2025

Repository files navigation

grml-live

grml-live is a build system for creating a Grml and Debian based Linux Live system.

The build system is based on the class concept of FAI (Fully Automatic Installation).

Building a Debian based 64bit live system is as simple as running:

# grml-live -s sid -a amd64 -c GRMLBASE,GRML_FULL,AMD64

You can fully customize the build process, including adding additional software and your very own configuration files.

Further information is available from https://grml.org/grml-live/

In case you want to run grml-live directly from the checkout (after making sure all dependencies are installed), you should set GRML_FAI_CONFIG, the SCRIPTS_DIRECTORY, the LIVE_CONF and the templates option so that it does not use the config files of an installed grml-live package:

# export GRML_FAI_CONFIG=$(pwd)/config
# export SCRIPTS_DIRECTORY=$(pwd)/scripts
# export LIVE_CONF=$(pwd)/etc/grml/grml-live.conf
# export TEMPLATE_DIRECTORY=$(pwd)/templates
# ln -s ../../../grml-live-grml/templates/boot/addons templates/boot/  # optional
# ./grml-live -s sid -a amd64 -c GRMLBASE,GRML_FULL,AMD64