TambuchaLinux 21 – Nvidia and Steam Setup on a Debian12 Base – SpiralLinux 2023
SpiralLinux Downloads:
Copy and Paste the following text to create an install script:
#! /bin/sh
# if you have the raspi-firmware package installed, run command below and reboot before proceeding with the install commands
# sudo apt autoremove –purge raspi-firmware
### Installing Nvidia Drivers and Steam on Debian 12 ###
# a few packages are not truly essential, but are recommended
sudo dpkg –add-architecture i386 && sudo apt update -y
sudo apt install libavcodec-extra -y
sudo apt install linux-headers-$(uname -r) -y
sudo apt install nvidia-driver nvidia-driver-libs:i386 firmware-misc-nonfree -y
sudo apt install nvidia-vulkan-common nvidia-vulkan-icd -y
sudo apt install nvidia-settings nvidia-smi libnvidia-encode1 -y
sudo apt install steam-installer -y
sudo update-initramfs -u
echo ‘Done! Please restart to activate the Nvidia driver’
[ad_2]
source