Linux: OK, it's 2025 now. Is it a good time to use homebrew on linux? #5964
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It works exactly the same as on macOS, but the restrictions we enforce on macOS are not currently enforced on Linux. It's simply something to keep in mind when installing from unofficial taps.
It's roughly 9% of all users so that should be doable, https://formulae.brew.sh/analytics/os-version/30d/
The lack of sandbox isn't a bug, it's a missing implementation because nobody found it important enough to add yet. In addition to that, there is no one Linux. Everyone will have a slightly different setup and will have a slightly different experience. At least for Ubuntu we're running CI for every piece of software the official tap packages, so that should all work. |
Beta Was this translation helpful? Give feedback.
-
|
I can speak a bit more to the lack of sandbox concern. Note that any sandboxing only occurs while building/packaging software. There is no runtime sandboxing/isolation (in the style of flatpak/appimage/snap). I have done some investigation on possibly implementing build-time sandboxing on Linux and I've ran into the following requirements/challenges:
|
Beta Was this translation helpful? Give feedback.

It works exactly the same as on macOS, but the restrictions we enforce on macOS are not currently enforced on Linux. It's simply something to keep in mind when installing from unofficial taps.
It's roughly 9% of all users so that should be doable, https://formulae.brew.sh/analytics/os-version/30d/
The lack of sandbox isn't a bug, it's a missing implementation because nobody found it important enough to add yet. In addition to that, t…