Skip to content

Commit 31ce6c6

Browse files
author
Alexia Michelle
committed
fix
1 parent 547b6b5 commit 31ce6c6

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

docs/nvidia-drivers.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Unlike AMD or Intel, NVIDIA does not open-source its drivers to the Linux kernel
1010

1111
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.**
1212

13+
Furthermore, the official package ensures seamless integration with the core system components, including:
14+
- **DKMS**: Automatically rebuilds modules for new kernels.
15+
- **APT**: Manages dependencies and security updates.
16+
- **Secure Boot**: Handles signing requirements.
17+
- **Initramfs**: Ensures the driver is correctly loaded at the earliest boot stage.
18+
1319
### The "Manual Install" Trap
1420
If you install the driver manually using a `.run` file from NVIDIA's website:
1521
1. The driver compiles a kernel module specifically for your **current** kernel version.
@@ -28,13 +34,15 @@ We strongly recommend **against** installing NVIDIA drivers using the `.run` fil
2834
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.
2935

3036
```bash
37+
sudo apt update
3138
sudo apt -t trixie-backports install nvidia-driver linux-image-amd64 linux-headers-amd64 -y
3239
```
3340

3441
### Option 2: The Stable Version
3542
If you prefer to stay on the standard stable version (fully tested and updated alongside your current kernel), run:
3643

3744
```bash
45+
sudo apt update
3846
sudo apt install nvidia-driver
3947
```
4048

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ A diferencia de AMD o Intel, NVIDIA no abre su código ni al kernel de Linux ni
88

99
## ¿Por qué usar los paquetes del repositorio?
1010

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.**
11+
El binario que se descarga de la página oficial de NVIDIA es exactamente 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+
Además, el paquete oficial garantiza una integración perfecta con los componentes principales del sistema:
14+
- **DKMS**: Recompila automáticamente los módulos para nuevos kernels.
15+
- **APT**: Gestiona dependencias y actualizaciones de seguridad.
16+
- **Secure Boot**: Maneja los requisitos de firma digital.
17+
- **Initramfs**: Asegura que el controlador se cargue correctamente desde la etapa inicial del arranque.
1218

1319
### La trampa de la "Instalación Manual"
1420
Si instalas el controlador manualmente usando un archivo `.run` del sitio de NVIDIA:
@@ -28,13 +34,15 @@ No se recomienda bajo ningún concepto instalar el controlador NVIDIA utilizando
2834
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.
2935

3036
```bash
37+
sudo apt update
3138
sudo apt -t trixie-backports install nvidia-driver linux-image-amd64 linux-headers-amd64 -y
3239
```
3340

3441
### Opción 2: Versión Stable
3542
Si prefieres mantenerte en la versión estable estándar (probada y actualizada siempre junto con tu kernel actual), ejecuta:
3643

3744
```bash
45+
sudo apt update
3846
sudo apt install nvidia-driver
3947
```
4048

0 commit comments

Comments
 (0)