19 lines
582 B
Markdown
19 lines
582 B
Markdown
|
|
# Install incus and ollama in a baremetal server.
|
|
|
|
Script for install Ollama with nvidia gpu support in Incus.
|
|
|
|
The script add also support for docker OCI images.
|
|
|
|
You need execute two scripts. First script, prepare the baremetal server for use nvidia cuda. The second script install Ollama with NVIDIA GPU support.
|
|
|
|
```sh
|
|
curl -fsSL https://git.cuchulu.com/smartest/aiscripts/raw/branch/master/install_nvidia.sh | bash
|
|
```
|
|
|
|
Reboot the server for the next script.
|
|
|
|
```sh
|
|
curl -fsSL https://git.cuchulu.com/smartest/aiscripts/raw/branch/master/install_incus_ollama.sh | bash
|
|
```
|
|
|