This project is a Fedora Remix and aims to offer a complete system for multipurpose usage with localization support. You can download a live image and try the software, and then install it in your PC if you want. You can also customize the image starting from available scripts.
Main goals of this remix are:
See a detailed description about how to build the live media.
Note
If selinux is on, disable it during the build process:
$ sudo setenforce 0Clone the project into your <source-path> to get sources:
$ git clone https://github.com/mbugni/fedora-remix.git /<source-path>Choose or create a <target-path> folder where to put results.
Install Podman:
$ sudo dnf --assumeyes install podmanCreate the container for the build enviroment:
$ sudo podman build --file=/<source-path>/Containerfile --tag=livebuild:fc39Initialize the container by running an interactive shell:
$ sudo podman run --privileged --network=host -it --volume=/dev:/dev:ro
--volume=/<source-path>:/live/source:ro --volume=/<target-path>:/live/target
--name=livebuild-fc39 --hostname=livebuild-fc39 livebuild:fc39 /usr/bin/bashThe container can be reused and upgraded multiple times. See Podman docs for more details.
To enter again into the build container:
$ sudo podman start -ia livebuild-fc39First, start the build container if not running:
$ sudo podman start livebuild-fc39Choose a variant (eg: KDE workstation with italian support) that corresponds to a profile (eg: Workstation-it_IT).
Available profiles/variants are:
Minimal (console only, mainly for testing)Desktop (minimal KDE environment with basic tools)Workstation (KDE environment with more features like printing and scanning support)For each variant you can append -it_IT to get italian localization (eg: Desktop-it_IT).
Build the .iso image by running the kiwi-ng command:
$ sudo podman exec livebuild-fc39 kiwi-ng --profile=Workstation-it_IT --type=iso
--shared-cache-dir=/live/target/cache system build
--description=/live/source/kiwi-descriptions --target-dir=/live/targetThe build can take a while (30 minutes or more), it depends on your machine performances.
Remove unused resources when don't need anymore:
$ sudo podman container rm --force livebuild-fc39
$ sudo podman image rm livebuild:fc39You can use a tool like Ventoy to build multiboot USB devices, or simply transfer the image to a single
USB stick using the dd command:
$ sudo dd if=/<target-path>/Fedora-Remix.x86_64-<version>.iso of=/dev/<stick-device>After installation, remove live system resources to save space by running:
$ source /usr/local/libexec/remix/livesys-cleanupQuesto è un Remix di Fedora con il supporto in italiano per lingua e tastiera. Nell'immagine .iso che si ottiene sono già installati i pacchetti e le configurazioni per il funzionamento in italiano delle varie applicazioni (come l'ambiente grafico, i repo extra etc).
Il remix ha come obiettivi principali:
All notable changes to this project will be documented in the CHANGELOG.md file.
The format is based on Keep a Changelog.