mirror of https://github.com/BOINC/boinc.git
24 lines
620 B
PHP
24 lines
620 B
PHP
|
<?
|
||
|
require_once("docutil.php");
|
||
|
page_head("System requirements");
|
||
|
echo "
|
||
|
The BOINC core client is available for the following platforms:
|
||
|
<ul>
|
||
|
<li> Windows (95 and up)
|
||
|
<li> Linux (on X86 and perhaps others)
|
||
|
<li> Solaris/SPARC
|
||
|
<li> Mac OS X
|
||
|
</ul>
|
||
|
<p>
|
||
|
There are no specific hardware requirements
|
||
|
(CPU speed, RAM, disk space, etc.).
|
||
|
However, these factors may limit the amount or type
|
||
|
of work that is sent to your computer.
|
||
|
Each 'work unit' has minimum RAM and disk requirements,
|
||
|
and a deadline for completion of its computation.
|
||
|
A BOINC project won't send a work unit to a computer
|
||
|
that can't handle it.
|
||
|
";
|
||
|
page_tail();
|
||
|
?>
|