This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
KVM Host - Debian 11 | |
UEFI Boot | |
Partitions: | |
/dev/vda1 - 128M - EFI | |
/dev/vda2 - BTRFS | |
Packages: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
for o in `opkg list-installed | awk '{ print $1}'` | |
do | |
opkg status $o | grep "user installed" -B 3 | awk '/Package:/{print $2}' | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Download Brigadier - https://github.com/timsutton/brigadier/releases | |
2. Extract and run Brigadier (via CMD) with the following flags - brigadier.exe -m Macmini8,1 | |
3. Brigadier will download and extract the bootcamp drivers for Mac Mini (2018) | |
4. Navigate - BootCamp-091-87418\BootCamp\Drivers\Apple\AppleWirelessMouse | |
5. Right click on AppleWirelessMouse.inf - Install. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sha1sum - Image | |
## f185197af68fae4f0e06510a4579fc511ba27616 en_windows_server_2016_x64_dvd_9718492.iso | |
# EFI is mandatory, Install OVMF (apt-get install ovmf) | |
# Setup the image with the following script: | |
home=/srv/kvm | |
name="Windows-Server-2016" | |
memmax=6144 # in Mb | |
cpu=2 | |
disk_path=$home/vm/$name/$name.img | |
disk_size=51.2 # In Gigabytes |