-
Notifications
You must be signed in to change notification settings - Fork 31
/
installUbuntuLTS.ps1
38 lines (29 loc) · 1.47 KB
/
installUbuntuLTS.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
Param (
[Parameter(Mandatory=$True)][ValidateNotNull()][string]$wslName,
[Parameter(Mandatory=$True)][ValidateNotNull()][string]$wslInstallationPath,
[Parameter(Mandatory=$True)][ValidateNotNull()][string]$username,
[Parameter(Mandatory=$True)][ValidateNotNull()][string]$installAllSoftware
)
# create staging directory if it does not exists
if (-Not (Test-Path -Path .\staging)) { $dir = mkdir .\staging }
curl.exe -L -o .\staging\ubuntuLTS.appx https://aka.ms/wslubuntu2004
Move-Item .\staging\ubuntuLTS.appx .\staging\$wslName.zip
Expand-Archive .\staging\$wslName.zip .\staging\$wslName
if (-Not (Test-Path -Path $wslInstallationPath)) {
mkdir $wslInstallationPath
}
wsl --import $wslName $wslInstallationPath .\staging\$wslName\install.tar.gz
Remove-Item .\staging\$wslName.zip
Remove-Item -r .\staging\$wslName\
# Update the system
wsl -d $wslName -u root bash -ic "apt update; apt upgrade -y"
# create your user and add it to sudoers
wsl -d $wslName -u root bash -ic "./scripts/config/system/createUser.sh $username ubuntu"
# ensure WSL Distro is restarted when first used with user account
wsl -t $wslName
if ($installAllSoftware -ieq $true) {
wsl -d $wslName -u root bash -ic "./scripts/config/system/sudoNoPasswd.sh $username"
wsl -d $wslName -u root bash -ic ./scripts/install/installBasePackages.sh
wsl -d $wslName -u $username bash -ic ./scripts/install/installAllSoftware.sh
wsl -d $wslName -u root bash -ic "./scripts/config/system/sudoWithPasswd.sh $username"
}