Use the Microsoft mediacreationtool.exe on Windows 11 inside a VirtualBox VM.
Direct ISO to USB on Linux hasn't worked. Windows 11 USB installers created from dd
, WoeUSB
, Ventoy
boot, but are missing drivers for full installation.
#!/bin/bash | |
# Create maintenance script | |
mkdir -p ~/.config/systemd/user | |
# Create the maintenance script | |
cat > ~/.local/bin/update-tools.sh << 'EOF' | |
#!/bin/bash | |
# Tool maintenance script | |
set -euo pipefail |
#!/bin/bash | |
set -e | |
echo "Installing latest k9s..." | |
# Get latest release info from GitHub API | |
echo "Fetching latest release info from GitHub..." | |
LATEST_RELEASE=$(curl -s https://api.github.com/repos/derailed/k9s/releases/latest) |
#!/bin/bash | |
# Use WoeUSB to create a Windows 11 installer USB | |
# https://ppa.launchpadcontent.net/tomtomtom/woeusb/ubuntu/pool/main/w/woeusb/ | |
# sudo umount /dev/sda | |
# sudo woeusb \ | |
# --device \ | |
# /home/rana/Downloads/Win11_24H2_English_x64.iso /dev/sda \ | |
# --verbose \ |