README.Slackware 1018 B

123456789101112131415161718192021222324252627282930313233
  1. For headless operation, a start up script is included. The script will
  2. execute as root with the data directory as '/var/lib/boinc_data'.
  3. Modify as needed:
  4. BOINC_DIR=/var/lib/boinc_data # directory of boinc files
  5. BOINC_USER=root # user that will run boinc process
  6. Refer to the boinc manpage for parameters you can add to
  7. BOINC_OPTIONS.
  8. To run boinc on boot, add the following code to /etc/rc.d/rc.local:
  9. if [ -x /etc/rc.d/rc.boinc ]; then
  10. /etc/rc.d/rc.boinc start
  11. fi
  12. and to /etc/rc.d/rc.local_shutdown
  13. if [ -x /etc/rc.d/rc.boinc ]; then
  14. /etc/rc.d/rc.boinc stop
  15. fi
  16. Note 1:
  17. The default configuration enables boinc control on the running
  18. host via boinccmg or boincmgr on th same running host. To truly run
  19. headless, you will need to configure boinc to allow RPC access from
  20. another host.
  21. Note 2:
  22. If you use the default data path of /var/lib/boinc as a non-root user,
  23. before first use, you will need to create the that path and set the
  24. appropriate user permissions.