F5F Stay Refreshed Software Operating Systems Install GTX 460 on Linux using appropriate drivers and software.

Install GTX 460 on Linux using appropriate drivers and software.

Install GTX 460 on Linux using appropriate drivers and software.

Pages (3): Previous 1 2 3 Next
T
timo_1892
Senior Member
715
08-27-2022, 02:03 AM
#11
During installation the system reported an error with nvidia-dkms-390. After attempting a driver update via sudo apt upgrade, communication failures occurred between NVIDIA-SMI and the driver. The process ended with exit code 10 indicating no drivers were found.
T
timo_1892
08-27-2022, 02:03 AM #11

During installation the system reported an error with nvidia-dkms-390. After attempting a driver update via sudo apt upgrade, communication failures occurred between NVIDIA-SMI and the driver. The process ended with exit code 10 indicating no drivers were found.

B
BlockBlasterX
Junior Member
3
08-27-2022, 02:03 AM
#12
The installation steps weren't followed properly. It's better to redo the NVIDIA driver setup. Some instructions suggest forcing the install, which isn't effective for NVIDIA.
B
BlockBlasterX
08-27-2022, 02:03 AM #12

The installation steps weren't followed properly. It's better to redo the NVIDIA driver setup. Some instructions suggest forcing the install, which isn't effective for NVIDIA.

C
caltemus
Member
69
08-27-2022, 02:03 AM
#13
You should follow the provided instructions carefully to complete the installation.
C
caltemus
08-27-2022, 02:03 AM #13

You should follow the provided instructions carefully to complete the installation.

P
Prioritized
Junior Member
1
08-27-2022, 02:04 AM
#14
Setup can be challenging on the initial attempt. I reviewed multiple tutorials from both the official Debian and Arch websites. My approach was to generate the xorg.conf file automatically from tty2, verify compatibility with the standard noveau driver, then test in the graphical interface if needed—adjusting back to tty2 for custom tweaks when necessary. After that, I disabled the generic noveau driver via a config file, used nvidia-detect to locate the driver, modified xorg.conf for nvidia cards, installed the driver, CUDA, and related packages through APT, refreshed the system image and grub, and finally rebooted. Edited June 10, 2022 by FUIT1985 Nvidia with Debian
P
Prioritized
08-27-2022, 02:04 AM #14

Setup can be challenging on the initial attempt. I reviewed multiple tutorials from both the official Debian and Arch websites. My approach was to generate the xorg.conf file automatically from tty2, verify compatibility with the standard noveau driver, then test in the graphical interface if needed—adjusting back to tty2 for custom tweaks when necessary. After that, I disabled the generic noveau driver via a config file, used nvidia-detect to locate the driver, modified xorg.conf for nvidia cards, installed the driver, CUDA, and related packages through APT, refreshed the system image and grub, and finally rebooted. Edited June 10, 2022 by FUIT1985 Nvidia with Debian

L
ladymorepork
Posting Freak
791
08-27-2022, 02:04 AM
#15
Utilize the built-in graphics when available.
L
ladymorepork
08-27-2022, 02:04 AM #15

Utilize the built-in graphics when available.

F
Flabalicious
Junior Member
24
08-27-2022, 02:04 AM
#16
I don't
F
Flabalicious
08-27-2022, 02:04 AM #16

I don't

S
SillyDragon
Senior Member
586
08-27-2022, 02:04 AM
#17
Understood. I'll keep that in mind.
S
SillyDragon
08-27-2022, 02:04 AM #17

Understood. I'll keep that in mind.

Y
yalo29
Senior Member
641
08-27-2022, 02:04 AM
#18
I don’t understand Pop!_OS or whether this guide applies to it. From the TTY you shouldn’t halt the X-server. First, log in and verify your video PCI card’s BusID... $ lspci | grep -i vga 01:00.0 VGA compatible controller: NVIDIA Corporation GP106 [GeForce GTX 1060 6GB] (rev a1) Next, using the new driver, make a basic x.org file, move it to the right spot, restart and test the graphical interface with heuristics; if issues persist, log back in and adjust the file via nano. Then, reload the system by removing any existing NVIDIA setup and reinstalling... $ sudo apt-get remove nvidia* && sudo apt-get autoremove && sudo apt-get update && sudo apt-get install dkms build-essential linux-headers-$(uname -r) Example: $ cat /etc/X11/xorg.conf Section "Device" Identifier "Screen0" Driver "nouveau" BusID "PCI:1:0:0" EndSection Save with nano using Ctrl+O then Ctrl+X. After that, log back in, clear any NVIDIA-related files, and update the system... $ sudo nano /etc/X11/xorg.conf save and exit via Ctrl+O then X. Then restart, removing old NVIDIA entries and reinstalling... If needed, create a blacklist for the new driver with nano: $ sudo nano /etc/modprobe.d/blacklist-nouveau.conf Add lines like blacklist nvidia blacklist lbm-nouveau options nouveau modeset=0 alias nouveau off alias lbm-nouveau off. Ensure kernel options are set and check the driver status with nvidia-detect. For 32-bit support, install lib32z1, curses, etc. Finally, verify everything works with nvidia-smi.**
Y
yalo29
08-27-2022, 02:04 AM #18

I don’t understand Pop!_OS or whether this guide applies to it. From the TTY you shouldn’t halt the X-server. First, log in and verify your video PCI card’s BusID... $ lspci | grep -i vga 01:00.0 VGA compatible controller: NVIDIA Corporation GP106 [GeForce GTX 1060 6GB] (rev a1) Next, using the new driver, make a basic x.org file, move it to the right spot, restart and test the graphical interface with heuristics; if issues persist, log back in and adjust the file via nano. Then, reload the system by removing any existing NVIDIA setup and reinstalling... $ sudo apt-get remove nvidia* && sudo apt-get autoremove && sudo apt-get update && sudo apt-get install dkms build-essential linux-headers-$(uname -r) Example: $ cat /etc/X11/xorg.conf Section "Device" Identifier "Screen0" Driver "nouveau" BusID "PCI:1:0:0" EndSection Save with nano using Ctrl+O then Ctrl+X. After that, log back in, clear any NVIDIA-related files, and update the system... $ sudo nano /etc/X11/xorg.conf save and exit via Ctrl+O then X. Then restart, removing old NVIDIA entries and reinstalling... If needed, create a blacklist for the new driver with nano: $ sudo nano /etc/modprobe.d/blacklist-nouveau.conf Add lines like blacklist nvidia blacklist lbm-nouveau options nouveau modeset=0 alias nouveau off alias lbm-nouveau off. Ensure kernel options are set and check the driver status with nvidia-detect. For 32-bit support, install lib32z1, curses, etc. Finally, verify everything works with nvidia-smi.**

K
kattegal10
Junior Member
31
08-27-2022, 02:04 AM
#19
Thank you for putting in so much effort—I’ll definitely give it another try.
K
kattegal10
08-27-2022, 02:04 AM #19

Thank you for putting in so much effort—I’ll definitely give it another try.

C
ChickenPhoYou
Posting Freak
850
08-27-2022, 02:04 AM
#20
I haven’t had a chance to test your solution yet, but I tried it again in a live setup with a 1920x1080 display. Both Linux and UEFI BIOS worked at the same resolution, though there were black bars around the screen. When switching to Windows, it returned to native resolution. A friend suggested it might be related to the DVI cable you’re using—just wanted your thoughts before purchasing a new one.
C
ChickenPhoYou
08-27-2022, 02:04 AM #20

I haven’t had a chance to test your solution yet, but I tried it again in a live setup with a 1920x1080 display. Both Linux and UEFI BIOS worked at the same resolution, though there were black bars around the screen. When switching to Windows, it returned to native resolution. A friend suggested it might be related to the DVI cable you’re using—just wanted your thoughts before purchasing a new one.

Pages (3): Previous 1 2 3 Next