This commit is contained in:
Eliezer Croitoru 2023-11-26 19:03:45 +00:00
parent 4e06b87cfd
commit 89a23662d2
4 changed files with 25 additions and 4 deletions

View File

@ -1,6 +1,13 @@
install-dependencies:
all:
echo OK
install-dependencies-rhel:
dnf install -y wget qemu-img
install-dependencies-kali:
apt update
apt install -y qemu-utils wget parted
download-alam-9-bios-image:
wget https://repo.almalinux.org/almalinux/9/cloud/x86_64/images/AlmaLinux-9-GenericCloud-latest.x86_64.qcow2 -O /tmp/AlmaLinux-9-GenericCloud-latest.x86_64.qcow2
ln -s /tmp/AlmaLinux-9-GenericCloud-latest.x86_64.qcow2 /tmp/almalinux.qcow2

View File

@ -1,4 +1,7 @@
stall-dependencies-rhel:
all:
echo OK
install-dependencies-rhel:
dnf install -y wget qemu-img
install-dependencies-kali:

View File

@ -1,6 +1,13 @@
install-dependencies:
all:
echo OK
install-dependencies-rhel:
dnf install -y wget qemu-img
install-dependencies-kali:
apt update
apt install -y qemu-utils wget parted
download-rocky-8-base-image:
wget https://download.rockylinux.org/pub/rocky/8/images/x86_64/Rocky-8-GenericCloud-Base.latest.x86_64.qcow2 -O /tmp/Rocky-8-GenericCloud-Base.latest.x86_64.qcow2
ln -s /tmp/Rocky-8-GenericCloud-Base.latest.x86_64.qcow2 /tmp/rocky.qcow2
@ -22,5 +29,6 @@ write-image-to-sda:
fix-gpt:
/bin/sh fix-gpt-free-space.sh
reboot:
reboot

View File

@ -1,4 +1,7 @@
stall-dependencies-rhel:
all:
echo OK
install-dependencies-rhel:
dnf install -y wget qemu-img
install-dependencies-kali: