- Organized 252 files across project - Root directory: 187 → 2 files (98.9% reduction) - Moved configuration guides to docs/04-configuration/ - Moved troubleshooting guides to docs/09-troubleshooting/ - Moved quick start guides to docs/01-getting-started/ - Moved reports to reports/ directory - Archived temporary files - Generated comprehensive reports and documentation - Created maintenance scripts and guides All files organized according to established standards.
25 lines
771 B
Bash
Executable File
25 lines
771 B
Bash
Executable File
#!/bin/bash
|
|
# 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 ""
|
|
|