Learn how to install Steam on Linux quickly and easily! In this video, I’ll show you how to get the world’s most popular gaming platform running on your Linux system — step by step. Whether you’re new to Linux or just setting up your gaming environment, this guide will help you start playing your favorite games in no time.
If you’re exploring Linux gaming, Proton, or just want to see how smooth Steam runs outside of Windows, this video is for you!
💬 Topics covered:
Installing Steam on Linux
Setting up your gaming environment
Enabling Steam Play & Proton
Getting started with Linux gaming
🎮 Subscribe for more Linux gaming tutorials, tips, and live streams!
#LinuxGaming #SteamOnLinux #Proton #ozzoybits
Here are my commands:
/*/*/*/*/*/*/*/*/*/*/*/*/
#!/bin/bash
This script is to install the basics on a new Fedora machine.
I am not responsible for if things break or it doesn't work.
This script is not a replacement for propper knowlege and training.
#Update The system
sudo dnf update -y && dnf upgrade --refresh -y
sleep 2
echo "Reboot"
Install the RPM fusion repos
echo "Installing RPM fusion free repos for Fedora "
sleep 2
sudo dnf install https://download1.rpmfusion.org/free/... -E %fedora).noarch.rpm -y
echo "Installing RPM fusion non-free repos for Fedora"
sleep 2
sudo dnf install https://download1.rpmfusion.org/nonfr... -E %fedora).noarch.rpm-y
Start the Quality Of Life stuff
echo "Swapping ffmpeg"
sleep 2
sudo dnf swap -y ffmpeg-free ffmpeg --allowerasing
echo "Installing Multimedia codecs"
sleep 2
sudo dnf install -y @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
#Install Nvidia Stuff
echo "Installing VAAPI"
sleep 2
sudo dnf install -y libva-nvidia-driver
echo "Installing NVIDIA drivers"
sleep 2
sudo dnf install -y akmod-nvidia xorg-x11-drv-nvidia-cuda
echo "Done! reboot"
echo "Now Steam"
sudo dnf install steam -y
echo "Enjoy Linux Gaming"*/*/*/*/*/