Copy & Remove Models in Ollama
From the Ollama cheat sheet ยท Model Management ยท verified Jul 2026
Copy & Remove Models
Create model aliases and delete models from local storage.
bash
# Copy/alias a model to a new name
ollama cp llama3.2 my-model
# Remove a model
ollama rm my-model๐ก Copying a model creates a lightweight alias โ it does not duplicate the model files
โก Use cp to alias models to OpenAI-compatible names (e.g., gpt-3.5-turbo)
๐ Removing a model frees up disk space by deleting its layers
๐ข You can always re-pull a removed model from the registry later
copyremovealias