this post was submitted on 07 Sep 2025
510 points (81.0% liked)

linuxmemes

27217 readers
101 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack users for any reason. This includes using blanket terms, like "every user of thing".
  • Don't get baited into back-and-forth insults. We are not animals.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn, no politics, no trolling or ragebaiting.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, <loves/tolerates/hates> systemd, and wants to interject for a moment. You can stop now.
  • 5. 🇬🇧 Language/язык/Sprache
  • This is primarily an English-speaking community. 🇬🇧🇦🇺🇺🇸
  • Comments written in other languages are allowed.
  • The substance of a post should be comprehensible for people who only speak English.
  • Titles and post bodies written in other languages will be allowed, but only as long as the above rule is observed.
  • 6. (NEW!) Regarding public figuresWe all have our opinions, and certain public figures can be divisive. Keep in mind that this is a community for memes and light-hearted fun, not for airing grievances or leveling accusations.
  • Keep discussions polite and free of disparagement.
  • We are never in possession of all of the facts. Defamatory comments will not be tolerated.
  • Discussions that get too heated will be locked and offending comments removed.
  •  

    Please report posts and comments that break these rules!


    Important: never execute code or follow advice that you don't understand or can't verify, especially here. The word of the day is credibility. This is a meme community -- even the most helpful comments might just be shitposts that can damage your system. Be aware, be smart, don't remove France.

    founded 2 years ago
    MODERATORS
     

    Alt text: A line plot with 2 axis (confidence vs competence) referencing the Dunning-Kruger effect with various distro logos placed at different points on the line. Starts with mint/ubuntu near (0,0) and progressing through multiple distros to end up with opensuse/fedora at what it calls “the plateau of sustainability”

    you are viewing a single comment's thread
    view the rest of the comments
    [–] v3ctors@piefed.blahaj.zone 1 points 3 days ago* (last edited 3 days ago) (1 children)
    
    ##### RPM Fusion & Terra  
    sudo dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm  
    # https://github.com/terrapkg/packages  
    sudo dnf install --nogpgcheck --repofrompath 'terra,https://repos.fyralabs.com/terra$releasever' terra-release  
    sudo dnf group upgrade core  
    sudo dnf4 group install core  
    
    ##### firmware  
    sudo fwupdmgr refresh --force  
    sudo fwupdmgr get-devices # Lists devices with available updates.  
    sudo fwupdmgr get-updates # Fetches list of available updates.  
    sudo fwupdmgr update  
    
    ##### appimage  
    sudo dnf install -y fuse fuse-libs  
    sudo flatpak install it.mijorus.gearlever  
    
    ##### graphics_drivers  
    # https://rpmfusion.org/Howto/NVIDIA  
    ### nvidia  
    sudo dnf install -y akmod-nvidia  
    sudo dnf install -y --skip-unavailable xorg-x11-drv-nvidia-cuda  
    sudo dnf mark user akmod-nvidia  
    sudo dnf mark user xorg-x11-drv-nvidia-cuda  
    sudo dnf install -y --skip-unavailable vulkan  
    sudo dnf install -y --skip-unavailable xorg-x11-drv-nvidia-cuda-libs  
    modinfo -F version nvidia  
    reboot  
    lsmod | grep nouveau  
    sudo lspci -vnn  
    #look for your gpu, and see what module is in use.  Should be nvidia :)  
    
    ##### Media Codecs  
    sudo dnf4 group install multimedia  
    sudo dnf swap 'ffmpeg-free' 'ffmpeg' --allowerasing # Switch to full FFMPEG.  
    sudo dnf upgrade @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin # Installs gstreamer components. Required if you use Gnome Videos and other dependent applications.  
    sudo dnf group install -y sound-and-video # Installs useful Sound and Video complementary packages.  
    
    ##### H/W Video Decoding with VA-API  
    sudo dnf install -y --skip-unavailable ffmpeg-libs libva libva-utils  
    
    ##### OpenH264 for Firefox  
    sudo dnf install -y --skip-unavailable openh264 gstreamer1-plugin-openh264 mozilla-openh264  
    sudo dnf config-manager setopt fedora-cisco-openh264.enabled=1  
    # After this enable the OpenH264 Plugin in Firefox's settings.  
    
    ##### gaming  
    sudo dnf install -y steam lutris gamemode goverlay meson gcc pkgconf  
    sudo flatpak install bottles Proton-GE protontricks Heroic ludusavi  
    
    protonup-qt (flatpak)  
    # get from https://flathub.org/apps/net.davidotek.pupgui2/install  
    # would not install from cli from flathub for some reason :eyeroll:  
    
    [–] corsicanguppy@lemmy.ca 2 points 3 days ago (1 children)

    Every time I see flatpaks, the former OS security dev in me cringes.

    JHTerpstra taught me so much in the 00s, and his lessons haven't stopped being relevant.

    [–] Desyn0xox@lemmy.ml 2 points 2 days ago

    Care to elaborate?