Add GUI LiveCD

This commit is contained in:
longpanda
2021-09-29 19:26:50 +08:00
parent d72bb15956
commit 32c5b5deea
19 changed files with 315 additions and 3 deletions

23
LiveCDGUI/download_ext.sh Normal file
View File

@@ -0,0 +1,23 @@
#!/bin/bash
date +"%Y/%m/%d %H:%M:%S"
echo downloading EXT files ...
wget -q -P ./EXT/ https://github.com/ventoy/KioskFiles/releases/download/v1.0/Porteus-Kiosk-5.2.0-x86_64.iso
wget -q -P ./EXT/ https://github.com/ventoy/KioskFiles/releases/download/v1.0/06-fonts.xzm
[ -d ./__tmp__ ] && rm -rf ./__tmp__
mkdir __tmp__
mount ./EXT/Porteus-Kiosk-5.2.0-x86_64.iso ./__tmp__
cp -a ./__tmp__/boot/vmlinuz ./EXT/
cp -a ./__tmp__/boot/initrd.xz ./EXT/
cp -a ./__tmp__/xzm/* ./EXT/
umount ./__tmp__
rm -rf ./__tmp__
rm -f ./EXT/Porteus-Kiosk-5.2.0-x86_64.iso
date +"%Y/%m/%d %H:%M:%S"
echo downloading EXT files finish ...