this post was submitted on 03 Dec 2023
460 points (95.5% liked)

Technology

58795 readers
3732 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

Arch and other Linux operating systems Beat Windows 11 in Gaming Benchmarks::ComputerBase benchmarked three different Linux operating systems and found that all three can achieve better gaming performance than Windows 11.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] Samueru@lemmy.ml 2 points 10 months ago (1 children)

Try using yuzu-mainline-git from the aur and change your compile flags (edit makepkg.conf) to match=native mtune=native and O3. That gives a 15% boost in totk.

Also use zram instead of zswap as that that causes terrible stuttering on yuzu if you are short of ram. The usual recommendation is to use zstd compression but I can tell you that lz4 performs better on yuzu.

"sudo pacman -S zram generator" then "sudo nano /etc/systemd/zram-generator.conf" and paste this:

[zram0]
zram-size = ram
compression-algorithm = lz4
swap-priority = 100

Also make sure you are running gamemode with yuzu. Same with steam games.

[โ€“] maxprime@lemmy.ml 1 points 10 months ago

Thanks! I will try all of these suggestions.