Skip to content

Commit 547b6b5

Browse files
author
Alexia Michelle
committed
baa
1 parent c0ebef2 commit 547b6b5

2 files changed

Lines changed: 78 additions & 4 deletions

File tree

docs/nvidia-drivers.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,43 @@ sidebar_position: 4
44

55
# NVIDIA Driver Installation
66

7-
This guide will cover the installation of NVIDIA proprietary drivers on GoldenDog Linux.
7+
Unlike AMD or Intel, NVIDIA does not open-source its drivers to the Linux kernel or distributions. As a result, NVIDIA drivers are always proprietary, regardless of which distribution you use.
88

9-
*(Content coming soon... In the meantime, you can use the official Debian non-free repositories to install `nvidia-driver`.)*
9+
## Why Use Repository Packages?
10+
11+
The binary provided by NVIDIA on their official website is essentially the same as the one found in the Debian/GoldenDog `nvidia-driver` package. However, installing it through the official repositories offers a massive advantage: **Stability during updates.**
12+
13+
### The "Manual Install" Trap
14+
If you install the driver manually using a `.run` file from NVIDIA's website:
15+
1. The driver compiles a kernel module specifically for your **current** kernel version.
16+
2. When GoldenDog/Debian updates the kernel, that module becomes invalid.
17+
3. Your system may fail to boot into a graphical session until you manually recompile the driver.
18+
19+
By using the repository package, the system uses **DKMS** to automatically recompile the driver module every time a new kernel is installed.
20+
21+
:::danger DO NOT INSTALL MANUALLY
22+
We strongly recommend **against** installing NVIDIA drivers using the `.run` files from NVIDIA's website. It is the leading cause of system breakage after updates.
23+
:::
24+
25+
## Installation Guide
26+
27+
### Option 1: The Latest Features (Backports)
28+
For users who want the best performance, the latest driver features, and better support for **Wayland**, we recommend using the backports repository. This ensures you have both the latest kernel and the latest compatible driver.
29+
30+
```bash
31+
sudo apt -t trixie-backports install nvidia-driver linux-image-amd64 linux-headers-amd64 -y
32+
```
33+
34+
### Option 2: The Stable Version
35+
If you prefer to stay on the standard stable version (fully tested and updated alongside your current kernel), run:
36+
37+
```bash
38+
sudo apt install nvidia-driver
39+
```
40+
41+
## Post-Installation
42+
After the installation completes, restart your computer to load the new drivers.
43+
44+
```bash
45+
sudo reboot
46+
```

i18n/es/docusaurus-plugin-content-docs/current/nvidia-drivers.md

Lines changed: 39 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,43 @@ sidebar_position: 4
44

55
# Instalación de Controladores NVIDIA
66

7-
Esta guía cubrirá la instalación de los controladores propietarios de NVIDIA en GoldenDog Linux.
7+
A diferencia de AMD o Intel, NVIDIA no abre su código ni al kernel de Linux ni a ninguna distribución. Por lo tanto, el controlador de NVIDIA es siempre **privativo**, sin importar la distribución que utilices.
88

9-
*(Contenido próximamente... Mientras tanto, puedes usar los repositorios oficiales non-free de Debian para instalar `nvidia-driver`.)*
9+
## ¿Por qué usar los paquetes del repositorio?
10+
11+
El binario que se descarga de la página oficial de NVIDIA es esencialmente el mismo que se ofrece en el paquete `nvidia-driver` de Debian/GoldenDog. Sin embargo, instalarlo desde los repositorios oficiales ofrece una ventaja crucial: **Estabilidad durante las actualizaciones.**
12+
13+
### La trampa de la "Instalación Manual"
14+
Si instalas el controlador manualmente usando un archivo `.run` del sitio de NVIDIA:
15+
1. El instalador compila un módulo del kernel específicamente para tu versión de kernel **actual**.
16+
2. Cuando el sistema actualiza el kernel, ese módulo deja de ser válido.
17+
3. El sistema podría fallar al iniciar la sesión gráfica hasta que recompiles manualmente el controlador.
18+
19+
Al usar el paquete del repositorio, el sistema utiliza **DKMS** para recompilar automáticamente el módulo del controlador cada vez que se instala un nuevo kernel.
20+
21+
:::danger NO INSTALAR MANUALMENTE
22+
No se recomienda bajo ningún concepto instalar el controlador NVIDIA utilizando los archivos `.run` descargados fuera de la distribución. Esta es la causa principal de fallos en el sistema tras una actualización.
23+
:::
24+
25+
## Guía de Instalación
26+
27+
### Opción 1: Lo más reciente (Backports)
28+
Para los usuarios que buscan el mejor rendimiento, las funciones más recientes del controlador y un mejor soporte para **Wayland**, recomendamos utilizar el repositorio de *backports*. Esto garantiza que tengas tanto el kernel más reciente como el último controlador compatible.
29+
30+
```bash
31+
sudo apt -t trixie-backports install nvidia-driver linux-image-amd64 linux-headers-amd64 -y
32+
```
33+
34+
### Opción 2: Versión Stable
35+
Si prefieres mantenerte en la versión estable estándar (probada y actualizada siempre junto con tu kernel actual), ejecuta:
36+
37+
```bash
38+
sudo apt install nvidia-driver
39+
```
40+
41+
## Post-Instalación
42+
Una vez finalizada la instalación, reinicia tu computadora para cargar los nuevos controladores.
43+
44+
```bash
45+
sudo reboot
46+
```

0 commit comments

Comments
 (0)