this post was submitted on 31 Aug 2025
6 points (68.8% liked)

Linux

58126 readers
162 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 6 years ago
MODERATORS
 

I frequently encounter issues. Does someone have a working setup or should I simlpy use distrobox for IDEs?

top 6 comments
sorted by: hot top controversial new old
[–] FrostyPolicy@suppo.fi 4 points 1 week ago (1 children)
[–] jumponboard@lemmy.world 2 points 1 week ago (1 children)

Didn't work.

Probably it's not a permission problem.

[–] eugenia@lemmy.ml 2 points 1 week ago

Try the .appimage version, at least vscodium is coming in many different formats. I personally avoid flatpaks due to size and permission issues (e.g. gimp can't use its special extra-featured printing panel, which makes it absolutely useless for me as an artist on a flatpak).

[–] muhyb@programming.dev 3 points 1 week ago

If not a permission issue then it's most likely a PATH issue.

For example, for Cargo try this:

flatpak --user override com.vscodium.codium --env=PATH=/app/bin:/usr/bin:/home/$USER/.cargo/bin

Actual errors would be helpful.

[–] stuner@lemmy.world 1 points 1 week ago

What kind of issues did/do you encounter?

The VS Code/Codium essentially provide a separate development environment within the flatpak container. All the tools there, and the shell are separate from your actual system. There are some ways to work around this (https://github.com/flathub/com.vscodium.codium/blob/master/README.md). I gave up on the Flatpak and installed a native package. Containers are nice, but they have their limitations.