2024-11-24 20:15:14 +00:00
|
|
|
function InstallWSL
|
|
|
|
{
|
|
|
|
# Reference: https://learn.microsoft.com/en-us/windows/wsl/install-manual
|
|
|
|
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
|
|
|
|
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
|
|
|
|
wsl.exe --update
|
|
|
|
wsl.exe --set-default-version 2
|
|
|
|
}
|
|
|
|
|
|
|
|
function WSLInstall
|
|
|
|
{
|
|
|
|
# Skip if any WSL2 installations can be found
|
|
|
|
$installations = wsl.exe -l -v
|
|
|
|
$filtered = $installations | Where-Object { $_.Replace("`0", '') -match '^.{2}Ubuntu' }
|
|
|
|
$versions = $filtered | ForEach-Object { $_.Substring($_.LastIndexOf(' ') + 1) }
|
|
|
|
if ($null -ne $versions -and $versions.Contains('2'))
|
|
|
|
{ return
|
|
|
|
}
|
|
|
|
|
2024-11-24 21:59:51 +00:00
|
|
|
$update = Read-Host "Install/Update WSL2 now? [Y/n]"
|
|
|
|
if ($update.ToLower() -ne 'n')
|
2024-11-24 20:40:51 +00:00
|
|
|
{
|
|
|
|
# Start admin process, import this script, run 'InstallPackages' function
|
|
|
|
Start-Process powershell.exe -Verb RunAs -Wait `
|
2024-11-24 20:51:25 +00:00
|
|
|
-ArgumentList "-ExecutionPolicy", "Bypass", `
|
2024-11-24 21:39:20 +00:00
|
|
|
"-C", "cd $pwd; ipmo ./util/wsl.psm1; InstallWSL"
|
2024-11-24 20:15:14 +00:00
|
|
|
}
|
2024-11-24 21:59:51 +00:00
|
|
|
|
|
|
|
$install = Read-Host "Install WSL Distribution now? [Y/n]"
|
|
|
|
if ($install.ToLower() -eq 'n')
|
|
|
|
{ return
|
|
|
|
}
|
|
|
|
|
2024-11-24 20:15:14 +00:00
|
|
|
wsl.exe --install -d Ubuntu
|
|
|
|
|
|
|
|
# Add newly created user to sudoers group
|
|
|
|
$user = wsl.exe cut "-d:" "-f1" /etc/passwd
|
|
|
|
wsl.exe -u root echo "echo ""$user ALL=(ALL) NOPASSWD:ALL"" >> /etc/sudoers.d/$user"
|
|
|
|
|
|
|
|
# Update packages and install from list
|
|
|
|
wsl.exe sudo apt update "&&" sudo apt upgrade "-y"
|
|
|
|
wsl.exe sudo apt install "-y" (Get-Content ./util/wsl.list)
|
|
|
|
}
|
|
|
|
|
|
|
|
function InstallWSLNeovim
|
|
|
|
{
|
|
|
|
param (
|
|
|
|
[string]$source
|
|
|
|
)
|
|
|
|
|
|
|
|
Import-Module ./windows.psm1
|
|
|
|
|
|
|
|
ProcessUrlFiles -sourceDir $source
|
2024-11-24 21:55:12 +00:00
|
|
|
|
|
|
|
Push-Location
|
2024-11-24 20:15:14 +00:00
|
|
|
Set-Location "$env:TMP\nvim-config"
|
|
|
|
Write-Host "Copying (forcably) configuration to WSL..." -ForegroundColor Yellow
|
|
|
|
wsl.exe cp -rf . ~/.config/ 2>$null | Out-Null
|
2024-11-24 21:55:12 +00:00
|
|
|
Pop-Location
|
2024-11-24 20:15:14 +00:00
|
|
|
}
|