Hello,
it works well for CPU processing, but did someone get it running on ubuntu with docker and GPU (i.e. M2200)?
What I did:
# Add the package repositories
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list
sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit
sudo systemctl restart docker
docker run -d -it \
--name=foldingathome \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Europe/Berlin \
-e NVIDIA_VISIBLE_DEVICES=all \
-p 7396:7396 \
-v /DATAINT/Docker-Conf/foldinghome:/config \
--restart unless-stopped \
--name foldingathome \
linuxserver/foldingathome
But I got following error with newest driver in Ubuntu 18.04:
root@Server:~# nvidia-smi
Thu Mar 26 14:47:54 2020
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 440.64 Driver Version: 440.64 CUDA Version: 10.2 |
root@Server:~# docker logs -f foldingathome
13:40:16:ERROR:WU01:FS01:Failed to start core: OpenCL device matching slot 1 not found, try setting 'opencl-index' manually
10:53:15:******************************* System ********************************
10:53:15: CPU: Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz
10:53:15: CPU ID: GenuineIntel Family 6 Model 158 Stepping 9
10:53:15: CPUs: 8
10:53:15: Memory: 31.14GiB
10:53:15:Free Memory: 29.29GiB
10:53:15: Threads: POSIX_THREADS
10:53:15: OS Version: 4.15
10:53:15:Has Battery: true
10:53:15: On Battery: false
10:53:15: UTC Offset: 1
10:53:15: PID: 259
10:53:15: CWD: /config
10:53:15: OS: Linux 4.15.0-91-generic x86_64
10:53:15: OS Arch: AMD64
10:53:15: GPUs: 1
10:53:15: GPU 0: Bus:1 Slot:0 Func:0 NVIDIA:5 GM206 [Quadro M2200]
10:53:15: CUDA: Not detected: cuInit() returned 100
10:53:15: OpenCL: Not detected: clGetPlatformIDs() returned -1001
12:22:50:<config>
12:22:50: <!-- Remote Command Server -->
12:22:50: <password v='********'/>
12:22:50:
12:22:50: <!-- Slot Control -->
12:22:50: <power v='FULL'/>
12:22:50:
12:22:50: <!-- User Information -->
12:22:50: <passkey v='********************************'/>
12:22:50: <team v='xxx'/>
12:22:50: <user v='xxx'/>
12:22:50:
12:22:50: <!-- Folding Slots -->
12:22:50: <slot id='0' type='CPU'>
12:22:50: <paused v='true'/>
12:22:50: </slot>
12:22:50: <slot id='1' type='GPU'>
12:22:50: <paused v='true'/>
12:22:50: </slot>
12:22:50:</config>