this post was submitted on 15 Sep 2024
67 points (100.0% liked)
Linux
47949 readers
1629 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
Totally possible. It'll work best with Wayland thanks to nested compositor support, whereas on Xorg you'd need to use Xephyr which doesn't do hardware acceleration.
And tada!
Nice
You can also nest rootful Xwayland in there too!
From the user's shell,
Of course you that means you can also run Plasma X11 that way for example:
Wow, that's so neat!
On my machine it opens a fullscreen plasma spash and then it shows the new session intermixed/overlayed with my current one instead of in a new window... basically, it's a mess :D
If I may abuse your patience:
startplasma-wayland
from a terminal as your user? (I see the plasma splash screen and then I'm back to my old session)Make sure to use
machinectl
and notsudo
or anything else. That's about the symptoms I'd expect from an incomplete session setup. The use of machinectl there was very deliberate, as it goes through all the PAM, logind, systemd and D-Bus stuff as any normal login. It gets you a clean and properly registered session, and also gets rid of anything tied to your regular user:It basically gets you to a state of having properly logged into the system, as if you logged in from SDDM or in a virtual console. From there, if you actually had just logged in a tty as that user, you could run
startplasma-wayland
and end up in just as if you had logged in with SDDM, that's what SDDM eventually launches after logging you in, as per the session file:From there we need one last trick, it's to get KWin to start nested. That's what the additional
WAYLAND_DISPLAY=/run/user/1000/wayland-0
before is supposed to do. Make sure that this one is ran within the machinectl shell, as that shell and only that shell is the session leader.The possible gotcha I see with this, is if
startplasma-wayland
doesn't replace thatWAYLAND_DISPLAY
environment variable with KWin's, so all the applications from that session ends up using the main user. You can confirm this particular edge case by logging in with the secondary user on a tty, and running the same command including the WAYLAND_DISPLAY part of it. If it starts and all the windows pop up on your primary user's session, that's the problem. If it doesn't, then you have incorrect session setup and stuff from your primary user bled in.Like, that part is really important, by using
machinectl
the process tree for the secondary user starts from PID 1:Super weird stuff happens otherwise that I can't explain other than some systemd PAM voodoo happens. There's a lot of things that happens when you log in, for example giving your user access to keyboard, mouse and GPU, and the type of session depends on the point of entry. Obviously if you log in over SSH you don't get the keyboard assigned to you. When you switch TTY, systemd-logind also moves access to peripherals such that user A can't keylog user B while A's session is in the background. Make sure the machinectl session is also the only session opened for the secondary user, as it being assigned to a TTY session could also potentially interfere.
Arch, Plasma 6.1.5.
You mean a tty or a terminal emulator like Konsole?
Screenshot of said mess? Purley for entertainment 😄
I fear it was nothing that entertaining: it was just my "normal" dark panel at the top of the screen and a second "default" white one at the bottom (this last one partially covered the windows I had open). I didn't try triggering notifications or otherwise causing some kind of mayhem.
This looks so neat, I screenshot for future reference if I wanted to recreate this, thanks :)
You can also bookmark comments on Lemmy, and copy the comment URL and store that in (synced) browser bookmarks!
Oh, copy the comment text and save it in a text- or markdown-file on your devices, in case it gets taken down! You can even for the text in case you forgot where you kept it!
This is cool