-
Notifications
You must be signed in to change notification settings - Fork 447
Installing BOINC on Fedora
Please read the instructions here.
Installs BOINC Client as a daemon (autostarts the BOINC client at boot time) and puts a BOINC Manager icon on the applications menu. To install it, open a terminal, enter: sudo yum install boinc-client boinc-manager Give the root password when prompted and be patient while the BOINC package downloads and installs.
Alternately, fetch the boinc-client
and boinc-manager
rpm packages (using for instance rpm.pbone.net
), and open them with the Package Installer. You'll be prompted for the root password as appropriate.
Optional: if you want to have Linux auto-start boinc-client daemon at boot time, enter <code>/sbin/chkconfig boinc-client on (in Fedora 16), or <code>systemctl enable boinc-client.service (in Fedora 17). (See Stop or start BOINC daemon after boot page for helpful commands for managing the daemon)
- Install Fedora 37
- sudo yum install boinc-client boinc-manager
- sudo systemctl enable boinc-client
- sudo systemctl start boinc-client
- sudo systemctl status boinc-client and ensure successfully started
- sudo usermod -aG boinc jco
- RESTART. For Fedora 37 login/logout NOT sufficient.
- check member of boinc group with groups. Should see wheel boinc
- sudo chmod -R g+rw /var/lib/boinc
- cd ~
- sudo ln -s /var/lib/boinc/gui_rpc_auth.cfg .
- Creates the daemon script. In F16: <code>/etc/init.d/boinc-client. In F17: <code>/usr/lib/systemd/system/boinc-client.service.
- Places the BOINC binaries (
boinc_client
,boinccmd
andboincmgr
) in/usr/bin/
. - Creates
/var/lib/boinc/
for BOINC data files and theslots
andprojects
directories. - Names the daemon
boinc-client
. - Creates a user named
boinc
. For security,boinc
owns the BOINC data directory (/var/lib/boinc/
) and all the data files and sub-directories it creates in the data directory.
- If you elected to have Linux start the daemon at boot time (see step 3 in section Basic installation), logout and reboot Linux now and login under your normal user account.
- If you elected to not have Linux start the daemon at boot time, start the daemon manually with in F16
/sbin/service boinc-client start
, in F17systemctl start boinc-client.service
- Open a terminal and enter
ps aux | grep boinc
to print a partial list of running processes. You should seeboinc_client --daemon
in that list; if not, then something went wrong in the steps above.
Or alternatively in F17systemctl status boinc-client.service
will display the status of the boinc-client service.
Orpgrep -l boinc
will display the procid and daemon name, that is "2298 boinc_client".
To use the GUI to set up your accounts and monitor progress:
- Start
boincmgr
on the command line or selectApplications -> System Tools -> Boinc Manager
from the GNOME menu. - Select
File -> Select computer...
from the Boinc Manager menu. - Put
localhost
in for "Host name" and the contents of/var/lib/boinc/gui_rpc_auth.cfg
for "Password" and hit "OK".
If you do only the basic installation as described above, BOINC manager will not be able to automatically connect to the client. To connect the client you will be required to give the GUI RPC password every time you start BOINC manager. That is not a bug, it is a security feature to prevent other users from using the manager to manipulate the client, change your projects, etc.
If you don't want to put the password every time you run the BOINC manager, you can either:
Boinc (the user named boinc
) owns /var/lib/boinc/
and all the files and directories in it, so you will not be able to edit those files easily from your regular user account. The steps below add your username to the boinc
group and adjust some permissions so that BOINC manager will automatically connect to BOINC client whenever you start the manager from your regular Linux user account. Also, you will be able to edit files in the BOINC directory without becoming root
. As you type in each command below, substitute your Linux username wherever you see username
. Enter the following commands in a terminal, as root
:
/usr/sbin/usermod -G boinc -a <font color="red">username</font>
chmod g+rw /var/lib/boinc
chmod g+rw /var/lib/boinc/*.*
ln -s /var/lib/boinc/gui_rpc_auth.cfg /home/<font color="red">username</font>/gui_rpc_auth.cfg
Finally, logout and login again so that your new group membership takes effect.
To make the GUI passwordless, do <code>echo > /var/lib/boinc/gui_rpc_auth.cfg (which replaces the contents of the file with a newline) and then restart boinc-client (with e.g. in F16: <code>/sbin/service boinc-client restart, in F17: <code>systemctl restart boinc-client.service).
If you want to use Cuda, install it as described here: https://fedoraproject.org/wiki/Cuda , and install xorg-x11-drv-nvidia-libs (to avoid libcuda.so.1: cannot open shared object file
error message) with this:
su -c 'yum install xorg-x11-drv-nvidia-libs'
You will also need to disable SELinux:
su -c 'setenforce 0'
''For more information about configuring BOINC in Linux, see Linux file permissions.''
''Since Fedora such as version 13 has a firewall switched on by default it is necessary to configure exceptions allowing BOINC to communicate via the localhost IP 127.0.0.1 and port 31416.''
In a terminal, enter: su -c 'yum remove boinc-client boinc-manager'