# Using with Rocky10

### Prepare the system

* **OS:** Rocky10
* **GPU:** Nvidia RTX Pro 6000 blackwell Ada(96 GB)
* **Nvidia Driver**: 595.71.05
* **Cuda** **Toolkit:** 13.2
* **Docker**

### VM setting

1. ตรวจสอบว่า VM เห็น **GPU**

```
lspci | grep -i nvidia
```

> ต้องเห็น NVIDIA Corporation Device 2bb5 (RTX PRO 6000 Blackwell)

2. Nvidia Driver Installation

```
dnf install kernel-devel-matched kernel-headers
```

3. Repository Installation

* Enable the network repository:

```
dnf config-manager --add-repo https://developer.download.nvidia.com/compute/cuda/repos/$distro/$arch/cuda-$distro.repo
```

* Clean DNF repository cache:

```
dnf clean expire-cache
```

4. DNF module enablement

```
dnf module enable nvidia-driver:open-dkms
```

### Driver Installation

* Open kernel modules

```
dnf install -y nvidia-open
```

* nvidia-container-toolkit and cuda-toolkit installation

```
dnf install -y nvidia-container-toolkit
dnf install -y cuda-toolkit
reboot
```

* verify nvidia driver and contailner

> ถ้าหากไม่ขึ้น driver หรือคำสั่ง nvidia-smi ไม่สามารถใช้งานได้ ให้ทำการ reboot vm

```
nvidia-smi
docker run --gpus all --rm nvcr.io/nvidia/cuda:13.0.0-base-ubuntu24.04 nvidia-smi
```

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

ทดสอบกับ container [Using GPU with container](/readyidc-docs/gpu-as-a-service/using-gpu-with-container.md)


---

# Agent Instructions: 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:

```
GET https://readyidc.gitbook.io/readyidc-docs/gpu-as-a-service/use-case/using-with-rocky10.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
