### Install .rpm Package Source: https://github.com/utkuozdemir/nvidia_gpu_exporter/blob/master/INSTALL.md Use this command to install the exporter on Red Hat-based systems using the .rpm package. ```bash sudo rpm -i nvidia-gpu-exporter_1.3.1_linux_amd64.rpm ``` -------------------------------- ### Install Windows Exporter and Dependencies via PowerShell Source: https://github.com/utkuozdemir/nvidia_gpu_exporter/blob/master/INSTALL.md Installs Scoop package manager, git, NSSM, and the exporter itself. Also configures Windows Firewall and starts the service. ```PowerShell Set-ExecutionPolicy RemoteSigned -Scope CurrentUser Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') scoop install git scoop install nssm --global scoop bucket add nvidia_gpu_exporter https://github.com/utkuozdemir/scoop_nvidia_gpu_exporter.git scoop install nvidia_gpu_exporter/nvidia_gpu_exporter --global New-NetFirewallRule -DisplayName "Nvidia GPU Exporter" -Direction Inbound -Action Allow -Protocol TCP -LocalPort 9835 nssm install nvidia_gpu_exporter "C:\ProgramData\scoop\apps\nvidia_gpu_exporter\current\nvidia_gpu_exporter.exe" Start-Service nvidia_gpu_exporter ``` -------------------------------- ### Download and Install Linux Binary Source: https://github.com/utkuozdemir/nvidia_gpu_exporter/blob/master/INSTALL.md Steps to download the latest Linux binary, extract it, and move it to the PATH. Includes a help command to verify installation. ```bash VERSION=1.3.1 wget https://github.com/utkuozdemir/nvidia_gpu_exporter/releases/download/v${VERSION}/nvidia_gpu_exporter_${VERSION}_linux_x86_64.tar.gz tar -xvzf nvidia_gpu_exporter_${VERSION}_linux_x86_64.tar.gz mv nvidia_gpu_exporter /usr/bin nvidia_gpu_exporter --help ``` -------------------------------- ### Install .deb Package Source: https://github.com/utkuozdemir/nvidia_gpu_exporter/blob/master/INSTALL.md Use this command to install the exporter on Debian-based systems using the .deb package. ```bash sudo dpkg -i nvidia-gpu-exporter_1.3.1_linux_amd64.deb ``` -------------------------------- ### Configure and Start Linux Systemd Service Source: https://github.com/utkuozdemir/nvidia_gpu_exporter/blob/master/INSTALL.md Reloads systemd, and then enables and starts the nvidia_gpu_exporter service to run on boot. ```bash sudo systemctl daemon-reload sudo systemctl enable --now nvidia_gpu_exporter ``` -------------------------------- ### Create Linux Systemd User and Group Source: https://github.com/utkuozdemir/nvidia_gpu_exporter/blob/master/INSTALL.md Creates a dedicated system user and group for the nvidia_gpu_exporter service to run under. ```bash sudo useradd --system --no-create-home --shell /usr/sbin/nologin nvidia_gpu_exporter ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.