Skip to content

Instantly share code, notes, and snippets.

@jfeilbach
Last active February 16, 2026 16:41
Show Gist options
  • Select an option

  • Save jfeilbach/b7e33f38dbb263f3342924d7e5a03e47 to your computer and use it in GitHub Desktop.

Select an option

Save jfeilbach/b7e33f38dbb263f3342924d7e5a03e47 to your computer and use it in GitHub Desktop.
Glances web ui fix Ubuntu 24.04 and 22.04

The Debian high priests of development performed an ancient purity test ritual and determined that glances has sinned and therefore the included obfuscated Javascript code must be expunged. The files needed to make the web UI of glances work properly were removed by the Debian clerics to protect us from the danger of an open source obfuscated javascipt library. I for one feel safer. Issue nicolargo/glances#2021

Ubuntu 24.04 Noble Numbat

curl -L -O https://github.com/nicolargo/glances/archive/refs/tags/v3.4.0.5.tar.gz
tar -zxvf v3.4.0.5.tar.gz
sudo cp -rv glances-3.4.0.5/glances/outputs/static/public/ /usr/lib/python3/dist-packages/glances/outputs/static/
rm -rfv glances-3.4.0.5

Ubuntu 22.04 Jammy Jellyfish

curl -L -O https://github.com/nicolargo/glances/archive/refs/tags/v3.2.4.2.tar.gz
tar -zxvf v3.2.4.2.tar.gz
sudo cp -rv glances-3.2.4.2/glances/outputs/static/public/ /usr/lib/python3/dist-packages/glances/outputs/static/
rm -rfv glances-3.2.4.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment