You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -97,60 +95,75 @@ After adding the repository, synchronize the package manager again:
97
95
sudo dnf distro-sync
98
96
```
99
97
100
-
## Installing `nvidia-driver-libs` and `nvidia-driver-cuda-libs`
98
+
## Installing Nvidia Driver Libraries
101
99
102
-
We need to detect if the host is supplying the [NVIDIA driver libraries into the toolbox](https://github.com/containers/toolbox/blob/main/src/pkg/nvidia/nvidia.go).
100
+
First, we need to detect if the host is supplying the [NVIDIA driver libraries into the toolbox](https://github.com/containers/toolbox/blob/main/src/pkg/nvidia/nvidia.go):
103
101
104
102
```bash
105
103
ls -la /usr/lib64/libcuda.so.1
106
104
```
107
105
108
-
**Explanation:**
106
+
### If *`libcuda.so.1`* is missing:
107
+
108
+
```
109
+
ls: cannot access '/usr/lib64/libcuda.so.1': No such file or directory
110
+
```
109
111
110
-
-`nvidia-driver-libs` and `nvidia-driver-cuda-libs` contains necessary NVIDIA driver libraries required by CUDA,
111
-
on hosts with NVIDIA drivers installed the Fedora Container will supply the host libraries.
112
+
**Explanation:**
113
+
The host dose not supply the CUDA drivers, **install them now:**
112
114
113
-
### Install Nvidia Driver Libraries on Guest (if `libcuda.so.1` was NOT found).
Copy file name to clipboardExpand all lines: docs/build.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -132,12 +132,14 @@ You may find the official downloads here: [NVIDIA developer site](https://develo
132
132
133
133
134
134
#### Compile and run inside a Fedora Toolbox Container
135
-
We also have a [guide](./cuda-fedora.md) for setting up CUDA toolkit in a Fedora [toolbox container](https://containertoolbx.org/).
135
+
We also have a [guide](./backend/CUDA-FEDORA.md) for setting up CUDA toolkit in a Fedora [toolbox container](https://containertoolbx.org/).
136
136
137
137
**Recommended for:**
138
-
139
-
- ***Particularly*** *convenient* for users of [Atomic Desktops for Fedora](https://fedoraproject.org/atomic-desktops/); such as: [Silverblue](https://fedoraproject.org/atomic-desktops/silverblue/) and [Kinoite](https://fedoraproject.org/atomic-desktops/kinoite/).
140
-
- Toolbox is installed by default: [Fedora Workstation](https://fedoraproject.org/workstation/) or [Fedora KDE Plasma Desktop](https://fedoraproject.org/spins/kde).
138
+
- ***Necessary*** for users of [Atomic Desktops for Fedora](https://fedoraproject.org/atomic-desktops/); such as: [Silverblue](https://fedoraproject.org/atomic-desktops/silverblue/) and [Kinoite](https://fedoraproject.org/atomic-desktops/kinoite/).
139
+
- (there are no supported CUDA packages for these systems)
140
+
- ***Necessary*** for users that have a host that is not a: [Supported Nvidia CUDA Release Platform](https://developer.nvidia.com/cuda-downloads).
141
+
- (for example, you may have [Fedora 42 Beta](https://fedoramagazine.org/announcing-fedora-linux-42-beta/) as your your host operating system)
142
+
- ***Convenient*** For those running [Fedora Workstation](https://fedoraproject.org/workstation/) or [Fedora KDE Plasma Desktop](https://fedoraproject.org/spins/kde), and want to keep their host system clean.
141
143
- *Optionally* toolbox packages are available: [Arch Linux](https://archlinux.org/), [Red Hat Enterprise Linux >= 8.5](https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux), or [Ubuntu](https://ubuntu.com/download)
0 commit comments