システム確認
$ cat /etc/os-release
PRETTY_NAME="Ubuntu 22.04.3 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.3 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy
アップグレード可能なバージョン確認
$ cat /etc/os-release
Checking for a new Ubuntu release
There is no development version of an LTS available.
To upgrade to the latest non-LTS development release
set Prompt=normal in /etc/update-manager/release-upgrades.
システム更新作業
コマンドを使って全体のパッケージを更新する。
sudo apt -y update
sudo apt -yV upgrade
カーネルに関連するパッケージの更新
sudo apt -yV dist-upgrade
不要なパッケージを削除
sudo apt -yV autoremove
ャッシュをクリーンアップ
sudo apt autoclean
システムを再起動する。
sudo shutdown -r now