ungleich-tools/install-any-linux.sh

22 lines
525 B
Bash
Raw Normal View History

#!/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