> For the complete documentation index, see [llms.txt](https://docs.clore.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.clore.ai/for-hosts/server-offline-on-clore.ai/how-to-reinstall-drivers.md).

# How to Reinstall Drivers

Sometimes, an error may occur when attempting to reinstall drivers. To resolve it, follow these steps:

<figure><img src="/files/YAGnqXAawyiEu0lfCclB" alt=""><figcaption></figcaption></figure>

1. Put the rig in maintenance mode in HiveOS by disabling driver loading.
2. Disable services:

   ```
   systemctl disable clore-hosting.service
   systemctl disable docker.service
   systemctl disable docker.socket
   ```
3. Reboot the system:

   ```
   reboot
   ```
4. Install the required drivers:
   * To install a specific driver version, use the command:

     ```
     nvidia-driver-update 580.126.18 --force
     ```
   * Or to install a driver from a link on the NVIDIA website:

     ```
     nvidia-driver-update https://us.download.nvidia.com/XFree86/Linux-x86_64/580.126.18/NVIDIA-Linux-x86_64-580.126.18.run
     ```

**Recommended Driver Versions:**

| Branch      | Version    | Support Until | Best For                         |
| ----------- | ---------- | ------------- | -------------------------------- |
| R580 (LTSB) | 580.126.18 | Aug 2028      | Recommended stable for most GPUs |
| R590        | 590.48.01  | Dec 2026      | Latest features, RTX 50 series   |

**Note:** For RTX 5090/5080 GPUs, use R590 branch (minimum). For all other GPUs, R580 LTSB is recommended for stability. 5. Update the system (optional):

````
```
apt update
apt upgrade
apt autoremove
```
````

6\. Disable maintenance mode and re-enable all services:

````
```
systemctl enable clore-hosting.service
systemctl enable docker.service
systemctl enable docker.socket
reboot
```
````


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.clore.ai/for-hosts/server-offline-on-clore.ai/how-to-reinstall-drivers.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
