Page cover image

How to Reinstall Drivers

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

  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 525.116.04 --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/550.67/NVIDIA-Linux-x86_64-550.67.run
  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

Last updated