VM (NV series) unstable after failed installation of AZURE NVidia driver

Todd Knight 0 Reputation points
2025-11-11T23:09:35.9733333+00:00

VM is NV (NVidia) series but came with MS graphic drivers, when AZURE Nvidia driver was selected, install failed. VM is now unstable. Reboots every 2 minutes.

Azure Virtual Machines
Azure Virtual Machines
An Azure service that is used to provision Windows and Linux virtual machines.
{count} votes

1 answer

Sort by: Most helpful
  1. Q&A Assist
    2025-11-11T23:09:48.72+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    If your NV series VM is unstable and rebooting every 2 minutes after a failed installation of the Azure NVIDIA driver, you may want to consider the following troubleshooting steps:

    1. Check Extension Status: Verify the status of the NVIDIA GPU Driver Extension in the Azure portal or by using PowerShell or the Azure CLI. You can run the following command to check the deployment state:
         Get-AzVMExtension -ResourceGroupName <myResourceGroup> -VMName <myVM> -Name <myExtensionName>
      
      Or using Azure CLI:
         az vm extension list --resource-group <myResourceGroup> --vm-name <myVM> -o table
      
    2. Review Output Logs: Check the output logs for the NVIDIA GPU Driver Extension deployment. You can find these logs under C:\WindowsAzure\Logs\Plugins\Microsoft.HpcCompute.NvidiaGpuDriverWindows\.
    3. Respond to Error Codes: If you encounter specific error codes during the installation, refer to the documentation for potential follow-up actions. For example, if the error code indicates an operation timeout, you may need to retry the operation.
    4. Reboot the VM: If the installation process was interrupted, a reboot may be necessary to complete the installation.
    5. Manual Driver Installation: If the extension installation continues to fail, consider manually installing the NVIDIA drivers. You can follow the manual installation instructions provided in the documentation for your specific Linux distribution or Windows version.
    6. Check for Compatibility Issues: Ensure that the driver version you are trying to install is compatible with your VM size and type. For instance, certain GRID driver versions may not be compatible with specific NV series SKUs.

    If the problem persists, you may need to remove the NVIDIA driver extension and reinstall it or consider restoring the VM to a previous state if possible.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.