# Beszel v0.18.2 - Product: Beszel (https://whatsnew.fyi/product/beszel) - Vendor: henrygd - Date: 2026-01-12 - Version: v0.18.2 - Original notes: https://github.com/henrygd/beszel/releases/tag/v0.18.2 - Permalink: https://whatsnew.fyi/product/beszel/releases/v0.18.2 What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **fixed** — Fix regression where agent binary was dynamically linked, causing failures on musl-based Linux distributions like Alpine and OpenWrt - **added** — Add separate dynamically linked glibc build for Linux - **changed** — Agent update command now detects your system's C library and downloads the optimal binary (static or glibc) on Linux - **fixed** — Fix GPU ID collision between Intel and NVIDIA collectors - **fixed** — Fix some Indonesia translations - **fixed** — Fix Jetson tegrastats regex for pre Jetpack5 - **changed** — Only hide GPU engine graph if entire usage is 0% This release fixes a regression that resulted in the agent binary being dynamically linked, causing it to fail on musl-based Linux distributions like Alpine and OpenWrt. If you were affected by this, see below for instructions to fix. ##### What's Changed - Add separate dynamically linked glibc build for Linux. (#1618) - Fix GPU ID collision between Intel and NVIDIA collectors. (#1522) - Agent `update` command now detects your system's C library and downloads the optimal binary (static or glibc) on Linux. - fix: some of indonesia translate by @marmar76 in https://github.com/henrygd/beszel/pull/1625 - Jetson tegrastats regex pre jetpack5 by @Vascolas007 in https://github.com/henrygd/beszel/pull/1631 - site: only hide GPU engine graph if entire usage is 0% by @crimist in https://github.com/henrygd/beszel/pull/1624 ##### New Contributors * @marmar76 made their first contribution in https://github.com/henrygd/beszel/pull/1625 * @Vascolas007 made their first contribution in https://github.com/henrygd/beszel/pull/1631 ##### Fix for musl-based Linux distributions If you updated to a version that currently fails to start (`./beszel-agent: not found`), you can restore your agent by running the following commands: ```bash #### 1. Download latest static binary (replace 'amd64' with your arch if different) curl -L https://github.com/henrygd/beszel/releases/latest/download/beszel-agent_linux_amd64.tar.gz | tar -xz #### 2. Replace the broken binary mv beszel-agent /opt/beszel-agent/beszel-agent chmod +x /opt/beszel-agent/beszel-agent #### 3. Restart the service #### For Alpine: rc-service beszel-agent restart #### For OpenWRT: /etc/init.d/beszel-agent restart ``` **Full Changelog**: https://github.com/henrygd/beszel/compare/v0.18.1...v0.18.2