Last active
October 23, 2024 21:16
-
-
Save santisbon/812cf66ad20380a70cad9bd1bdbe4408 to your computer and use it in GitHub Desktop.
Fedora
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo dnf up[grade] | |
# View repo list | |
dnf -v repolist --enabled [| grep Repo-baseurl] | |
# RPM Fusion repos (free and non-free) | |
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 | |
# On Fedora, we default to use the openh264 library, so you need the repository to be explicitely enabled | |
sudo dnf config-manager --enable fedora-cisco-openh264 | |
# reboot | |
# amd64 only | |
sudo dnf install steam | |
# Install Warp terminal | |
# https://docs.warp.dev/getting-started/getting-started-with-warp | |
sudo rpm --import https://releases.warp.dev/linux/keys/warp.asc | |
sudo sh -c 'echo -e "[warpdotdev]\nname=warpdotdev\nbaseurl=https://releases.warp.dev/linux/rpm/stable\nenabled=1\ngpgcheck=1\ngpgkey=https://releases.warp.dev/linux/keys/warp.asc" > /etc/yum.repos.d/warpdotdev.repo' | |
sudo dnf install warp-terminal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment