File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 1
1
VERSION = 6.20.0
2
2
CUDA_PLUGIN_VERSION =6.17.0
3
3
CUDA_VERSION =11-4
4
- REL = $(VERSION ) -1
4
+ REL = $(VERSION ) -2
5
5
THREADS = $(shell nproc)
6
6
PRIORITY = 0
7
7
REPO =docker.io/metal3d/xmrig
Original file line number Diff line number Diff line change @@ -126,7 +126,6 @@ MSR (Model Specific Registry) is a specific setting that allow read/write on spe
126
126
To be able to set MSR inside the container, you must (at least on podman, I don't use docker) :
127
127
128
128
- use ` sudo `
129
- - add ` --device=/dev/cpu `
130
129
- add ` --privileged `
131
130
132
131
This is not nice, I know... Using sudo is a constraint.
@@ -137,15 +136,11 @@ In my case, this is the command line I use :
137
136
# basic mining with CPU (replace podman by docker if you are using it)
138
137
sudo podman run --rm -it \
139
138
--privileged \
140
- --device /dev/cpu \
141
- --device /dev/cpu_dma_latency \
142
139
docker.io/metal3d/xmrig
143
140
144
141
# to use CUDA devices
145
142
sudo podman run --rm -it \
146
143
--privileged \
147
- --device /dev/cpu \
148
- --device /dev/cpu_dma_latency \
149
144
--device nvidia.com/gpu=all \
150
145
-e CUDA=true
151
146
docker.io/metal3d/xmrig
You can’t perform that action at this time.
0 commit comments