Icon

Ubuntu

Ubuntu is an open source operating system for desktop, cloud, and IoT devices, developed by Canonical. It offers comprehensive security, management tooling, and professional support options.
Latest: 2204.1.8.0
Last checked: Oct 12, 2025 10:42am
Followers: 0
Rank: 1679/8726
Status: Monitored periodically · Request daily

Overview

0
License: Open sourceWinget: Available

Version & Lifecycle

0
Current: 2204.1.8.0 Predicted EOL: 2032-04-30 Update freq: Every 6 months for standard releases, 5 years for LTS releases

Community Notes

Vigneshwaran • September 6, 2025
Script
0

Silent Upgrade to 24.04 LTS version

#!/bin/bash
sudo apt-get -y update && sudo apt-get -y dist-upgrade >> “/var/log/24.04LTSUpgrade.log”
sudo apt-get -y dist-upgrade >> “/var/log/24.04LTSUpgrade.log”
sudo do-release-upgrade -f DistUpgradeViewNonInteractive >> “/var/log/24.04LTSUpgrade.log”
sudo apt-get -y –fix-broken install >> “/var/log/24.04LTSUpgrade.log”
sudo dpkg –configure -a
sudo systemctl restart sssd >> “/var/log/24.04LTSUpgrade.log”
sudo apt-get -y clean && sudo apt-get -y autoremove
exit 0

nico_k • August 18, 2025
Script
0

Simple Upgrade Script to update the packages

#!/bin/bash
apt update;
update=$?;
apt upgrade -y;
upgrade=$?;
apt dist-upgrade -y;
dupgrade=$?;
apt autoremove -y;
remove=$?;
apt autoclean -y;
clean=$?;
updatedb;
search=$?;
rm /root/upgrade.result
echo “last run: ” >>/root/upgrade.result
date >>/root/upgrade.result
echo “PiHole update:” >>/root/upgrade.result
echo $phole >>/root/upgrade.result
echo “Results:” >>/root/upgrade.result
echo “updating the patch list: ” >>/root/upgrade.result
echo $update >>/root/upgrade.result
echo “run the patches: ” >>/root/upgrade.result
echo $upgrade >>/root/upgrade.result
echo “distribution patches: ” >>/root/upgrade.result
echo $dupgrade >>/root/upgrade.result
echo “Housekeeping: ” >>/root/upgrade.result
echo “remove old updates: ” >>/root/upgrade.result
echo $remove >>/root/upgrade.result
echo “clean the logs and results: ” >>/root/upgrade.result
echo $clean>>/root/upgrade.result
echo “updating the database: ” >>/root/upgrade.result
echo $search >>/root/upgrade.result
cat /var/run/reboot-required >>/root/upgrade.result

Release Notes & Updates

0
Avg cadence:
Updates • 0

Packaging Notes

0

Ubuntu releases include Long Term Support (LTS) versions supported for 5 years; hardware enablement kernels provide newer kernel versions during LTS lifecycle

Notes

0

Ubuntu Pro provides extended security and compliance support for 10 years; Ubuntu is certified on hundreds of devices by major hardware manufacturers

See something wrong?