You are not logged in.
Pages: 1
How do I check the Arch Release version (e.g., 2022.12.01) I am on?
I found I can get the kernel version with:
uname -srmLast edited by ThinkPad (2022-12-02 18:57:42)
Offline
As soon as you install it and do the initial pacman update, the Arch Release you used to install from is meaningless
Offline
┌─[Centurion ~]
└─╼ head -n1 /var/log/pacman.log
[2018-04-27 08:57] [PACMAN] Running 'pacman -r /mnt -Sy --cachedir=/mnt/var/cache/pacman/pkg --noconfirm base base-devel tmux neovim'Offline
$ cat /etc/os-release
NAME="Arch Linux"
PRETTY_NAME="Arch Linux"
ID=arch
BUILD_ID=rolling
ANSI_COLOR="38;2;23;147;209"
HOME_URL="https://archlinux.org/"
DOCUMENTATION_URL="https://wiki.archlinux.org/"
SUPPORT_URL="https://bbs.archlinux.org/"
BUG_REPORT_URL="https://bugs.archlinux.org/"
PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/"
LOGO=archlinux-logoCLI Paste | How To Ask Questions
Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L
Offline
If you're asking how to get the version from the live environment, then there's a /version file and the IMAGE_VERSION value in /etc/os-release.
root@archiso ~ # cat /version
2022.12.01root@archiso ~ # cat /etc/os-release
NAME="Arch Linux"
PRETTY_NAME="Arch Linux"
ID=arch
BUILD_ID=rolling
ANSI_COLOR="38;2;23;147;209"
HOME_URL="https://archlinux.org/"
DOCUMENTATION_URL="https://wiki.archlinux.org/"
SUPPORT_URL="https://bbs.archlinux.org/"
BUG_REPORT_URL="https://bugs.archlinux.org/"
PRIVACY_POLICY_URL="https://terms.archlinux.org/docs/privacy-policy/"
LOGO=archlinux-logo
IMAGE_ID=archlinux
IMAGE_VERSION=2022.12.01Offline
Ah, I guess that was my misunderstanding.
My takeaway is the release is only relevant for the installation media, and can be found in that live environment with:
cat /version
cat /etc/os-releaseMarking as solved.
Last edited by ThinkPad (2022-12-02 18:57:25)
Offline
Pages: 1