L'ISO Debian-Facile est un projet visant à faire découvrir l'univers GNU/Linux aux très grand·e·s débutant·e·s.
https://debian-facile.org/projets:iso-debian-facile
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.
30 lines
877 B
30 lines
877 B
#!/bin/sh |
|
|
|
lb config noauto \ |
|
--mode "debian" \ |
|
--system "live" \ |
|
--distribution "bullseye" \ |
|
--archive-areas "main contrib non-free" \ |
|
--security "true" \ |
|
--updates "true" \ |
|
--backports "false" \ |
|
--binary-images "iso-hybrid" \ |
|
--bootloaders "syslinux grub-efi" \ |
|
--apt-indices "true" \ |
|
--apt-recommends "true" \ |
|
--apt-secure "true" \ |
|
--apt-source-archives "false" \ |
|
--linux-package "linux-image linux-headers" \ |
|
--debian-installer "live" \ |
|
--debian-installer-distribution "bullseye" \ |
|
--debian-installer-gui "true" \ |
|
--firmware-binary "true" \ |
|
--firmware-chroot "true" \ |
|
--iso-publisher "Projet DFiso; https://dflinux.debian-facile.org; contact@debian-facile.org" \ |
|
--memtest "none" \ |
|
--win32-loader "false" \ |
|
--clean \ |
|
--debug \ |
|
--verbose \ |
|
--source "false" \ |
|
"${@}"
|
|
|