Skip to content

Instantly share code, notes, and snippets.

View ksverchkov's full-sized avatar

Kirill Sverchkov ksverchkov

View GitHub Profile
@ksverchkov
ksverchkov / InstallationIssuesNVIDIA.runDELL Vostro 14 5000 Series [Geforce 930M] {Debian 13.Trixie}.md
Created September 2, 2025 07:15
NVIDIA drivers installation (with issues) for example DELL Vostro 14 5000 Series [Geforce 930M] {Debian 13.Trixie}

Comprehensive Guide to Installing NVIDIA Drivers on Debian 13 (Trixie)

This guide provides a step-by-step process for installing NVIDIA drivers on Debian 13 (Trixie), released in August 2025, with Linux kernel 6.12 LTS. It incorporates common issues encountered during installation, such as NVIDIA-SMI communication failures, modprobe causing 100% CPU usage, dependency conflicts in APT, kernel mismatches, and Secure Boot key rejection errors (e.g., "Key was rejected by service"). It also includes successful strategies like using the official NVIDIA .run installer, signing modules with a custom private key, and troubleshooting CPU imbalances.

Assumptions and Prerequisites:

  • You have an NVIDIA GPU (check compatibility on NVIDIA's website; e.g., RTX series for modern drivers).
  • System is updated: sudo apt update && sudo apt upgrade -y.
  • You're running as root or using sudo.
  • Backup your system (e.g., via Timeshift or rsync) before proceeding.
  • If Secure Boot is enabled (check with `mokutil --sb-
#!/bin/bash
# Конфигурация
URL="http://example.com" # Адрес для тестирования
THREADS=10 # Количество параллельных потоков (фонов)
REQUESTS=100 # Общее количество запросов
# Переменные для статистики
start_time=$(date +%s.%N)
max_rps=0
@ksverchkov
ksverchkov / installer.sh
Last active November 11, 2023 14:35
Simple bash installing addon script
#!/bin/bash
# Function to echo colored text
color_echo() {
local color=$1
local message=$2
case "$color" in
"red")
echo -e "\033[0;31m$message\033[0m"