Added mikrotik CHR

This commit is contained in:
Eliezer Croitoru 2023-12-04 04:52:08 +00:00
parent 6d54421c10
commit cdcf8c3598
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,20 @@
all:
echo OK
install-dependencies-rhel:
dnf install -y wget qemu-img unzip
install-dependencies-kali:
apt update
apt install -y qemu-utils wget parted unzip
download-7.12.1-image:
mkdir -p /tmp/chr
wget https://download.mikrotik.com/routeros/7.12.1/chr-7.12.1.img.zip -O /tmp/chr/chr-7.12.1.img.zip
cd /tmp/chr/ && unzip chr*.img.zip && ln -s chr-7.12.1.img chr.img
write-image-to-sda:
qemu-img convert -p -f raw -O raw /tmp/chr/chr.img /dev/sda
fix-gpt:
/bin/sh fix-gpt-free-space.sh

View File

@ -0,0 +1,3 @@
#!/usr/bin/env sh
printf "fix\n" | parted ---pretend-input-tty /dev/sda print