• 0 Posts
  • 7 Comments
Joined 8 months ago
cake
Cake day: November 24th, 2023

help-circle
  • In the old days distros used to separate the location of binaries in several places like /bin /sbin /usr/bin and /usr/sbin there was this idea that system binaries would go in /sbin while the rest in /bin and the similar dirs in /usr were so that you could mount a separate drive to store more binaries. This is from a time where storage was an issue.

    These days distros usually just symlink all those locations to /usr/bin with the exception of fedora, which still keeps some split.

    However it seems they will finally merge the remaining dirs in fedora 41: https://fedoraproject.org/wiki/Changes/Unify_bin_and_sbin






  • 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.