This commit is contained in:
Your Name
2024-11-12 00:07:46 +08:00
commit b00f025742
24 changed files with 1912 additions and 0 deletions

15
nvtop_script.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Update and install dependencies
# for debian sudo apt install nvtop
sudo apt update
sudo apt install cmake libncurses5-dev libncursesw5-dev git
# Clone NVTOP from GitHub
git clone https://ghproxy.dockless.eu.org/https://github.com/Syllo/nvtop.git
mkdir -p nvtop/build && cd nvtop/build
# Compile and install
cmake ..
make
sudo make install