Documentation edits made through Mintlify web editor

This commit is contained in:
Michael
2026-01-09 21:29:03 -05:00
committed by GitHub
parent 1ef4241727
commit c6d4c0c7f2

View File

@@ -1,5 +1,5 @@
--- ---
title: Linux title: "Linux"
--- ---
## Install ## Install
@@ -13,15 +13,14 @@ curl -fsSL https://ollama.com/install.sh | sh
## Manual install ## Manual install
<Note> <Note>
If you are upgrading from a prior version, you should remove the old libraries If you are upgrading from a prior version, you should remove the old libraries with `sudo rm -rf /usr/lib/ollama` first.
with `sudo rm -rf /usr/lib/ollama` first.
</Note> </Note>
Download and extract the package: Download and extract the package:
```shell ```shell
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tar.zst \ curl -fsSL https://ollama.com/download/ollama-linux-amd64.tgz \
| sudo tar x -C /usr | sudo tar zx -C /usr
``` ```
Start Ollama: Start Ollama:
@@ -41,8 +40,8 @@ ollama -v
If you have an AMD GPU, also download and extract the additional ROCm package: If you have an AMD GPU, also download and extract the additional ROCm package:
```shell ```shell
curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tar.zst \ curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tgz \
| sudo tar x -C /usr | sudo tar zx -C /usr
``` ```
### ARM64 install ### ARM64 install
@@ -50,8 +49,8 @@ curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tar.zst \
Download and extract the ARM64-specific package: Download and extract the ARM64-specific package:
```shell ```shell
curl -fsSL https://ollama.com/download/ollama-linux-arm64.tar.zst \ curl -fsSL https://ollama.com/download/ollama-linux-arm64.tgz \
| sudo tar x -C /usr | sudo tar zx -C /usr
``` ```
### Adding Ollama as a startup service (recommended) ### Adding Ollama as a startup service (recommended)
@@ -113,11 +112,7 @@ sudo systemctl status ollama
``` ```
<Note> <Note>
While AMD has contributed the `amdgpu` driver upstream to the official linux While AMD has contributed the `amdgpu` driver upstream to the official linux kernel source, the version is older and may not support all ROCm features. We recommend you install the latest driver from https://www.amd.com/en/support/linux-drivers for best support of your Radeon GPU.
kernel source, the version is older and may not support all ROCm features. We
recommend you install the latest driver from
https://www.amd.com/en/support/linux-drivers for best support of your Radeon
GPU.
</Note> </Note>
## Customizing ## Customizing
@@ -146,8 +141,8 @@ curl -fsSL https://ollama.com/install.sh | sh
Or by re-downloading Ollama: Or by re-downloading Ollama:
```shell ```shell
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tar.zst \ curl -fsSL https://ollama.com/download/ollama-linux-amd64.tgz \
| sudo tar x -C /usr | sudo tar zx -C /usr
``` ```
## Installing specific versions ## Installing specific versions
@@ -196,4 +191,4 @@ Remove the downloaded models and Ollama service user and group:
sudo userdel ollama sudo userdel ollama
sudo groupdel ollama sudo groupdel ollama
sudo rm -r /usr/share/ollama sudo rm -r /usr/share/ollama
``` ```