Skip to content

Instantly share code, notes, and snippets.

@dukenmarga
Last active April 26, 2025 03:57
Show Gist options
  • Select an option

  • Save dukenmarga/3e491663a352835caeef5e42bf266202 to your computer and use it in GitHub Desktop.

Select an option

Save dukenmarga/3e491663a352835caeef5e42bf266202 to your computer and use it in GitHub Desktop.
Ollama Installation

Install

curl -fsSL https://ollama.com/install.sh | sh

Change Ollama download directory (where models are saved)

# Create your mounting directory where models will be saved
mkdir -p /media/data/ollama-models
sudo chown -R ollama:ollama /media/data/ollama-models 

# Mount it permanently as original ollama directory
sudo vi /etc/fstab
/media/data/ollama-models /usr/share/ollama/.ollama/models     none     defaults,bind     0 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment