-
-
Notifications
You must be signed in to change notification settings - Fork 1
Linux lsb release Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to lsb-release on Linux, covering Arch Linux, CachyOS, and other distributions including distribution information, release details, and system identification.
- lsb-release Installation
- lsb-release Basics
- Distribution Information
- Release Details
- Troubleshooting
Arch/CachyOS:
# Install lsb-release
sudo pacman -S lsb-releaseDebian/Ubuntu:
sudo apt install lsb-releaseFedora:
sudo dnf install redhat-lsb-coreBasic usage:
# Show distribution information
lsb_release -a
# -a = all (shows all information)Brief info:
# Short description
lsb_release -d
# -d = description (distribution description)Distro name:
# Distribution ID
lsb_release -i
# -i = id (distribution identifier)Version:
# Release number
lsb_release -r
# -r = release (release number)Release codename:
# Codename
lsb_release -c
# -c = codename (release codename)Complete details:
# All information
lsb_release -a
# Shows:
# - Distributor ID
# - Description
# - Release
# - CodenameCheck installation:
# Check lsb-release
which lsb_release
# Install if missing
sudo pacman -S lsb-releaseThis guide covered lsb-release usage, distribution information, and release details for Arch Linux, CachyOS, and other distributions.
- uname Guide - System information
- System Configuration - System setup
-
lsb-release Documentation:
man lsb_release
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.