SELinux blocks kwin_wayland access to nvidia modeset

I installed bazzite on my brothers desktop pc a few days ago through the nvidia open kde image. Most things run smoothly, but sometimes he gets kicked back to the sddm greeter after a few minutes. This only happens if the boot process takes longer than normally. Here is a journal of a boot where this problem happens https://privatebin.net/?bdb03f3bfc7dab4e#3mguFkxecd8R5dmvs9cWCxfdUS2SxXPzAb7PnT3KAxMF I noticed the line AVC avc: denied { getattr } for pid=5037 comm="kwin_wayland" path="/dev/nvidia-modeset" dev="devtmpfs" ino=1013 scontext=system_u:system_r:xdm_t:s0-s0:c0.c1023 tcontext=system_u:object_r:device_t:s0 tclass=chr_file permissive=0 but I dont know if thats the root cause of the issue. The only other problem was that the firefox flatpak often crashed during startup. It tried accessing /run/flatpak/wayland-0 display but timed out. The X11 display was not set for some reason (null) so it crashed. Im not sure if this is related, but I worked around it by layering firefox through rpm-ostree and this issue does not happen with the native version Is something messed up with SELinux the issue here, or could it be something else? Thanks for your help
PrivateBin
Encrypted note on PrivateBin
Visit this link to see the note. Giving the URL to anyone allows them to access the note, too.
131 Replies
asen23
asen232mo ago
Maybe similar issue for @Aragami @HikariKnight ?
HikariKnight
HikariKnight2mo ago
looks identical
HikariKnight
HikariKnight2mo ago
Can you verify that the file /dev/nvidia-modeset is there once booted, i might need to actually make a custom script to fix this also @Aragami are you also on the nvidia-open image? check with rpm-ostree status
Aragami
Aragami2mo ago
Sure, I can check later. Also nice timing. The crashes reappeared and I was about to reinstall Bazzite one of these days
Aragami
Aragami2mo ago
@HikariKnight
No description
No description
HikariKnight
HikariKnight2mo ago
hmm ok then its not specific to nvidia-open
Aragami
Aragami2mo ago
Oh ok Is there a way to fix it?
Lachsak
Lachsak2mo ago
Ah, I just searched for SELinux in #🛟bazzite-help I'll look it up when I get to his place tomorrow, sry. I didnt think you guys would be so fast! :P
HikariKnight
HikariKnight2mo ago
i was referring to that the issue affects your brother and aragami only, so not a common issue i would say try make a script with
#!/bin/bash
semanage fcontext -a -t SIMILAR_TYPE 'nvidia-modeset'
restorecon -v '/dev/nvidia-modeset'
#!/bin/bash
semanage fcontext -a -t SIMILAR_TYPE 'nvidia-modeset'
restorecon -v '/dev/nvidia-modeset'
and run that after boot and see if that fixes it. if it does i will have to try make something more automatic also looping in @Kyle Gospo for awareness
Lachsak
Lachsak2mo ago
Should it be run once or on every boot?
HikariKnight
HikariKnight2mo ago
yes which is the annoying thing 🙃 we tried to make a service for aragami but its not as straight forward and we dont know if it will even fix the issue
Aragami
Aragami2mo ago
Yeah. I always have to run sudo /sbin/restorecon -v /dev/nvidia-modeset on every boot sadly. I'll reinstall bazzite kde someday for that reason
Lachsak
Lachsak2mo ago
Hm I looked a bit through your message history @Aragami . Looks like a really annoying issue. Did that really happen through a botched install somehow? I hoped such things wouldnt happen with fedora atomic
Aragami
Aragami2mo ago
I don't know what caused it honestly. I have bazzite installed on an ssd alongside with windows 10. The 1st 2 weeks bazzite kde was working perfectly to me. And then, for some reason on the 14th day it started crashing (basically logging in and few minutes later it gets me to login menu again, and when I try to log in again, it's black screen only) But running sudo /sbin/restorecon -v /dev/nvidia-modeset on every boot prevents the crash
HikariKnight
HikariKnight2mo ago
and that keeps it working? since if it does i can look into making a workaround script since we didnt manage to get the systemd service to do it by itself properly (for context either the dev node doesnt exist, or it does not like the target)
Aragami
Aragami2mo ago
Yeah, it keeps it working. That's how I keep using linux (cause I don't want to use windows more often than linux). Thanks for offering to look into making a workaround script. I really appreciate it :3
HikariKnight
HikariKnight2mo ago
ok i will see what i can cook up after work today then and probably push to the testing branch so you both can test it ince its done. that will be in about uh 8-9 hours or something maybe 10, depends how much is going on at work today ok so can whichever of you test this before i push it, i had to stay home for a bit for health reasons so i had time to work on it while things got sorted out Please use sudo nano /path/to/file in the terminal to make these files, do not use the graphical programs unless you know what you are doing. you can save the file with CTRL+X in nano run sudo nano /etc/systemd/system/nvidia-modeset-restorecon.service and add this to it
[Unit]
Description=Runs restorecon on nvidia-modeset at boot
After=local-fs.target
ConditionPathExists=/dev/nvidia-modeset

[Service]
Type=oneshot
ExecStart=/usr/local/bin/nvidia-modeset-restorecon

[Install]
WantedBy=multi-user.target
[Unit]
Description=Runs restorecon on nvidia-modeset at boot
After=local-fs.target
ConditionPathExists=/dev/nvidia-modeset

[Service]
Type=oneshot
ExecStart=/usr/local/bin/nvidia-modeset-restorecon

[Install]
WantedBy=multi-user.target
then run this sudo nano /usr/local/bin/nvidia-modeset-restorecon and add this to it
#!/usr/bin/bash
# Wait for the nvidia-modeset device node to exist
while [ ! -e "/dev/nvidia-modeset" ]; do
sleep 1
done

# Apply the fix and write the output to the journal, viewable with "journalctl -t nvidia-modeset-restorecon"
restorecon -v '/dev/nvidia-modeset' | systemd-cat -t nvidia-modeset-restorecon -p info
#!/usr/bin/bash
# Wait for the nvidia-modeset device node to exist
while [ ! -e "/dev/nvidia-modeset" ]; do
sleep 1
done

# Apply the fix and write the output to the journal, viewable with "journalctl -t nvidia-modeset-restorecon"
restorecon -v '/dev/nvidia-modeset' | systemd-cat -t nvidia-modeset-restorecon -p info
then run sudo chmod +x /usr/local/bin/nvidia-modeset-restorecon to make it executable and then run it with sudo systemctl daemon-reload ; sudo systemctl start nvidia-modeset-restorecon ; journalctl -t nvidia-modeset-restorecon if there are no errors from the service or the log, then you can safely enable the service with sudo systemctl enable --now nvidia-modeset-restorecon if you do get any errors then post them here and i will adjust things until we have something working
Lachsak
Lachsak2mo ago
Will do that in a few hours when Im at my brothers place. Thank you very much! I hope you'll get better soon @HikariKnight
HikariKnight
HikariKnight2mo ago
if it fixes the issue and works i will put out a PR which once merged will add the service files to the system itself, once that is in a build i would recommend removing the service file made here and the script we made as it will be provided by the system then. just need to make sure it works before we actually add it
Lachsak
Lachsak2mo ago
@HikariKnight There were errros
Sep 17 14:52:03 bazzite.fritz.box nvidia-modeset-restorecon[8408]: ValueError: SIMILAR_TYPE-Typ ist ungültig, dies muss eine Datei oder ein Gerätetyp sein
Sep 17 14:52:03 bazzite.fritz.box nvidia-modeset-restorecon[8410]: Relabeled /dev/nvidia-modeset from system_u:object_r:device_t:s0 to system_u:object_r:xserver_misc_device_t:s0
Sep 17 14:52:03 bazzite.fritz.box nvidia-modeset-restorecon[8408]: ValueError: SIMILAR_TYPE-Typ ist ungültig, dies muss eine Datei oder ein Gerätetyp sein
Sep 17 14:52:03 bazzite.fritz.box nvidia-modeset-restorecon[8410]: Relabeled /dev/nvidia-modeset from system_u:object_r:device_t:s0 to system_u:object_r:xserver_misc_device_t:s0
HikariKnight
HikariKnight2mo ago
ok pretty sure the semanage command is not needed then since it was the recommended solution from the log itself, but the devicenode gets properly relabeled i changed the script to reflect that. change the script in /usr/local/bin then you can enable the systemd service we made then give me some feedback in a few days if it fixed the issue (or as soon as it crashes if it didnt fix it) if it fixes the issue i will make a PR to get it included into the nvidia images
Lachsak
Lachsak2mo ago
I changed it but the errors are the same
#!/usr/bin/bash
# Wait for the nvidia-modeset device node to exist
while [ ! -e "/dev/nvidia-modeset" ]; do
sleep 1
done

# Apply the fix and write the output to the journal, viewable with "journalctl -t nvidia-modeset-restorecon"
restorecon -v '/dev/nvidia-modeset' | systemd-cat -t nvidia-modeset-restorecon -p info
#!/usr/bin/bash
# Wait for the nvidia-modeset device node to exist
while [ ! -e "/dev/nvidia-modeset" ]; do
sleep 1
done

# Apply the fix and write the output to the journal, viewable with "journalctl -t nvidia-modeset-restorecon"
restorecon -v '/dev/nvidia-modeset' | systemd-cat -t nvidia-modeset-restorecon -p info
Right? @HikariKnight
HikariKnight
HikariKnight2mo ago
yep journal will still show the error from 14:52:03
Lachsak
Lachsak2mo ago
Oh dang, I didnt think of that XD Sry Will update if something happens ^^ Thank you very much for the help!
HikariKnight
HikariKnight2mo ago
anyways at boot it should relabel the nvidia-modeset device node and you can verify it with journalctl -b 0 -t nvidia-modeset-restorecon that will show only the log from the current boot
Aragami
Aragami2mo ago
Cool, no problem
Lachsak
Lachsak2mo ago
He posted the solution already.
Aragami
Aragami2mo ago
Oh thanks. I was just reading the messages
Lachsak
Lachsak2mo ago
No problem ^^
Aragami
Aragami2mo ago
Where is the solution posted?
Lachsak
Lachsak2mo ago
Right here Tl;dr: create two files and enable the service
Aragami
Aragami2mo ago
Oh it works? I thought it was for testing
Lachsak
Lachsak2mo ago
Looks like it. We rebooted a few times and it seems fine
Aragami
Aragami2mo ago
Will do. 2 service files, right? I hope it works for me too 😅
Lachsak
Lachsak2mo ago
Hikari posted a pretty detailed description I think one is a service the other a sceipt
Aragami
Aragami2mo ago
Great, I'll check it out more closely in a bit
Lachsak
Lachsak2mo ago
Also, I thought your temp fix also worked? I only skimmed your message history though
Aragami
Aragami2mo ago
@HikariKnight I wish you get well soon. I hope it's nothing serious
HikariKnight
HikariKnight2mo ago
it is for testing, if it works i will make a PR so it gets added to the nvidia images was just very low blood sugar so i had to stay home until i had stabilized it 🤣
Aragami
Aragami2mo ago
The sudo /sbin/restorecon -v /dev/nvidia-modeset? Yeah, still works. But it's pain having to run it on every single boot Great, will keep you posted
HikariKnight
HikariKnight2mo ago
the solution i made that you both are testing will automatically run it at boot
Aragami
Aragami2mo ago
Oof, been there. Low blood sugar sometimes can get bad faster than I ever thought 😅 You're the best. Thanks a lot :3
HikariKnight
HikariKnight2mo ago
once the solution is in the nvidia image you remove the service file from /etc/ and do sudo systemctl daemon-reload
Aragami
Aragami2mo ago
Got it So after I run sudo systemctl daemon-reload ; sudo systemctl start nvidia-modeset-restorecon ; journalctl -t nvidia-modeset-restorecon it says -- No entries -- Is it right?
Lachsak
Lachsak2mo ago
I think so The first version of the script threw errors
Aragami
Aragami2mo ago
Great. So I can proceed with the rest steps left
Lachsak
Lachsak2mo ago
In my opinion, yes
HikariKnight
HikariKnight2mo ago
yes
Aragami
Aragami2mo ago
It worked!! I can't believe it worked. I'm so much happy!!! This saved so many hours cause I was seriously considering re-installing Bazzite KDE
Aragami
Aragami2mo ago
So now I delete this file?
No description
Aragami
Aragami2mo ago
And then I run sudo systemctl daemon-reload?
HikariKnight
HikariKnight2mo ago
sudo rm /etc/systemd/system/nvidia-modeset-restorecon.service but dont do it until i get verification that the issue is gone from both of you and add a PR to get the fix added
Aragami
Aragami2mo ago
Noted. I rebooted my system about 4 times. I won't remove the file for few more days. I'll keep you posted either if the issue reappears or not For now, it's working
HikariKnight
HikariKnight2mo ago
good to know i got the PR readied so once i know for sure it works i will push it
Aragami
Aragami2mo ago
Great. Thanks a lot ^^
Aragami
Aragami2mo ago
Sooo, it happened again. The issue reappeared. I did a small change though. I put Wallpaper Engine and using it with Wallpaper Engine for KDE plug-in The plug in was already installed though @HikariKnight
Beanzy
Beanzy2mo ago
@HikariKnight You probably want to check this out: https://access.redhat.com/solutions/5462521
Red Hat Customer Portal
GPU devices have wrong SELinux context after each server restart - ...
After each restart GPU devices have wrong SELinux context and can't be used as a consequence without restoring the context with restorecon. $ ls -Z /dev/nvi* crw-rw-rw-. root root system_u:object_r:xserver_misc_device_t:s0 /dev/nvidia0 crw-rw-rw-. root root system_u:object_r:xserver_misc_device_t:s0 /dev/nvidia1 crw-rw-rw-. root root system_u:ob...
Beanzy
Beanzy2mo ago
If you can't access - the article states that the SELinux issue is a result of missing udev rules:
/lib/udev/rules.d/60-nvidia-drm.rules
/lib/udev/rules.d/60-nvidia-uvm.rules
/lib/udev/rules.d/60-nvidia-drm.rules
/lib/udev/rules.d/60-nvidia-uvm.rules
Which are supposed to be provided by the NVIDIA drivers
Kyle Gospo
Kyle Gospo2mo ago
do you have those files? @Aragami
Beanzy
Beanzy2mo ago
Not on my bazzite-nvidia-open:stable install. Just the
60-nvidia.rules
60-nvidia.rules
file
Kyle Gospo
Kyle Gospo2mo ago
No description
Kyle Gospo
Kyle Gospo2mo ago
this one is provided by negativo17's nvidia-kmod-common looking for uvm
Aragami
Aragami2mo ago
I'll check right now
Kyle Gospo
Kyle Gospo2mo ago
# Load nvidia-uvm, enable complete power management:
install -p -m 0644 -D %{SOURCE20} %{buildroot}%{_modprobedir}/nvidia.conf
# Load nvidia-uvm, enable complete power management:
install -p -m 0644 -D %{SOURCE20} %{buildroot}%{_modprobedir}/nvidia.conf
Seems they do this in the spec this might turn into an issue w/ negativo then
Kyle Gospo
Kyle Gospo2mo ago
GitHub
Issues · negativo17/nvidia-kmod-common
NVIDIA's proprietary driver kernel module common files - Issues · negativo17/nvidia-kmod-common
Beanzy
Beanzy2mo ago
UVM seems tied to CUDA driver from my brief search. The CUDA driver was also mentioned in that Red Hat article (along with the standard driver)
Aragami
Aragami2mo ago
Same
Kyle Gospo
Kyle Gospo2mo ago
https://lists.rpmfusion.org/archives/list/[email protected]/message/Q3GQJQFFGZS6Q5D3NWP5BXL5KYANVBDF/ it appears this information is old/out of date nvidia-uvm was intentionally removed
Kyle Gospo
Kyle Gospo2mo ago
No description
Aragami
Aragami2mo ago
Oh... So it's not that the issue? Then what is?
Beanzy
Beanzy2mo ago
If the uvm file is no longer needed, maybe it's just the 60-nvidia-drm.rules file that's missing?
Lachsak
Lachsak2mo ago
I'm not sure but I think folks on the subreddit are having similar issues https://www.reddit.com/r/Bazzite/comments/1fiucg6/getting_kicked_to_other_tty_after_login_desktop/
Reddit
From the Bazzite community on Reddit
Explore this post and more from the Bazzite community
Beanzy
Beanzy2mo ago
Seems related: https://forums.gentoo.org/viewtopic-t-1162236-start-0.html So question - What monitors do people experiencing this problem have? I was having this issue, and I managed to resolve it by keeping my ASUS gsync monitor off until after I login via SDDM. My ASUS monitor has a lot of issues with waking up after display off, and flickered for quite a bit if I were to leave it on during login. I assume the issues with screen wakeup on my monitor were causing some kind of reload/reset with the NVIDIA driver
Luka
Luka2mo ago
LG C3 4K 55” TV.
Aragami
Aragami2mo ago
Ooof I have an Asus monitor with freesync turned on
Lachsak
Lachsak2mo ago
The issue occured on my brothers machine again as well He has some kind of HP monitor, I think with freesync. I'll send the exact model name in a bit
Aragami
Aragami2mo ago
For me it crashed only 1 time. I booted the PC 2 more times without running any commands and it didn't crash The model I have is ASUS VG245Q
Beanzy
Beanzy5w ago
Mine is a VG27A But yeah, this is reliably reproducible for me: I have only ever seen this issue if I have my Asus monitor on before I login via SDDM, granted it doesn't happen always when it's on, maybe ~50-80% of the time. However, it happens 0% of the time if my Asus monitor is off. Adjusting/disabling VRR from KDE or at the monitor level has no effect, issue can still occur.
Aragami
Aragami5w ago
I see. So it a monitor issue after all?
Beanzy
Beanzy5w ago
¯\_(ツ)_/¯ The monitor is DisplayPort stamped (implies VESA certification) and UL certified. And it also did not cause crashes on Windows - This inclines me to say it's a driver or OS config bug.
Aragami
Aragami5w ago
I see. I hope there's a solution to this
HikariKnight
HikariKnight5w ago
would not surprise me this is an nvidia driver issue at this point any logs from the crash that still happens?
Beanzy
Beanzy5w ago
I do recall seeing the same error Lachsak posted, comparing logs from when the issue occurs vs ones where it doesn't. It'll be a bit before I can grab a fresh set of logs, using my machine for work stuff right now.
Aragami
Aragami5w ago
I haven't seen my logs. But I remember that when I sent my logs it was the same error
Beanzy
Beanzy5w ago
Log from a boot/login with the issue (i.e. my Asus monitor was on at SDDM login): https://privatebin.net/?ae7588f961b6ef57#77XWCjjhED7S5n5gKLuGjdBLbfK1pRG4uhfWwmKgmD1s
PrivateBin
Encrypted note on PrivateBin
Visit this link to see the note. Giving the URL to anyone allows them to access the note, too.
Beanzy
Beanzy5w ago
Log from a boot/login with the monitor off and no issues: https://privatebin.net/?04c8765909560132#4p2W34aQfCGNYz3zjwuu6PdMLRhCP2MUdW8A7PJad23A
PrivateBin
Encrypted note on PrivateBin
Visit this link to see the note. Giving the URL to anyone allows them to access the note, too.
HikariKnight
HikariKnight5w ago
glanced at it before heading to work, there is nothing that stands out, sddm just crashes when it tries to load the desktop from what i gather from the log
Lachsak
Lachsak5w ago
Well, business as usual then .-. I swear, every time there is an issue its novideo drivers Probably a shot in the dark, but I had a similar but not identical issue. Im using a different distro (NixOS) and didn't have this issue since using early kernel modesetting. I wanted to try that out as well on my brothers machine, but didn't even know if bazzite already does that, and if not, how to get it working with rpm-ostree
HikariKnight
HikariKnight5w ago
its a likely suspect when we cannot replicate the issue on machines with amd or intel cards and the only difference between the images is the nvidia driver (and the inclusion of x11 for now), does not leave much for imagination when the issue happens on both x11 and wayland. what i would be curious about is if this can be replicated on the gnome image to see if this is a sddm+nvidia issue 🤔 since so far we know * happens on nvidia * potentially related to VRR * happens with both x11 and wayland * not caused by selinux (error was apparently a red herring?), but does help alleviate the issue i would still like to see a log with the crash on a system with the selinux workaround applied though before ruling out the last point
Zari
Zari4w ago
Huh funny, was having this issue today and was almost impossible to use because it was always kicking me to sddm login again. But then when i turned on my computer and the monitor was off and turned on after it had booted (accident, i forgot my monitor turned off becaused i had shut down my computer) it just booted normaly and didn't crash Also this also happens on Kinoite-nvidia image, tested yesterday
Aragami
Aragami4w ago
Interesting question F
Luka
Luka4w ago
Is it safe to update yet?
HikariKnight
HikariKnight4w ago
Literally waiting for crash logs with the fix applied since someone said it happened even with the fix we are trying.
Lachsak
Lachsak4w ago
Sry, I collected some from my brothers machine yesterday evening If we havent selected the wrong boot, this should be a log with the cerash
Lachsak
Lachsak4w ago
And that one was after the Selinux workarounds
Lachsak
Lachsak4w ago
@HikariKnight
HikariKnight
HikariKnight4w ago
cant see anything that sticks out, but i will have a look closer when im not sick
Lachsak
Lachsak4w ago
Thanks for all the help! And sorry for the delay Get well soon ^^
HikariKnight
HikariKnight4w ago
ty
n1ete
n1ete4w ago
confirming that the workarround fixed it for me
HikariKnight
HikariKnight4w ago
i have opened a PR to testing to get it added to the image, just need it to be properly tested there first
Aragami
Aragami4w ago
I'm sorry, I couldn't check for crash logs these days. Let me know if you need mine as well Hopefully it will work. Thanks for the help. Hope you get well soon :3
forgottenclock
I've some free time and willing to test any configuration you'd like. 2070 Super.
HikariKnight
HikariKnight4w ago
I'm extremely sick atm so not anytime soon. 🙃
Beanzy
Beanzy4w ago
Hopefully will have some time today to test the scripted/service fix Tried setting up the SELinux script/service. Still got the issue, found this line in the journal: Sep 24 19:46:42 beanzy-desktop systemd[1]: nvidia-modeset-restorecon.service - Runs restorecon on nvidia-modeset at boot was skipped because of an unmet condition check (ConditionPathExists=/dev/nvidia-modeset). Only line referencing the nvidia-modeset-restorecon service
forgottenclock
Do you still have the issue when using ostree: 1, or only ostree: 0?
Beanzy
Beanzy4w ago
Isn't that dynamic, depending on updates?
Kyle Gospo
Kyle Gospo4w ago
Yes it is
forgottenclock
I read someone say on reddit that it only happened on 0, I had it on both.
Aragami
Aragami4w ago
I always boot on ostree: 0. I didn't know what the other options were
asen23
asen234w ago
0 is your current deployment, 1 is for rollback
Aragami
Aragami4w ago
For rollback? Meaning? Sorry if it sounds like a stupid question. English isn't my native language
funky
funky4w ago
If the current deployment is not working or you are unable to boot, the secondary image is the "rollback" image which is the previous, working image. Whenever you update Bazzite, your current deployment then becomes the rollback (image 1) and then the new updated image is image 0.
Aragami
Aragami4w ago
Oh cool. Thanks a lot for the info
NekroSomnia
NekroSomnia3w ago
Sorry to barge in here like this, but i'm the OP of the reddit post. The Issue was not tied to OsTree:0, it seems that rebooting temporarily solved the issue until the next (cold) boot and I misinterpreted that as "OsTree:1 works fine" - absolutely my bad, should have tried a simple reboot without switching the tree as well 😅
Lachsak
Lachsak3w ago
This issue right here is tied to nvidia drivers, and pretty unrelated to which OStree deployment is selected, I think? In short, boot process takes forever and kicks you back to SDDM
Lachsak
Lachsak3w ago
Also, I finally got a log with the workaround applied and a confirmed crash to SDDM happening
NekroSomnia
NekroSomnia3w ago
Exactly that, yes. But if you witch to TTY3 after getting kicked back to the greeter, you can kill the session on TTY2, switch to TTY1 and log in again. This time with a working Session that will not self terminate. Which - to me at least - is super weird. I'd expect a driver issue to be persistent and not sort itself out after on hickup.
Lachsak
Lachsak3w ago
Huh, didnt know that
NekroSomnia
NekroSomnia3w ago
I found that by poking around in loginctl the other day. From what I understand, It seems like the intended behaviour of KDE is : Spawn Greeter on a TTY Auth the user > spawn Desktop on another TTY, transfer User to Session Kill Greeter I noticed that after i get kicked back to the Greeter, there will be 3 Sessions (including my Session on TTY3) TTY1 : User : SDDM - State : Online TTY2: User : Me - State : Closing TTY3: User : Me - State : Active After killing the Session on TTY2 (and 3) and logging in again, there will be only one Session TTY2 : User : Me - State : Active
NekroSomnia
NekroSomnia3w ago
There are screenshots in a issue over on Github https://github.com/ublue-os/bazzite/issues/1704
GitHub
[NVIDIA - STABLE] Getting kicket back to SDDM Greeter after login ·...
Describe the bug After login, i get kicked back to the Greeter/Lockscreen located on TTY1. If i try to login again, the Desktop won't load / the screen stays black. What did you expect to happe...
Aragami
Aragami3w ago
Is there a way to fix it?
De_Acrouix
De_Acrouix3w ago
I'm facing this problem now. Am I get it right that problem will not appear if I turn off my primary display (with freesync) while booting?
HikariKnight
HikariKnight3w ago
apparently
De_Acrouix
De_Acrouix3w ago
What a bizarre workaround lol. Well, hope it'll fixed soon, whatever causes it. Because of that I've reinstalled it twice. And reinstalled W10 twice, god that was a nightmare. Thanks you all here! Can I help it tho? By providing logs or smthg
HikariKnight
HikariKnight3w ago
seems to be an nvidia exclusive issue so probably nothing we can do in the end as we have already tried fixing what the logs complained about (selinux type enforcements) and that seemed to not fully fix it
Aragami
Aragami2w ago
I haven't tested it That makes me hate Nvidia more than I ever thought I could 🥲
Want results from more Discord servers?
Add your server