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
2022-09-06 21:42:04 +02:00
Author: Markus Fleschutz | License: CC0
2021-08-16 16:51:31 +02:00
#>
try {
""
2023-04-21 19:33:43 +02:00
"⏳ (1/4) Perform a backup!"
2021-12-29 09:22:38 +01:00
"It's strongly recommended to backup your data BEFORE the upgrade!"
2023-04-21 19:33:43 +02:00
$Confirm = Read-Host "Press <Return> to continue..."
2021-08-16 16:51:31 +02:00
""
2023-04-21 19:33:43 +02:00
"⏳ (2/4) Install update-manager-core, Upgrade Packages & Reboot"
$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
}
""
2023-04-21 19:33:43 +02:00
"⏳ (3/4) Remove obsolete kernel modules"
$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
}
""
2023-04-21 19:33:43 +02:00
"⏳ (4/4) Upgrade Ubuntu & reboot"
$Confirm = Read-Host "Enter <LTS> to upgrade to latest LTS release, <latest> to upgrade to latest Ubuntu release (otherwise this step will be skipped)"
2021-12-29 09:22:38 +01:00
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
}