-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall_gpu.sh
More file actions
executable file
·49 lines (41 loc) · 1.41 KB
/
install_gpu.sh
File metadata and controls
executable file
·49 lines (41 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash
# @Author: ArthurBernard
# @Email: arthur.bernard.92@gmail.com
# @Date: 2024-11-21 11:30:24
# @Last modified by: ArthurBernard
# @Last modified time: 2024-11-21 11:33:35
# Define colors
GREEN='\033[0;32m'
RED='\033[0;31m'
YELLOW='\033[1;33m'
BLUE='\033[0;34m'
NC='\033[0m' # No Color
# Check if the script is run as root
if [ "$EUID" -ne 0 ]; then
echo -e "${RED}Please run this script as root.${NC}"
exit 1
fi
# Remove existing CUDA and NVIDIA drivers
echo -e "${YELLOW}Removing existing NVIDIA and CUDA drivers...${NC}"
apt --purge remove "*cud*" "*nvidia*" -y
# Update and upgrade system packages
echo -e "${YELLOW}Updating system packages...${NC}"
apt update && apt upgrade -y
# Install Ubuntu drivers common tools
echo -e "${YELLOW}Installing ubuntu-drivers-common...${NC}"
apt install -y ubuntu-drivers-common
# List available drivers
echo -e "${BLUE}Detecting available NVIDIA drivers...${NC}"
ubuntu-drivers devices
# Autoinstall recommended drivers
echo -e "${YELLOW}Installing recommended NVIDIA drivers...${NC}"
ubuntu-drivers autoinstall
# Verify installation
echo -e "${YELLOW}Verifying NVIDIA driver installation...${NC}"
if command -v nvidia-smi &>/dev/null; then
nvidia-smi
echo -e "${GREEN}NVIDIA drivers installed successfully.${NC}"
echo -e "${BLUE}Please reboot your system to apply changes.${NC}"
else
echo -e "${RED}NVIDIA drivers installation failed. Please check logs for details.${NC}"
fi