r/NobaraProject 4h ago

Discussion Random freezes after waking from idle on Nobara (Latest Update) - Anyone else seeing irqbalance permission errors?

4 Upvotes

Hey everyone,

I've been hit with random system freezes over the last couple of weeks on Nobara.

It usually happens when I leave my laptop idle for a little bit. When I come back to use it, I can browse for about 2 to 3 minutes, and then the entire system completely locks up and hard freezes.

I checked my previous boot logs using journalctl -b -1 -e right after a freeze, and my logs are completely flooded with these exact errors right before the crash:

irqbalance[1310]: Cannot change IRQ [ID] affinity: Permission denied
irqbalance[1310]: IRQ [ID] affinity is now unmanaged

It looks like a recent kernel update broke permissions for irqbalance, causing hardware interrupts to smash a single downclocked CPU core when waking up from an idle state, which instantly kills the system.

Is anyone else running into this specific issue on recent updates?

For anyone stuck on this, disabling the service temporarily via terminal seems to stop the freezes since the modern kernel can handle routing on its own:
sudo systemctl stop irqbalance && sudo systemctl disable irqbalance

Let me know if your logs are showing the same thing or if you've found a permanent fix upstream!


r/NobaraProject 56m ago

Support Steam games wont launch?

Upvotes

Heya, thought I'd give Nobara another try due to my main PC actually slowing down with Microslop awfulness. I downloaded the GNOME version of Nobara because I just kinda like how it all looks really, and in the live version so it doesn't mess with any of my main drives, a try before you buy kind of thing. I tried to download and run some very small games on the boot drive, external drives, NEWLY formatted drives IN Nobara and still NADA. Most of the time I got literally nothing as a result of trying to boot them but when I made a newly formatted drive I only got this error shown in the screenshot. I've struggled to find anything with the specifics? Is it because it was the live version and so it's just locked down or something? I'm not sure. There are other things I've struggled with in the live version but as of now, not even being able to open my games so I can see if they run or not, let alone performance wise is not looking too good and I dont even understand why? Please note I'm using an I7 12700f and RTX 3070, I understand Nvidia is not the best on Linux which is also why I got the GNOME-NV iso which apparently had Nvidia drivers built in? Not entirely sure on if that's true or whatnot but I'd appreciate any help I could get! Please be kind! Linux is scary :,D


r/NobaraProject 8h ago

Question How to backup and update.

3 Upvotes

So, im new to linux, 2/3 months in nobara and im seeing a lot o posts but none with my doubts:

1 - what the better choice to do a backup? in case my update gone wrong.

2 - better to update with the dnf store or via terminal? what commands i need to know to update, and in case something gone wrong?


r/NobaraProject 11h ago

Discussion Nobara Gnome Questions

Thumbnail
2 Upvotes

Has anyone used these with low-powered laptops, especially ones with INTEL integrated gpus exclusively? I quickly installed them on separate hard drives for older computers like from 2018 or 2015. One of them runs ddr3 ram of 16 GB but the CPU is like 4th or 5th generation I believe. Another one might be ddr4 ram but it's only 8 GB

A quick setup worked well and I was able to set up steam big picture mode so that way even non Linux friendly users could use it instantly.

But from people's personal experiences. Did you have any issues with this distro for the related tech specs I provided?

We're talking about very friendly games for people who don't play games really at all. Like golf with your friends or Uno or The game of Life.

My bad if I'm overthinking this.


r/NobaraProject 21h ago

Support Trying to launch Obscure 1 on Steam on Fedora or Nobara? Here’s the solution, step by step

10 Upvotes

I recently reinstalled Nobara and could no longer launch Obscure (2004) through Steam.

My symptoms were:

  • Steam showed the game as running, but no window appeared.
  • Sometimes the game stayed permanently on STOP.
  • With some dgVoodoo versions, Proton entered an EXCEPTION_ACCESS_VIOLATION loop.
  • Eventually, the game launched and played audio, but there was still no image.

After testing several Proton and dgVoodoo configurations, this is the exact combination that worked for me:

  • GE-Proton7-20
  • dgVoodoo2 2.79.3
  • All four dgVoodoo DLLs from MS/x86
  • Gamescope
  • Gamescope forced to use X11/XWayland instead of its native Wayland backend

My system:

  • Nobara 44 KDE
  • Wayland
  • NVIDIA RTX 4070
  • Steam version of Obscure
  • Steam AppID: 254460

Step 1: Install GE-Proton7-20

Install ProtonUp-Qt through Discover or your preferred package manager.

Open ProtonUp-Qt and:

  1. Select Steam.
  2. Choose GE-Proton7-20.
  3. Install it.
  4. Restart Steam.

In Steam:

  1. Right-click Obscure.
  2. Select Properties.
  3. Open Compatibility.
  4. Enable Force the use of a specific Steam Play compatibility tool.
  5. Select GE-Proton7-20.

Newer Proton versions may work, but GE-Proton7-20 is the version that worked in this configuration.

Step 2: Close Steam and Obscure

Open a terminal and run:

pkill -f -i 'Obscure.exe' 2>/dev/null || true
/usr/bin/steam -shutdown 2>/dev/null || true
sleep 5

Step 3: Download dgVoodoo2 2.79.3

The newer dgVoodoo 2.87.3 DLL caused an access-violation loop on my system.

dgVoodoo 2.81.3 stopped the crash, but the game remained running without creating a visible window.

Version 2.79.3 was the version that ultimately worked.

Run:

cd "$HOME/Downloads"

rm -f "dgVoodoo2_79_3.zip"

curl -fL \
"https://github.com/masterotaku/dgVoodoo-binaries/raw/refs/heads/main/dgVoodoo2_79_3.zip" \
-o "dgVoodoo2_79_3.zip"

Check that the archive downloaded correctly:

unzip -t "$HOME/Downloads/dgVoodoo2_79_3.zip" | tail -n 3

You should see:

No errors detected in compressed data

Confirm that the required 32-bit DLLs are included:

unzip -Z1 "$HOME/Downloads/dgVoodoo2_79_3.zip" |
grep -iE '^MS/x86/(D3D8|D3D9|D3DImm|DDraw)\.dll$' |
sort

You should see:

MS/x86/D3D8.dll
MS/x86/D3D9.dll
MS/x86/D3DImm.dll
MS/x86/DDraw.dll

Step 4: Install the four x86 dgVoodoo DLLs

Run this entire block:

set -e

GAME="$HOME/.local/share/Steam/steamapps/common/Obscure"
ZIP="$HOME/Downloads/dgVoodoo2_79_3.zip"
BACKUP="$HOME/obscure-backup-2793-$(date +%Y%m%d-%H%M%S)"

mkdir -p "$BACKUP"

for FILE in \
    d3d8.dll D3D8.dll \
    d3d9.dll D3D9.dll \
    d3dimm.dll D3DImm.dll \
    ddraw.dll DDraw.dll \
    dgVoodoo.conf
do
    if [ -f "$GAME/$FILE" ]; then
        mv -v "$GAME/$FILE" "$BACKUP/"
    fi
done

unzip -p "$ZIP" "MS/x86/D3D8.dll"   > "$GAME/d3d8.dll"
unzip -p "$ZIP" "MS/x86/D3D9.dll"   > "$GAME/d3d9.dll"
unzip -p "$ZIP" "MS/x86/D3DImm.dll" > "$GAME/d3dimm.dll"
unzip -p "$ZIP" "MS/x86/DDraw.dll"  > "$GAME/ddraw.dll"

chmod 644 \
    "$GAME/d3d8.dll" \
    "$GAME/d3d9.dll" \
    "$GAME/d3dimm.dll" \
    "$GAME/ddraw.dll"

file \
    "$GAME/d3d8.dll" \
    "$GAME/d3d9.dll" \
    "$GAME/d3dimm.dll" \
    "$GAME/ddraw.dll"

All four files should be identified as:

PE32 executable
Intel i386

Do not use the files from MS/x64. Obscure is a 32-bit game.

Your Obscure folder should now contain these four files:

d3d8.dll
d3d9.dll
d3dimm.dll
ddraw.dll

I did not need a custom dgVoodoo.conf.

Step 5: Rebuild Obscure’s Proton prefix

This backs up the existing prefix instead of deleting it permanently.

PREFIX="$HOME/.local/share/Steam/steamapps/compatdata/254460"
PREFIX_BACKUP="$HOME/obscure-prefix-backup-$(date +%Y%m%d-%H%M%S)"

pkill -f -i 'Obscure.exe' 2>/dev/null || true
/usr/bin/steam -shutdown 2>/dev/null || true
sleep 5

if [ -d "$PREFIX" ]; then
    mv -v "$PREFIX" "$PREFIX_BACKUP"
fi

Steam will automatically create a new prefix the next time you launch the game.

Step 6: Install Gamescope

On Fedora or Nobara:

sudo dnf install -y gamescope

Confirm that it is installed:

gamescope --version

Gamescope was essential in my case. Without it, Obscure launched and played audio, but KDE Wayland never displayed the game window.

Step 7: Add the final Steam launch option

Open Steam and go to:

Obscure → Properties → General → Launch Options

Paste this exact line:

WINEDLLOVERRIDES="d3d8=n,b;d3d9=n,b;d3dimm=n,b;ddraw=n,b" env -u WAYLAND_DISPLAY gamescope -w 1024 -h 768 -W 1280 -H 960 -b -- %command%

What this does:

  • Forces Proton to load the four local dgVoodoo DLLs.
  • Runs the game through Gamescope.
  • Forces Gamescope to use X11/XWayland by removing WAYLAND_DISPLAY.
  • Renders the game internally at 1024x768.
  • Displays it at 1280x960.
  • Uses a borderless Gamescope window.

Step 8: Launch the game

Press Play in Steam.

The first launch may take slightly longer because Steam is rebuilding the Proton prefix.

The game should now open with both audio and video.

To toggle Gamescope between windowed and fullscreen mode, press:

Super + F

Final working configuration

Obscure Steam AppID 254460
GE-Proton7-20
dgVoodoo2 2.79.3
MS/x86/D3D8.dll
MS/x86/D3D9.dll
MS/x86/D3DImm.dll
MS/x86/DDraw.dll
Gamescope using X11/XWayland

Final Steam launch option:

WINEDLLOVERRIDES="d3d8=n,b;d3d9=n,b;d3dimm=n,b;ddraw=n,b" env -u WAYLAND_DISPLAY gamescope -w 1024 -h 768 -W 1280 -H 960 -b -- %command%

I hope this saves someone else from hours of testing different Proton versions, DLL overrides, DirectX components and dgVoodoo releases.


r/NobaraProject 9h ago

Question Can I install Windows onto a spare drive with Nobara as my main OS?

1 Upvotes

Hey!

I have been on Nobara for a while now and was wondering if I could install Windows on one of my drives without breaking my install.

I have a spare 128GB SSD that I could use. I'm thinking of unplugging all other drives and installing Windows with only this one in the PC. Then potentially I could plug all the drives back in and use Nobara and Windows as needed. I'm just scared that Windows will start going around breaking stuff.

Would that work for a dual-boot setup? Setups I've seen have windows installed beforehand and then install Linux.

I just want it for trying out some games that aren't supported on Linux so it's not a big deal if this wouldn't work.


r/NobaraProject 1d ago

Support Nobara + GNOME (And Extensions) Requires Login despite having auto login enabled, and doesn't acknowledge updates being installed.

Enable HLS to view with audio, or disable this notification

5 Upvotes

Video demonstrates what's going on along with context about my current knowledge level of Linux. Also myb for the mispronunciation of Nobara.


r/NobaraProject 1d ago

Support Steam webhelper constantly crashes after nobara 44 update

3 Upvotes

It'll crash at startup and every few minutes after. I've tried restarting steam, restarting just the web helper, steam without gpu acceleration, etc.

When it crashes, it impacts game performance. Should I just reinstall steam? Also if I do reinstall, will steam auto detect my installed games?


r/NobaraProject 20h ago

Support Secondary NVME no longer mounts on startup (no change to fstab)

1 Upvotes

Hello,

Over the past couple of weeks, I've noticed a couple problems with my pc.

  1. When I reboot my pc, my second NVME drive doesn't mount, despite not changing the fstab and really changing the pc setup besides updating Nobara.

  2. When I select the power off button, one half-second after it shuts down completely, it will boot up again, but doesn't have this issue when I set the PC to sleep.

Does anyone have any ideas on how to fix these issues?


r/NobaraProject 1d ago

Question Update for AMD

3 Upvotes

Hello, AMD Igpu user here. Is it fully safe to update kernel/OS yet? I downloaded nobara months and months ago and the install was perfect but I’ve been terrified to update after seeing horror story after horror story since my initial install.

Edit: further specs ( not sure if they matter but) Mini PC Ryzen 7 6800U CPU Radeon 680M GPU Nobara KDE Plasma


r/NobaraProject 1d ago

Support New to Nobara

6 Upvotes

Hello everyone,

I was looking for a distro to install on the old Acer Nitro I have.

It has a Nvidia 1600, and after some research it seemed, that nobara is perfect for it.

I wanted to try it out and install it to a USB SSD first. So I removed all the other SSD, booted the live system and installed it to the USB drive.

Installation war fine, no issues here, restart also without Problems.

However, after I ran the update manager and restarted, I only got a black screen with a white curser blinking at the top right.

I waited for an hour to be sure, but nothing happened.

Any ideas?


r/NobaraProject 1d ago

Support Swapped my motherboard for an ITX build, can no longer update

4 Upvotes

Edit 3: I FIXED IT ALREADY, PLEASE STOP REPLYING. The only reason I haven't deleted this post is that maybe it'll help someone else. I don't need anything else from the peanut gallery, thank you.

Edit 2: just read through the documentation and tried sudo dnf distro-sync --refresh --nogpgcheck -y --allowerasing then nobara-sync which will hopefully fix the gpg key thing (if not, I'll fix it later, I just want my updates). My system isn't "fubar" as one of you claimed. Sure, maybe I'm the one that caused the issue, maybe not; there isn't a magical Linux fairy that'll give me the answer. But y'all act like people with tech issues on Linux are consciously trying to brick their PC.

Edit for those wanting to downvote and move on without actually helping: the command I'm supposedly meant to run (nobara-sync cli) doesn't work either (it just makes an endless loop where it checks repositories, shows them and their packages, then checks again. It's not actually updating anything as far as I can tell), and another I'm meant to use (sudo dnf distro-sync --refresh) functions identically to sudo dnf update (and outputs the same failure dialogue). I've literally never had issue with sudo dnf update before and I've been using this distro for a couple years now give or take, but I won't use it anymore and will instead use the command that I'm supposed to. However, it still doesn't solve the problem.

---

I ran sudo dnf update as I haven't updated in quite a while, and after waiting an hour and forty five minutes, Konsole spits this out:

--------------------------------------------------------------------------------------------------------------------------
[3683/3683] Total                                                                 100% |   1.3 MiB/s |   7.8 GiB |  01h45m
Running transaction
cannot open file: (2) - No such file or directory [/etc/pki/rpm-gpg/RPM-GPG-KEY-nobara-baseos-pubkey-41]

My uninformed assumption is that the OS doesn't like the new motherboard and there's some kind of security key that needs to be updated. The "easy" option is to just reinstall the OS, but I really don't feel like backing up all my files right now. Is there an obvious solution to this that I'm just not seeing? After going to the directory I found a bunch of GPG keys. Do I need to make one with KGpg? I've never needed to do that before.

Details from my system page if it matters at all:

Operating System: Nobara Linux 43

KDE Plasma Version: 6.6.4

KDE Frameworks Version: 6.25.0

Qt Version: 6.10.3

Kernel Version: 7.0.5-200.nobara.fc43.x86_64 (64-bit)

Graphics Platform: Wayland

Processors: 16 × AMD Ryzen 7 5800X 8-Core Processor

Memory: 32 GiB of RAM (31.3 GiB usable)

Graphics Processor: NVIDIA GeForce RTX 3060 Ti


r/NobaraProject 1d ago

Support Dual boot, can someone help me?

3 Upvotes

Please, I'm trying to get Nobara to work in dual boot and I'm not succeeding, everything is on a single disk.


r/NobaraProject 2d ago

Other 7.1.4 kernel now availalbe

14 Upvotes

Fresh from this morning, did nobara-sync --all twice as systemd got updates 1s, then bios

Enjoy!


r/NobaraProject 1d ago

Support Can't hear any audio in Davinci Resolve in Nobara Linux 44

1 Upvotes

Edit: the problem was Davinci Resolve will fail to play audio if a mic isn't connected, and since I don't have a mic connected I needed to find a different way to fix this.I ran

pactl list cards short

to see my audio card, and then i ran

pactl set-card-profile <audio card from the previous command> pro-audio

and then it just started working

I've been using davinci resolve on nobara linux using their installer for a while, and it was working perfectly fine. However, I just recently got this bug which makes it completely unusable. The audio doesn't work at all, and I don't think it's because of alsa since other applications that use alsa work fine. I think all this started happening once I upgraded to nobara linux 44 but I'm not too sure. Does anybody know what I should try doing? I've attached a video from the kde application volume panel and pavucontrol that show "resolve-real" flickering and not able to actually send audio to my output device.

https://reddit.com/link/1v20o5j/video/48usbpoyqgeh1/player

https://reddit.com/link/1v20o5j/video/nalqtd4zqgeh1/player


r/NobaraProject 2d ago

Support Updates with issues

Post image
3 Upvotes

Hello, This is an error that happens on my own computer, when I have to update the system sometimes it says that the boot partition is full.
I need to run this command in order to update correctly

"sudo dnf remove $(dnf repoquery --installonly --latest-limit=-2 -q)"

After reading a lot about it, in some places got to the conclusion that it's because I have an nVidia video card.
If so, is there a way to add this command at the end of the update to perform it automatically?
Because I might not be the only one with this issue.


r/NobaraProject 2d ago

Support Input remapper

3 Upvotes

I use a Razer Tartarus v2 for Paht of exile because I find having the keys there easier to manage than on a reguilar keyboard. This worked fine using Input-Remapper since I moved to Nobara about 6 months ago. I went to start testing before league starts on Friday and it is no longer working correctly. I also tried to installed xremap to see if that worked and also it is not working.

Instead of the mapped keys in the configuration it is simply pasing the default keys. Which makes it pretty useless.

Anyone have any idea on what maybe the issue?


r/NobaraProject 2d ago

Support switch pro controller inputs are wrong (need help)

5 Upvotes

I bought a PDP afterglow wave wireless nintendo switch pro controller, it didnt work at first but after installing the nintendo drivers it worked, but overnight it just randomly stopped working properly, and it was perfectly fine before, for example a lot of the buttons are messed up, i think its in XBOX layout since when i press X (the top button) it does Y which is X, and left trigger is Y (the left button) and i dont know i have tried everything i could think of, and there was a few interesting things, the controller is being handled by the hid-generic driver, instead of the nintendo one, in jstest /dev/input/js0 the inputs are shown properly, does anyone have any ideas? i have been at this for several days now and i cant find a good fix to this, i feel like it should be handled by the nintendo driver as installing it is what made it work in the first place, and maybe after turning my pc back on it changed to generic? i have no idea, but if anyone has any ideas on how to change it to hid-nintendo manually id love to hear it just let me know


r/NobaraProject 3d ago

Other Kernel version 7.1.3-200.nobara.fc44 causing freezing/hanging of the Desktop and Palworld while playing Palworld

8 Upvotes

I've spent the past couple of days (60 hours of playtime) dealing with massive lag and freezing in Palworld every couple of minutes while in the inventory (and other UI menu's) and hanging of the Desktop while playing.

After days of changing almost every kind of setting in the game and desktop, I rolled back the Kernel to 7.0.11-200.nobara.fc43 and all the lag, freezing and hanging has finally stopped (played 10 hours)

Here's the link to my original post in the Palworld subreddit: https://www.reddit.com/r/Palworld/s/DeiTeGwIXo

I wasn't really sure what to flair this post, it's more of a PSA for anyone that may be having trouble.

Also I'd be curious to know how to debug something like this.


r/NobaraProject 2d ago

Support Nobara 44 kinda bricked my PC (overheating even when Nobara is uninstalled)

0 Upvotes

Hey guys,

I tried updating via the updater to Nobara 44 and not only it froze, but it started overheating my PC to the point where it shut down.

I just found out that, apparently, the update is done best via the terminal.

However, whenever I tried flashing Nobara and reinstalling it on my SSD (and use my timeshift Backup), it just keeps on overheating so much!

I tried changing everything in my BIOS and the most consistent it’s been at idle is around 84 degrees Celsius before it started going up again.

My AIO pump seems fine, I’ve never had such problems on other distros (Fedora, Linux Mint, Ubuntu) and so I’m at a loss here. Any ideas how to go about it?

I’ve dusted everything, my AIO seems to be running well, I’ve reposted thermal paste and so I’m open to any ideas. Thank you

Specs:
Motherboard: Asus Tuf Gaming B-550 Plus Wifi
CPU: Ryzen 5 5600x
GPU: EVGA RTX 3070ti
AIO: NZXT Kraken z630 AIO pump


r/NobaraProject 3d ago

Other 702 packages today!

13 Upvotes

Here is the end result of the updates:


r/NobaraProject 3d ago

Support (KDE) Keyboard "sticks" on window change (mainly Brave)

3 Upvotes

I'm not sure how to explain this properly, but sometimes on alt+tab between fullscreen app and another app either
A. one key will be pressed infinitely (pressing ctrl+c results in ccc...) or
B. app will have only some keys working (possibly last pressed, didn't test, what I mean is whole keyboard not registering apart of 1-2 buttons, or
C. alt+shift "cancels" when pressing a key (English -> Russian switches, but pressing a letter results in immediate switch back of the language and printing the old lang)

If anybody could point me in the right direction I would appreciate it, it's very annoying.