this post was submitted on 02 Jul 2026
5 points (85.7% liked)

Linux Questions

4082 readers
1 users here now

Linux questions Rules (in addition of the Lemmy.zip rules)

Tips for giving and receiving help

Any rule violations will result in disciplinary actions

founded 3 years ago
MODERATORS
 

@linuxquestions@lemmy.zip how do you install handbrake 1.11.2 avoiding flatpak ?

top 9 comments
sorted by: hot top controversial new old
[–] possiblylinux127@lemmy.zip 5 points 3 weeks ago (1 children)

You need to give more details if you want people to help you.

What's wrong with flatpak? Outside of a few limitations, flatpak generally makes things easier

[–] Alibaba420@submarin.online 1 points 3 weeks ago (2 children)

@possiblylinux127@lemmy.zip flatpak causes bloat. I run a very lean system, so l generally avoid packages from flatpak. I avoid those packages considered convenient for Ubuntu.

[–] possiblylinux127@lemmy.zip 0 points 3 weeks ago (1 children)

Handbrake takes a lot of resources already since it does video transcoding. I don't know what you mean by "convenient for Ubuntu."

[–] Alibaba420@submarin.online 0 points 3 weeks ago (1 children)

@possiblylinux127@lemmy.zip flatpak is designed primarily for Ubuntu, right ??

[–] possiblylinux127@lemmy.zip 1 points 3 weeks ago (1 children)
[–] Alibaba420@submarin.online 0 points 3 weeks ago (1 children)

@possiblylinux127@lemmy.zip l avoid snap as well. However, l do wish to work with Ubuntu studio in the future.

[–] possiblylinux127@lemmy.zip 2 points 3 weeks ago

Ubuntu is completely unaffiliated with Flatpak and does not ship with flatpak preinstalled

[–] madthumbs@lemmy.world -3 points 3 weeks ago

Mixing GTK, QT, etc., causes extreme bloat too. Linux installs will seem lean at first but there're many ways they bloat quickly.

[–] Successful_Try543@feddit.org 3 points 3 weeks ago* (last edited 3 weeks ago)

On Debian-based systems one has two options:

a) Install from Debian testing:

  • add testing repo
  • pin all packages from Testing, except handbrake*, with negative priority
  • and hope it works without having conflicting dependencies.

b) Build from source:

  • Activate the deb-src repos in the sources,
  • install build tools: sudo apt install build-essential dpkg-dev
  • install the build dependencies of handbrake: sudo apt-get build-dep handbrake,
  • download the source archive from their website (or from Debian testing),
  • follow their build instructions,
  • recommended: build a deb package and install. (see Advice For New Users On Not Breaking Their Debian System and CheckInstall for more advice)