docs: fix tar decompression flags

This commit is contained in:
Persioqq 2026-04-19 18:32:40 -03:00
parent ff23dd343f
commit b43a4b6268
No known key found for this signature in database
GPG key ID: B4E0F9C3561284E8

View file

@ -21,7 +21,7 @@ Download and extract the package:
```shell
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tar.zst \
| sudo tar x -C /usr
| sudo tar --zstd -x -C /usr
```
Start Ollama:
@ -42,7 +42,7 @@ If you have an AMD GPU, also download and extract the additional ROCm package:
```shell
curl -fsSL https://ollama.com/download/ollama-linux-amd64-rocm.tar.zst \
| sudo tar x -C /usr
| sudo tar --zstd -x -C /usr
```
### ARM64 install
@ -51,7 +51,7 @@ Download and extract the ARM64-specific package:
```shell
curl -fsSL https://ollama.com/download/ollama-linux-arm64.tar.zst \
| sudo tar x -C /usr
| sudo tar --zstd -x -C /usr
```
### Adding Ollama as a startup service (recommended)
@ -147,7 +147,7 @@ Or by re-downloading Ollama:
```shell
curl -fsSL https://ollama.com/download/ollama-linux-amd64.tar.zst \
| sudo tar x -C /usr
| sudo tar --zstd -x -C /usr
```
## Installing specific versions