PowerShell/Scripts/upgrade-ubuntu.ps1

55 lines
1.4 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-08-16 16:51:31 +02:00
.SYNOPSIS
2021-12-29 09:22:38 +01:00
Upgrades Ubuntu Linux
2021-08-16 16:51:31 +02:00
.DESCRIPTION
2021-12-29 09:22:38 +01:00
This PowerShell script upgrades Ubuntu Linux to the latest (LTS) release.
2021-08-16 16:51:31 +02:00
.EXAMPLE
PS> .\upgrade-ubuntu.ps1
.LINK
https://github.com/fleschutz/PowerShell
2022-01-30 10:49:30 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-08-16 16:51:31 +02:00
#>
try {
""
2021-09-19 19:09:33 +02:00
"👉 Step 1/4: Perform a backup"
2021-12-29 09:22:38 +01:00
"It's strongly recommended to backup your data BEFORE the upgrade!"
2021-08-16 16:51:31 +02:00
$Confirm = read-host "Press <Return> to continue..."
""
2021-09-19 19:09:33 +02:00
"👉 Step 2/4: Install update-manager-core, Upgrade Packages & Reboot"
2021-12-29 09:22:38 +01:00
$Confirm = read-host "Enter <yes> to perform this step (otherwise it will be skipped)"
2021-08-16 16:51:31 +02:00
if ($Confirm -eq "yes") {
sudo apt install update-manager-core
sudo apt update
sudo apt list --upgradable
sudo apt upgrade
sudo reboot
}
""
2021-09-19 19:09:33 +02:00
"👉 Step 3/4: Remove obsolete kernel modules"
2021-12-29 09:22:38 +01:00
$Confirm = read-host "Enter <yes> to perform this step (otherwise it will be skipped)"
2021-08-16 16:51:31 +02:00
if ($Confirm -eq "yes") {
sudo apt --purge autoremove
}
""
2021-09-19 19:09:33 +02:00
"👉 Step 4/4: Upgrade Ubuntu & reboot"
2021-12-29 09:22:38 +01:00
$Confirm = read-host "Enter <LTS> to upgrade to latest LTS release, <latest> to upgrade to latest Ubuntu release (otherwise this step will be skipped)"
if ($Confirm -eq "LTS") {
sudo do-release-upgrade
sudo reboot
} elseif ($Confirm -eq "latest") {
sudo do-release-upgrade -d
2021-08-16 16:51:31 +02:00
sudo reboot
}
2021-08-24 20:46:03 +02:00
"✔️ Done."
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-08-16 16:51:31 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-08-16 16:51:31 +02:00
exit 1
}