PowerShell/Scripts/upgrade-ubuntu.ps1

53 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-10-04 21:29:23 +02:00
Upgrades Ubuntu Linux to the latest (LTS) release
2021-08-16 16:51:31 +02:00
.DESCRIPTION
2021-10-16 16:50:10 +02:00
This script upgrades Ubuntu Linux to the latest (LTS) release.
2021-08-16 16:51:31 +02:00
.EXAMPLE
PS> .\upgrade-ubuntu.ps1
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-08-16 16:51:31 +02:00
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
""
2021-09-19 19:09:33 +02:00
"👉 Step 1/4: Perform a backup"
2021-08-16 16:51:31 +02:00
"It's strongly recommended to perform a backup of your data BEFORE upgrading the OS!"
$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-08-16 16:51:31 +02:00
$Confirm = read-host "Enter <yes> to perform this step (otherwise this step will be skipped)"
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-08-16 16:51:31 +02:00
$Confirm = read-host "Enter <yes> to perform this step (otherwise this step will be skipped)"
if ($Confirm -eq "yes") {
sudo apt --purge autoremove
}
""
2021-09-19 19:09:33 +02:00
"👉 Step 4/4: Upgrade Ubuntu & reboot"
2021-08-16 16:51:31 +02:00
$Confirm = read-host "Enter <yes> to perform this step (otherwise this step will be skipped)"
if ($Confirm -eq "yes") {
sudo do-release-upgrade # to latest LTS version
#sudo do-release-upgrade -d # to latest supported release
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 {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2021-08-16 16:51:31 +02:00
exit 1
}