Info | Message |
---|---|
1) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 63627 Posted 14 Aug 2015 by Cheryl |
Once, again, THANK YOU, for finding a resolution. Will update to the official 7.6 when it's released. Cheryl |
2) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 63591 Posted 13 Aug 2015 by Cheryl |
Very happy to report that this build resolved the issue of hanging on boot for all of my 10.10.x (Yosemite) lab images. Is it OK for me to use this build in a production setting or should I wait for an official release? Thanks for looking at this and finding a fix. I have been using BOINC for 8 years in conjunction with the World Community Grid projects and just cringed at the thought of having to pull it from all of my lab computers. Cheryl |
3) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 63546 Posted 12 Aug 2015 by Cheryl |
I just saw your response. I am currently in the process of testing this build. Will let you know my results. Thanks! Cheryl |
4) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 63422 Posted 6 Aug 2015 by Cheryl |
One thing I have failed to mention is that I run BOINC as a service/daemon using this script: #!/bin/sh # This file is part of BOINC. # http://boinc.berkeley.edu # Copyright (C) 2008 University of California # # BOINC is free software; you can redistribute it and/or modify it # under the terms of the GNU Lesser General Public License # as published by the Free Software Foundation, # either version 3 of the License, or (at your option) any later version. # # BOINC is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # See the GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with BOINC. If not, see <http://www.gnu.org/licenses/>. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # # ## # Script to set up Macintosh to run BOINC client as a daemon / service # by Charlie Fenton 7/26/06 # revised 1/6/08 to use launchd ## ## Note: this version of this script requires BOINC 5.10.34 or later ## and OS 10.4 or later. ## ## Usage: ## ## source Make_BOINC_Service.sh [path_to_client_dir] [path_to_data_dir] ## ## path_to_client_dir is needed only for stand-alone client or if Manager ## is at non-standard location. ## ## path_to_data_dir is needed only for stand-alone client when data is in ## a different directory than the client. ## ## Directions for use: ## ## (1) Install BOINC Manager using the BOINC.pkg Installer Package, or ## install stand-alone client. ## (2) Make sure you are logged in as a user with administrator ## privileges. ## (3) Run the Terminal application. ## (4) In the Terminal window, type "source" and a space. ## (5) Drag this script file from the Finder into the Terminal window. ## (6) If using the stand-alone client, or if the Manager is in a non- ## standard location, drag the folder containing the client from ## the Finder into the Terminal window (or type the path excluding ## the trailing slash). ## (7) If using the stand-alone client, but the client is not in the data ## directory, drag the BOINC data folder from the Finder into the ## Terminal window (or type the path excluding the trailing slash). ## (8) Press the return key. ## (9) When prompted, enter your administrator password. ## (10) Restart the computer. ## ## The system will now start BOINC client as a daemon / service at ## system startup. You will still be able to control and monitor BOINC ## using the BOINC Manager, but BOINC client will remain running after ## you quit BOINC Manager, when the ScreenSaver quits, and even when ## no user is logged in. ## ## Note: the BOINC ScreenSaver may not display graphics for some users ## when BOINC Client is running as a daemon / service. Thus will be ## fixed with the release of BOINC 6.0 and project applications updated ## to use the BOINC 6 graphics API. ## ## ## When the system has launched BOINC Client as a daemon, you can stop the ## BOINC Client from the Terminal by typing: ## sudo launchctl stop edu.berkeley.boinc ## and you can restart the BOINC Client from the Terminal by typing: ## sudo launchctl start edu.berkeley.boinc ## ## Note: The BOINC Client will quit immediately after launch if it detects ## another instance of BOINC Client already running. So these launchctl ## commands will fail if the BOINC Client was started by the BOINC Manager ## or ScreenSaver. ## ## If BOINC Client is not already running when the BOINC Manager is launched, ## the Manager will start BOINC Client. This will happen automatically at ## login if you have BOINC Manager set as a login item for that user. If ## it was started by the Manager, then BOINC Client will quit when the BOINC ## Manager quits. ## ## If BOINC Client is not already running when the BOINC ScreenSaver starts, ## the ScreenSaver will start BOINC Client and will quit BOINC Client when ## the ScreenSaver is dismissed. ## ## REMOVAL: ## To undo the effects of this script (i.e., to permanently stop running BOINC ## as a daemon / service): ## (1) In the Finder, browse to the /Library/LaunchDaemons folder. ## (2) Drag the file edu.berkeley.boinc.plist to the trash. (Finder will ask ## for your administrator user name and password). ## (3) Restart the computer. ## ## The system will no longer start BOINC client as a daemon / service ## at system startup. ## ## If you wish to completely remove BOINC from your computer, first ## complete the above steps, then follow the directions in the web ## page http://boinc.berkeley.edu/mac_advanced.php or in the README.rtf ## file supplied with the BOINC installer. ## if [ $# -eq 0 ] ; then PATH_TO_CLIENT="/Applications/BOINCManager.app/Contents/Resources" PATH_TO_DATA="/Library/Application Support/BOINC Data" # Check for BOINC Manager with embedded BOINC Client if [ ! -f "${PATH_TO_CLIENT}/boinc" ]; then echo " ***************************** ERROR ***************************" echo " * *" echo " * Could not find BOINC Manager with embedded BOINC client *" echo " * in Applications Directory. *" echo " * *" echo " * Please install BOINC Manager before running this script. *" echo " * *" echo " ***************************************************************" return 1 fi else PATH_TO_CLIENT="$1" PATH_TO_DATA="$1" # Check for stand-alone BOINC Client if [ ! -f "${PATH_TO_CLIENT}/boinc" ]; then echo " ***************************** ERROR ***************************" echo " * *" echo " * Could not find BOINC client at specified directory *" echo " * *" echo " * Please install BOINC client before running this script. *" echo " * *" echo " ***************************************************************" return 1 fi fi if [ $# -gt 1 ] ; then PATH_TO_DATA="$2" fi # Check for BOINC Data directory if [ ! -d "${PATH_TO_DATA}" ]; then echo " ****************** ERROR ******************" echo " * *" echo " * Could not find BOINC data directory *" echo " * *" echo " *******************************************" return 1 fi # Delete the old-style boinc daemon StartupItem if present sudo rm -fR /Library/StartupItems/boinc # Delete old temporary working directory and files if present rm -fR ~/boincStartupTemp # Create new temporary working directory mkdir -p ~/boincStartupTemp/ # Create file edu.berkeley.boinc.plist in temporary directory. # (For some reason, we can't create the file directly in the final # destination directory, so we create it here and then move it.) cat >> ~/boincStartupTemp/edu.berkeley.boinc.plist << ENDOFFILE <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>GroupName</key> <string>boinc_master</string> <key>Label</key> <string>edu.berkeley.boinc</string> <key>Program</key> <string>${PATH_TO_CLIENT}/boinc</string> <key>ProgramArguments</key> <array> <string>${PATH_TO_CLIENT}/boinc</string> <string>-redirectio</string> <string>-daemon</string> </array> <key>RunAtLoad</key> <true/> <key>UserName</key> <string>boinc_master</string> <key>WorkingDirectory</key> <string>${PATH_TO_DATA}/</string> </dict> </plist> ENDOFFILE sudo mv -f ~/boincStartupTemp/edu.berkeley.boinc.plist /Library/LaunchDaemons/ # Delete temporary working directory rm -fR ~/boincStartupTemp # Set ownership and permissions for our plist sudo chown root:wheel /Library/LaunchDaemons/edu.berkeley.boinc.plist sudo chmod 0444 /Library/LaunchDaemons/edu.berkeley.boinc.plist return 0 |
5) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 63355 Posted 31 Jul 2015 by Cheryl |
Charlie, I have removed BOINC from the computers in question and all are booting fine. I will try this new release. Thanks! Cheryl |
6) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 63243 Posted 27 Jul 2015 by Cheryl |
Charlie, I have been running the 7.4.42 version on Yosemite (10.10.3) without issue until the past two weeks. With Apple's latest update of 10.10.4, I have seen my boot ups hang once again on a percentage of the Late-2013 iMacs. (12 computers out of 38 in the lab). On the older Late-2011 iMac Models running this version of BOINC, I get kernel panics which force a reboot and then once again hang before getting to the login screen. This is on 100% of the 10 iMacs in this particular lab. I have sent these kernel crash reports, which clearly list BOINC as the offending process, to Apple and will be opening a formal bug report with them also. If there are any logs that you would like to see, let me know and I will forward them to you. Cheryl |
7) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 61344 Posted 1 Apr 2015 by Cheryl |
Jord, Thanks for the quick response from both you and the developer. I'll try removing it from Login Items and see what happens. Cheryl |
8) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 61342 Posted 1 Apr 2015 by Cheryl |
Thank you! Cheryl |
9) Message boards : News : BOINC 7.4.42 released for Windows and Mac
Message 61319 Posted 31 Mar 2015 by Cheryl |
Hello, I just installed BOINC version 7.4.42 on a fresh, new installation of Yosemite 10.10.2 on a Late 2013 iMac. When booting in Verbose Mode, I get this error message at the end of the boot process, which repeats itself many times: BUG in process suhelperd [202]: over-released legacy external boot assertions (1 total, 1 external, 0 legacy external). Traces of the error message stay on the screen even after the boot process completes and I log in with the admin user account. If I completely uninstall BOINC, this error message goes away and the boot process proceeds normally. Looking for a stable BOINC release for Yosemite. BOINC 7.2.42 installed hangs a Yosemite boot. Any other options? Cheryl |
Copyright © 2025 University of California.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License,
Version 1.2 or any later version published by the Free Software Foundation.