Installing Media Player: Difference between revisions
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
sudo aptitude update</pre> | sudo aptitude update</pre> | ||
Install nvidia driver for GTX 700 | Install nvidia driver for GTX 700 (manually) | ||
<pre> | <pre> | ||
Download the suggested driver (319.32) | |||
Install prerequs | |||
<pre>apt -y install linux-headers-$(uname -r) build-essential libglvnd-dev pkg-config</pre> | |||
Disable nouveau | |||
<pre>nano /etc/modprobe.d/blacklist-nouveau.conf</pre> | |||
And then | |||
<pre> | |||
blacklist nouveau | |||
options nouveau modeset=0 | |||
</pre> | |||
Finally | |||
<pre>update-initramfs -u</pre> | |||
Restart |
Revision as of 07:57, 19 December 2022
install debian
Add user to sudo
sudo usermod -aG sudo bpopp
install extra stuff
sudo apt-get install aptitude binutils
Add non free
sudo apt-add-repository contrib sudo apt-add-repository non-free sudo aptitude update
Install nvidia driver for GTX 700 (manually)
Download the suggested driver (319.32) Install prerequs <pre>apt -y install linux-headers-$(uname -r) build-essential libglvnd-dev pkg-config
Disable nouveau
nano /etc/modprobe.d/blacklist-nouveau.conf
And then
blacklist nouveau options nouveau modeset=0
Finally
update-initramfs -u
Restart