Skip to content

Instantly share code, notes, and snippets.

@kauld
kauld / win11.xml
Created June 12, 2024 14:40 — forked from akitaonrails/win11.xml
My Windows 11 libvirt XML configuration
<domain type='kvm'>
<name>win11-real</name>
<uuid>45768371-b871-4937-b7c2-60ed835011de</uuid>
<metadata>
<libosinfo:libosinfo xmlns:libosinfo="http://libosinfo.org/xmlns/libvirt/domain/1.0">
<libosinfo:os id="http://microsoft.com/win/10"/>
</libosinfo:libosinfo>
</metadata>
<memory unit='KiB'>33554432</memory>
<currentMemory unit='KiB'>33554432</currentMemory>
@kauld
kauld / install-ffmpeg-fedora.sh
Last active November 6, 2022 18:13 — forked from freedomlang/install-ffmpeg-centos.sh
Compile ffmpeg in Fedora 37
#!/bin/bash
if [ "`/usr/bin/whoami`" != "root" ]; then
echo "You need to execute this script as root."
exit 1
fi
INSTALL_DIR="./builds/ffmpeg"
###############################################################################
# ffmpeg installer for centos 7
# based on instructions at https://trac.ffmpeg.org/wiki/CompilationGuide/Centos