Skip to content

Instantly share code, notes, and snippets.

@liyu1981
Created May 15, 2025 00:59
Show Gist options
  • Save liyu1981/05a15bba8262c2842689b9e827e13425 to your computer and use it in GitHub Desktop.
Save liyu1981/05a15bba8262c2842689b9e827e13425 to your computer and use it in GitHub Desktop.
restart ollama for using gpu in ubuntu
#!/bin/bash
if [ "$1" = "post" ]; then
# Stop Ollama service
systemctl stop ollama
# Reload the NVIDIA UVM module
sudo rmmod nvidia_uvm
sudo modprobe nvidia_uvm
# Restart Ollama service
systemctl start ollama
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment