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.
22 lines
1.0 KiB
22 lines
1.0 KiB
#!/bin/sh |
|
|
|
set -e |
|
|
|
#### |
|
### Debian 11 Pixel Live Configurator |
|
## https://git.lnx4.ru/lnx4/debian-pixel-live |
|
# |
|
|
|
mkdir build && cd build |
|
lb config -d bullseye --debian-installer live \ |
|
--debian-installer-distribution bullseye \ |
|
--debian-installer-gui true \ |
|
--linux-packages "linux-image linux-headers" \ |
|
--bootappend-live "boot=live quiet splash components timezone=Europe/Moscow locales=ru_RU.UTF-8 keyboard-layouts=us,ru keyboard-variants=, keyboard-model=pc105 keyboard-options=grp:alt_shift_toggle" \ |
|
--archive-areas "main contrib non-free" \ |
|
--debootstrap-options "--variant=minbase --include=apt-transport-https,ca-certificates,openssl" \ |
|
--iso-application "Debian Pixel Live" \ |
|
--iso-publisher https://git.lnx4.ru/lnx4/debian-pixel-live \ |
|
--image-name debian-pixel-live-$(date '+%d%m%Y') |
|
cp -R ../config . |
|
#echo "Enjoy!"
|
|
|