2023-10-25 14:47:49 -07:00
# Ollama on Linux
2023-09-24 21:34:44 -07:00
2023-10-25 14:47:49 -07:00
## Install
2023-09-24 21:38:23 -07:00
2023-10-25 14:47:49 -07:00
Install Ollama running this one-liner:
2024-02-09 15:19:30 -08:00
2023-10-25 14:47:49 -07:00
>
2024-02-09 15:19:30 -08:00
2023-10-02 02:51:01 +08:00
```bash
2024-02-09 15:19:30 -08:00
curl -fsSL https://ollama.com/install.sh | sh
2023-09-24 21:38:23 -07:00
```
2024-02-15 17:15:09 -08:00
## AMD Radeon GPU support
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.
2023-10-25 14:47:49 -07:00
## Manual install
2023-09-24 21:34:44 -07:00
2024-08-15 14:38:14 -07:00
### Download `ollama`
2023-09-24 21:34:44 -07:00
2024-08-15 14:38:14 -07:00
Download and extract the Linux package:
2023-09-24 21:34:44 -07:00
2023-10-02 02:51:01 +08:00
```bash
2024-08-15 14:38:14 -07:00
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tgz | sudo tar zx -C /usr
2023-09-24 21:34:44 -07:00
```
2024-08-27 13:42:28 -07:00
If you have an AMD GPU, also download and extract the ROCm package into the same location
```bash
curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tgz | sudo tar zx -C /usr
```
2023-10-25 14:47:49 -07:00
### Adding Ollama as a startup service (recommended)
2023-09-24 21:34:44 -07:00
2024-09-04 11:45:09 -07:00
Create a user and group for Ollama:
2023-09-24 21:34:44 -07:00
2023-10-02 02:51:01 +08:00
```bash
2024-09-04 11:45:09 -07:00
sudo useradd -r -s /bin/false -U -m -d /usr/share/ollama ollama
sudo usermod -a -G ollama $(whoami)
2023-09-24 21:34:44 -07:00
```
Create a service file in `/etc/systemd/system/ollama.service` :
```ini
[Unit]
Description=Ollama Service
After=network-online.target
[Service]
ExecStart=/usr/bin/ollama serve
User=ollama
Group=ollama
Restart=always
RestartSec=3
2024-09-04 11:45:09 -07:00
Environment="PATH=$PATH"
2023-09-24 21:34:44 -07:00
[Install]
WantedBy=default.target
```
Then start the service:
2023-10-02 02:51:01 +08:00
```bash
2023-09-24 21:34:44 -07:00
sudo systemctl daemon-reload
sudo systemctl enable ollama
```
2023-09-25 16:10:32 -07:00
2023-10-25 14:47:49 -07:00
### Install CUDA drivers (optional – for Nvidia GPUs)
[Download and install ](https://developer.nvidia.com/cuda-downloads ) CUDA.
Verify that the drivers are installed by running the following command, which should print details about your GPU:
```bash
nvidia-smi
```
2024-03-08 09:45:55 -08:00
### Install ROCm (optional - for Radeon GPUs)
[Download and Install ](https://rocm.docs.amd.com/projects/install-on-linux/en/latest/tutorial/quick-start.html )
Make sure to install ROCm v6
2023-10-25 14:47:49 -07:00
### Start Ollama
2024-09-04 11:45:09 -07:00
Start Ollama and verify it is running:
2023-10-25 14:47:49 -07:00
```bash
sudo systemctl start ollama
2024-09-04 11:45:09 -07:00
sudo systemctl status ollama
2023-10-25 14:47:49 -07:00
```
## Update
Update ollama by running the install script again:
```bash
2024-02-09 15:19:30 -08:00
curl -fsSL https://ollama.com/install.sh | sh
2023-10-25 14:47:49 -07:00
```
Or by downloading the ollama binary:
```bash
2024-08-15 14:38:14 -07:00
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tgz | sudo tar zx -C /usr
2023-10-25 14:47:49 -07:00
```
2024-06-09 19:49:03 +02:00
## Installing specific versions
Use `OLLAMA_VERSION` environment variable with the install script to install a specific version of Ollama, including pre-releases. You can find the version numbers in the [releases page ](https://github.com/ollama/ollama/releases ).
For example:
```
curl -fsSL https://ollama.com/install.sh | OLLAMA_VERSION=0.1.32 sh
```
2023-10-25 14:47:49 -07:00
## Viewing logs
2023-09-25 16:10:32 -07:00
To view logs of Ollama running as a startup service, run:
2023-10-02 02:51:01 +08:00
```bash
2024-05-06 19:02:25 -03:00
journalctl -e -u ollama
2023-09-25 16:10:32 -07:00
```
2023-10-24 14:07:05 -04:00
## Uninstall
Remove the ollama service:
2023-10-25 14:47:49 -07:00
2023-10-24 14:07:05 -04:00
```bash
2023-10-25 14:47:49 -07:00
sudo systemctl stop ollama
sudo systemctl disable ollama
sudo rm /etc/systemd/system/ollama.service
2023-10-24 14:07:05 -04:00
```
Remove the ollama binary from your bin directory (either `/usr/local/bin` , `/usr/bin` , or `/bin` ):
2023-10-25 14:47:49 -07:00
2023-10-24 14:07:05 -04:00
```bash
2023-10-25 14:47:49 -07:00
sudo rm $(which ollama)
2023-10-24 14:07:05 -04:00
```
2024-01-12 05:07:00 +00:00
Remove the downloaded models and Ollama service user and group:
2024-02-09 15:19:30 -08:00
2023-10-24 14:07:05 -04:00
```bash
2023-10-25 14:47:49 -07:00
sudo rm -r /usr/share/ollama
sudo userdel ollama
2024-01-12 05:07:00 +00:00
sudo groupdel ollama
2023-10-24 14:07:05 -04:00
```