I was having the same problem as OP. I have similar specs and had similar outcomes when attempting to remove rhgb or add nomodeset, but your solution worked for me. This is my first time posting, so I’m not exactly sure what info would be helpful to other future readers of this thread. Here are my hardware specs, but I’d be happy to upload more context on the specifics of my configuration if it’d be helpful.
important parts of inxi -Fzxx:
CPU:
Info: 8-core model: AMD Ryzen 7 7800X3D bits: 64 type: MT MCP arch: Zen 4 rev: 2 cache:
L1: 512 KiB L2: 8 MiB L3: 96 MiB
Speed (MHz): avg: 3585 min/max: 426/5053 boost: enabled cores: 1: 3585 2: 3585 3: 3585 4: 3585
5: 3585 6: 3585 7: 3585 8: 3585 9: 3585 10: 3585 11: 3585 12: 3585 13: 3585 14: 3585 15: 3585
16: 3585 bogomips: 134151
Flags-basic: avx avx2 ht lm nx pae sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 svm
Graphics:
Device-1: NVIDIA AD104 [GeForce RTX 4070] vendor: ASUSTeK driver: nouveau v: kernel
arch: Lovelace pcie: speed: 16 GT/s lanes: 8 ports: active: DP-4,DP-6 empty: DP-5,HDMI-A-2
bus-ID: 01:00.0 chip-ID: 10de:2786
Device-2: Advanced Micro Devices [AMD/ATI] Raphael vendor: Gigabyte driver: amdgpu v: kernel
arch: RDNA-2 pcie: speed: 16 GT/s lanes: 16 ports: active: none empty: DP-1, DP-2, DP-3,
HDMI-A-1, Writeback-1 bus-ID: 10:00.0 chip-ID: 1002:164e temp: 31.0 C
Display: unspecified server: Xwayland v: 24.1.9 driver: gpu: nouveau tty: 320x90
Monitor-1: DP-4 model: VG27AQL1A res: 2560x1440 dpi: 109 diag: 685mm (27")
Monitor-2: DP-6 model: VG27AQL1A res: 2560x1440 dpi: 109 diag: 685mm (27")
API: EGL v: 1.5 platforms: device: 0 drv: zink device: 1 drv: radeonsi device: 2 drv: swrast
gbm: drv: zink surfaceless: drv: zink inactive: wayland,x11
API: OpenGL v: 4.6 compat-v: 4.5 vendor: mesa v: 25.3.6 note: console (EGL sourced)
renderer: zink Vulkan 1.4(NVIDIA GeForce RTX 4070 (NVK AD104) (MESA_NVK)), AMD Ryzen 7 7800X3D
8-Core Processor (radeonsi raphael_mendocino LLVM 21.1.8 DRM 3.64 6.19.8-200.fc43.x86_64),
llvmpipe (LLVM 21.1.8 256 bits)
API: Vulkan Message: No Vulkan data available.
Info: Tools: api: clinfo, eglinfo, glxinfo, vulkaninfo de: kscreen-console,kscreen-doctor
gpu: nvidia-settings,nvidia-smi wl: wayland-info x11: xdriinfo, xdpyinfo, xprop, xrandr
Output of lsmod | grep -E "nvidia|nouveau", which I believe confirms that the hardware is really using Nvidia drivers:
nvidia_uvm 4210688 0
nvidia_drm 159744 133
nvidia_modeset 2265088 62 nvidia_drm
nvidia 15896576 1174 nvidia_uvm,nvidia_modeset
drm_ttm_helper 20480 3 amdgpu,nvidia_drm
video 81920 2 amdgpu,nvidia_modeset
Here’s the output of sudo grubby --info=DEFAULT on my system:
index=0
kernel="/boot/vmlinuz-6.19.8-200.fc43.x86_64"
args="ro rootflags=subvol=root rd.luks.uuid=luks-a630f3d7-0887-4b24-bf3f-0240ad831b04 rhgb quiet $tuned_params rd.driver.blacklist=nouveau,nova_core modprobe.blacklist=nouveau,nova_core nvidia.NVreg_EnableGpuFirmware=0"
root="UUID=7012e7cb-9b12-455a-b4aa-816083bb3a98"
initrd="/boot/initramfs-6.19.8-200.fc43.x86_64-test.img $tuned_initrd"
title="Fedora Linux (6.19.8-200.fc43.x86_64) 43 (KDE Plasma Desktop Edition)"
id="473d8e7263d3415ca0c9a200254a1148-6.19.8-200.fc43.x86_64"
Yours should look similar
To make the changes in @anotheruser’s post persistent, you can run:
sudo grubby --update-kernel="vmlinuz-<output of uname -r>" --initrd="/boot/initramfs-<output of uname -r>-test.img $tuned_initrd"
Make sure you’re replacing the values in <output of uname -r> with the actual value you get wehn you run the command uname -r
Edit: Don’t do this ^