Files
proxmox/scripts/restart-wsl.sh
defiQUG b3a8fe4496
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
chore: sync all changes to Gitea
- Config, docs, scripts, and backup manifests
- Submodule refs unchanged (m = modified content in submodules)

Made-with: Cursor
2026-03-02 11:37:34 -08:00

27 lines
798 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# Script to restart WSL from Windows
# Usage: Run this from Windows PowerShell: wsl bash ~/projects/proxmox/scripts/restart-wsl.sh
echo "=========================================="
echo "WSL Restart Script"
echo "=========================================="
echo ""
echo "This script will restart WSL."
echo "You can run it from Windows PowerShell with:"
echo " wsl --shutdown"
echo ""
echo "Or restart just Ubuntu with:"
echo " wsl --terminate Ubuntu"
echo ""
echo "After restart, WSL will reconnect automatically."
echo ""
echo "Current WSL status:"
wsl.exe --list --verbose 2>/dev/null || echo "Cannot check WSL status from within WSL"
echo ""
echo "To restart, run from Windows PowerShell (as Administrator if needed):"
echo " wsl --shutdown"
echo ""