Système d'exploitation 100% GNU basé sur Debian avec un mix de XFCE et GNOME.
Live persistant avant tout
https://svprognu.weblib.re
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/bin/sh
set -e
lb config noauto \ --bootloaders "syslinux,grub-efi" \ --distribution "buster" \ --architectures "amd64" \ --archive-areas "main contrib non-free" \ --apt-recommends "true" \ --debian-installer-gui "true" \ --debian-installer "live" \ --bootappend-live "lang=fr_FR.UTF-8 locales=fr_FR.UTF-8 keyboard-layouts=fr splash timezone=Europe/Paris utc=yes keyboard-model=pc105 hostname=svprognu boot=live persistence components username=svpro_gnu" \ --bootappend-install "locales=fr_FR.UTF-8" \ --binary-images "iso-hybrid" \ --uefi-secure-boot "enable" \ --linux-flavours "amd64" \ --linux-packages "linux-image linux-headers" \ --iso-volume "SVPRO_GNU" \ --iso-application "SVPRO_GNU" \ --backports "false" \ --updates "true" \ "${@}"
|