mirror of
https://abf.rosa.ru/djam/boinc-client.git
synced 2025-02-24 07:32:49 +00:00
16 lines
530 B
Bash
16 lines
530 B
Bash
#!/bin/bash
|
|
# Wrap script used to fix GPU detection. You must run it under your user after the login.
|
|
# To use this script you must first disable boinc daemon:
|
|
# #systemctl disable boinc-client.service
|
|
# #systemctl stop boinc-client.service
|
|
#
|
|
# Add you user to boinc group:
|
|
# #usermod -G boinc <your_username>
|
|
#
|
|
# Then change directory and files permissions:
|
|
# #chmod -R g+rw /var/lib/boinc
|
|
# #chmod g+rw /var/log/boinc*
|
|
#
|
|
# Now you can set your DE to run this script at login.
|
|
|
|
/usr/bin/boinc --dir /var/lib/boinc
|