Skip to main content

Kali Linux Setup

Upgrade System

sudo apt update && sudo apt upgrade -y

Install Nvidia Drivers

  • install the nvidia driver, neglect the conflict warning
apt-get install nvidia-driver -y
  • remove the open source driver
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
blacklist nouveau
options nouveau modeset=0
alias nouveau off
  • save file and exit
update-initramfs -u
reboot