Install guide for running a full Arch Linux XFCE desktop inside a WSL container, accessed via RDP from Windows.
Adapted from the Podman version of this guide.
Install guide for running a full Arch Linux XFCE desktop inside a WSL container, accessed via RDP from Windows.
Adapted from the Podman version of this guide.
Live:
# 8 GB ZFS ARC Cache
echo $((8 * 1024 * 1024 * 1024)) | sudo tee /sys/module/zfs/parameters/zfs_arc_max# 4 GB ZFS ARC Cache| #!/usr/bin/env bash | |
| # --- 1. Disable MOTD News --- | |
| systemctl stop motd-news.timer motd-news.service | |
| systemctl disable motd-news.timer | |
| chmod -x /etc/update-motd.d/50-motd-news | |
| if [ -f /etc/default/motd-news ]; then | |
| sed -i 's/^ENABLED=1/ENABLED=0/' /etc/default/motd-news | |
| fi |
| #!/usr/bin/env bash | |
| # Fix NVIDIA RTX 3050 Mobile on Ubuntu 26.04 (XPS 15 9520) | |
| # Root causes found: | |
| # 1) GRUB has nomodeset -> disables KMS (i915 + nvidia-drm) | |
| # 2) DKMS nvidia modules signed with a private key obscure Canonical-signed modules | |
| # 3) Secure Boot is ON and MOK only has Canonical CA -> DKMS modules cannot load | |
| # 4) Partial server/headless stack installed instead of full desktop driver | |
| set -euo pipefail | |
| if [[ ${EUID:-$(id -u)} -ne 0 ]]; then |
// My Gists
https://gist.github.com/timsonner
// New Gist Shortcut
| # Fixes Pangolin DNS issues with some mobile hotspots where they don't allow 1.1.1.1 or others and force device to use 172.20.10.1:53 | |
| # This patches olm config file on the fly to allow connection. Allows Pangolin tunnel over personal hotspot. uWu. | |
| # Run in elevated PowerShell terminal | |
| # Get the active network's DNS server IP (excluding loopback and Pangolin itself) | |
| $dnsServers = @(Get-DnsClientServerAddress -AddressFamily IPv4 | | |
| Where-Object { $_.InterfaceAlias -ne "Pangolin" -and $_.InterfaceAlias -notlike "Loopback*" -and $_.ServerAddresses.Count -gt 0 } | | |
| Select-Object -ExpandProperty ServerAddresses) | |
| if ($dnsServers.Count -eq 0) { |
This guide shows you how to route sound from your Windows client to your remote Linux server using PulseAudio and SSH tunneling. This enables your CLI agent or remote application (like Hermes) to record and play sound directly.
pulseaudio-win32 by pgaskin).