Skip to content

Instantly share code, notes, and snippets.

@EverythingSmartHome
Last active March 13, 2026 01:41
Show Gist options
  • Select an option

  • Save EverythingSmartHome/e4151d7e9b7c1c953a72ddb536730c6d to your computer and use it in GitHub Desktop.

Select an option

Save EverythingSmartHome/e4151d7e9b7c1c953a72ddb536730c6d to your computer and use it in GitHub Desktop.
Installs HyperHDR v16.0.0.1
sudo apt update && sudo apt upgrade -y
wget https://github.com/awawa-dev/HyperHDR/releases/download/v16.0.0.1/HyperHDR-16.0.0.1-Linux-`uname -m`.deb
sudo apt install ./HyperHDR-16.0.0.1-Linux-`uname -m`.deb
sudo sed -i '/^User/d' /etc/systemd/system/hyperhdr\@.service
sudo systemctl daemon-reload
sudo service hyperhdr@pi restart
sudo service hyperhdr@pi status
@BaileCliste
Copy link

Trying to install on a 3B+ with the commands didn't work for me

uname -m was returning armv7l but there isn't a version for that

I used v6 but then had to tell it to ignore libglib package as that has been renamed
sudo dpkg -i --ignore-depends=libglib2.0-0 ./HyperHDR-21.0.0.0-Linux-armv6l.deb

After that it installed ok

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment