Add script to install any Linux to any computer

This commit is contained in:
Nico Schottelius 2021-07-09 19:33:04 +02:00
parent 2dae22a0d7
commit ace073e89a

21
install-any-linux.sh Normal file
View file

@ -0,0 +1,21 @@
#!/bin/sh
# 2021-07-09
# Objective: install any Linux automatically to a disk
# Made by ungleich
# Made for bare metal
# Requirements:
# The OS image needs to be in tar format and needs to contain grub
if [ $# -ne 2 ]; then
echo "$0 os-image.tar [usb|disk]"
echo "os-image.tar contains the OS"
echo "usb mode: create a bootable usb stick including this script to auto install to disk"
echo "disk mode: actually install os-image.tar to the first disk"
exit 1
fi
os=$1; shift
mode=$1; shift
# isohybrid