Changes between Initial Version and Version 1 of SolarisClient


Ignore:
Timestamp:
Apr 25, 2007, 3:16:21 PM (17 years ago)
Author:
Nicolas
Comment:

Converted by an automatic script

Legend:

Unmodified
Added
Removed
Modified
  • SolarisClient

    v1 v1  
     1= Running BOINC on Solaris =
     2
     3      The BOINC client software should work on:
     4 * Solaris versions 7, 8, 9, or 10
     5 * Any SPARC processor
     6
     7
     8----
     9 If BOINC produces messages of the form
     10{{{
     11ld.so.1: boinc: fatal: libgcc_s.so.1: open failed: No such file or directory
     12}}}
     13 then you may need to add /usr/local/lib to your LD_LIBRARY_PATH before running BOINC.
     14----
     15 If BOINC produces messages of the form
     16{{{
     17ld.so.1: boinc: fatal: libstdc++.so.3: open failed: No such file or
     18directory
     19}}}
     20 then you probably have a newer version of libstdc++.so, and you may need to symbolically link the newer version to libstdc++.so.3
     21----
     22 If BOINC produces messages of the form
     23{{{
     24Can't create shared mem: -144
     25}}}
     26 then you need to change your shared-memory configuration. For example, make the following change to /etc/system and reboot:
     27{{{
     28set strctlsz=4096
     29set shmsys:shminfo_shmmax=130000000
     30set shmsys:shminfo_shmseg=600
     31set shmsys:shminfo_shmmni=512
     32set shmsys:shminfo_shmmin=1
     33set semsys:seminfo_semmns=4096
     34set semsys:seminfo_semmni=4096
     35set semsys:seminfo_semmnu=4096
     36set semsys:seminfo_semume=64
     37set semsys:seminfo_semmap=512
     38set semsys:seminfo_semmsl=128
     39}}}
     40 These settings should work on machines with up to 20 CPUs.