ну как же так, я сто раз ставил дрова на видео по инструкции с офиц сайта. Всё прекрасно работало.
This document explains how to make use of NVIDIA video hardware and install the drivers on a Kali Linux system. The first step is to fully update your Kali Linux system and make sure you have the kernel headers installed.
Код:
apt-get update
apt-get dist-upgrade
apt-get install -y linux-headers-$(uname -r)
apt-get install nvidia-kernel-dkms
The next step is to disable the
nouveau driver.
Ссылка скрыта от гостей
is a open source NVIDIA driver project, however it lacks the 3D graphics acceleration needed to run Cuda pentest tools.
Код:
sed 's/quiet/quiet nouveau.modeset=0/g' -i /etc/default/grub
update-grub
reboot
Once the system boots back up, you may see a NVIDIA splash screen, which will indicate that the drivers installed correctly, however, this is not always the case. In order to check if the drivers are working properly, execute the following command.
Код:
root@kali:~# glxinfo | grep -i "direct rendering"
direct rendering: Yes
Этот способ и на Попугае у меня работал.