this post was submitted on 14 Apr 2024
8 points (100.0% liked)

Arch Linux

167 readers
1 users here now

The beloved lightweight distro

founded 4 years ago
MODERATORS
 

Hello, I'm facing some rather annoying issues with running KDE6 on Wayland. Despite consulting the Arch Wiki and various online resources, I haven't been able to get it working. X11 works fine, so I've been sticking with X exclusively due to my limited experience with desktop Linux and troubleshooting.

For context, my setup includes an AMD 7950x with Unraid as the main OS. My daily desktop runs on a mainline Arch VM with an RTX 3070ti and a dedicated USB controller card passed through. This setup has been stable for months, serving my gaming and media needs.

When attempting a Wayland session, I select it, observe a brief black screen flash, and then return to the login prompt. This issue persisted through upgrades and tests on different distributions like Manjaro and Endeavor. I've also tried multiple Wayland compositors, all with the same outcome.

The only success I've had with Wayland was on Garuda, which defaults to Wayland. I'm keen on using Wayland due to its evolving features, especially since it's essential for running Waydroid.

Any assistance would be greatly appreciated. While my use case may be unique, Waydroid is crucial for specific Android apps vital to my workflow.

Thanks in advance!

top 10 comments
sorted by: hot top controversial new old
[–] d3Xt3r@lemmy.nz 7 points 5 months ago* (last edited 5 months ago) (1 children)

Is there any specific reason you're on nVidia? Can't you sell your card and get an AMD instead?

[–] slacktoid@lemmy.ml 4 points 5 months ago (1 children)

This is not a good answer to whats asked tho. Youre now asking me to sell what i already have?

[–] d3Xt3r@lemmy.nz 5 points 5 months ago* (last edited 5 months ago) (2 children)

First of all, it wasn't an answer, it was a question. I was genuinely curious if OP had a legitimate reason to use nVidia.

Second, it makes sense to use hardware that's best compatible with Linux - and avoid ones known to cause issues. Even two seconds of googling would show you how notorious nVidia is on Linux, heck, even Linus Torvalds had some less than polite things to say about nVidia.

And what's wrong with selling? People buy not-fit-for-purpose things all the time, or people's requirements may change, and what was once useful may not be ideal any more. There's no law saying you need to use something you buy for the rest of your life.

[–] cammelspit@lemm.ee 2 points 5 months ago

I already own the 3070ti because it was just what I had before switching to Linux. It works great and I'm not keen on trying to swap cards until I can afford one that is a reasonably large step up. Plus when I do upgrade I plan making this one a dedicated transcoding\ai card so I don't want to sell it. I do intend on never buying nVidia ever again after living through tons of driver bs while my other AMD system is a very smooth experience. Generally it seems to me the idea of selling the card and buying another when it's not needed is sorta throwing the baby out with the bathwater kind of situation.

[–] Dirk@lemmy.ml 1 points 5 months ago

Linus is absolutely right on Nvidia. The thing is: The graphics server should work with the card, not the other way round.

Why replace functioning, not broken hardware just because the software can't handle it?

[–] ada@lemmy.blahaj.zone 6 points 5 months ago

Honestly, you can probably just wait it out. The problem comes about from lack of explicit sync compatibility, and that's just been merged in to Wayland and Kwin. Once the nvidia-beta drivers with the feature are released (a month or two?) then most nvidia/Wayland problems should go away

[–] Varen@kbin.social 2 points 5 months ago

Its working since months, so I guess you have the drivers installed. For me I needed the „wayland-protocols“ package to work on my RTX3070
And the obvious once others have pointed out, the kernel parameters

[–] markus@hubzilla.markusgarlichs.de 2 points 5 months ago (1 children)

This should work for all Nvidia user working with Plasma6 on Arch, Garuda etc:

Edit /etc/mkinitcpio.conf

MODULES=()

Change the Line and add the Nvidia Modules:

MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)

Save the File and create the initramfs:

sudo mkinitcpio -P

Now Add the Kernelflags to Grub: nano /etc/default/grub

There is a line like this:

GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet"

add this to the line:

GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet nvidia_drm.modeset=1"

Now generate the new Grub config:

sudo grub-mkconfig -o /boot/grub/grub.cfg

Reboot and have fun with wayland. Maybe you have to install: xorg-xwayland

[–] cammelspit@lemm.ee 1 points 5 months ago

Sorry it took me so long to test this all out, thanks a bunch, this seems to have solved the issue. I guess I did indeed miss a step. There are certainly some weird bugs I'm getting right now with flickery apps and such but that's sorta what I expected. HDR even works which is very nice to see. Regardless, I appreciate you taking the time to assist me here, I will have a play around and get my Waydroid config all sorted now.

Thank you!

[–] shyonyx@lemmy.ml 1 points 5 months ago* (last edited 5 months ago)

I'm guessing you forgot to add DRM kernel mode setting. What you need to do is create /etc/modprobe.d/nvidia.conf, and add

options		nvidia_drm	modeset=1
blacklist	nouveau

then edit /etc/mkinitcpio.conf to have

MODULES=(nvidia nvidia_modeset nvidia_uvm nvidia_drm)

and ensure /etc/mkinitcpio.conf also has the modconf hook

HOOKS=(... modconf ...)

then run mkinitcpio -P, restart, and enjoy Wayland.