this post was submitted on 23 Sep 2023
30 points (96.9% liked)
Linux
48255 readers
786 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It sounds like your main problem is that distrobox somehow eats up the output of the commands run in it? Maybe you are missing some other switch then.
I am assuming the
--commands
switch does actually run the commands, but does not show the outputs.Usually when distrobox takes over the terminal as you describe it, it could be boiled down to "taking over" the terminal's stdin, stdout and stderr which your GUI terminal app/emulator thenr renders out. (What actually probably happens is that distrobox calls
docker run
with-it
switches which allocate a pseudo-TTY, basically another terminal - keep in mind these terminals or ttys in other words are not the same as [usually] graphical terminal emulators).I started looking into this a few days ago but got nowhere. I think you are right about the pseudo terminal. I was thinking there must be a way to capture the ID of the original terminal and pass the distrobox commands back to it. Maybe it would be possible by passing the distrobox container a variable at launch and making that variable a named pipe, but like, I barely know named pipes are a thing and didn't manage to get it working using a script or function call in the distroboxrc file. I tried making a bunch of different things in this file, like making a startup loop to launch stuff, but none of them worked either.