In this video, you'll get a complete overview of Fedora Workstation—from installation to running games and Android apps.
🔹 What I showed:
• Installing Fedora
• Overview of the GNOME desktop
• Installing programs and where to get them
• Running Windows games and using Steam
• Installing Extension Manager and customizing the interface
• Installing Waydroid and running Android on Fedora
Fedora is one of the most stable and technologically advanced Linux distributions. It's perfect for both work and play.
✅ Subscribe if you're interested in Linux and modern features!
-----------------------
Links:
Fedora - https://fedoraproject.org/
Ventoy - • Ventoy - MultiBoot флешка. Идеальная флешк...
PortProton - • Запуск Windows игр и программ на Linux и c...
Other OS - • Операционные системы
Waydroid - https://docs.waydro.id/usage/install-...
-----------------------
Timecodes:
00:00 - Installing Fedora Linux
03:10 - Bringing Back the Buttons
04:33 - Fedora Overview
07:24 - Drivers
07:49 - Updates and Software
10:05 - Power Consumption
10:25 - Mission Center
11:35 - Windows Games
12:40 - Steam
14:50 - Top Linux Site
15:50 - Android on Linux
21:55 - Fedor Customization
34:35 - Subscribe!
---------------------
Commands:
Restore the minimize buttons:
sudo dnf install gnome-tweaks
Nvidia Drivers:
Step 1: Install the *RPM Fusion* Repository
*RPM Fusion* provides proprietary drivers, including drivers for **NVIDIA**.
1. Add the *RPM Fusion Free* and *Non-Free* repositories:
sudo dnf install \
https://download1.rpmfusion.org/free/... -E %fedora).noarch.rpm \
https://download1.rpmfusion.org/nonfr... -E %fedora).noarch.rpm
2. Update the repositories:
sudo dnf update
Step 2: Installing the NVIDIA Driver
Now that you have access to the RPM Fusion repositories, you can install the NVIDIA driver.
1. Install the drivers for your graphics card:
For the standard driver (recommended for most users):
sudo dnf install akmod-nvidia
*akmod-nvidia* will automatically compile the driver for your current kernel version.
2. Also, if you need to use the Vulkan library for games or applications, install the vulkan driver:
sudo dnf install nvidia-vulkan
3. Install additional useful packages, such as nvidia-settings (for configuring graphics via the GUI) and xorg-x11-drv-nvidia (if required for X11):
sudo dnf install nvidia-settings xorg-x11-drv-nvidia
Step 3: Reboot and Verify
After installing the drivers, reboot the system:
sudo reboot
Step 4: Verify the Installation
After rebooting, you can verify that the driver is installed correctly using the command:
nvidia-smi
This command should display information about your graphics card and its status.
If you see information about your graphics card, the driver is installed correctly.