boinc/doc/sea.php

34 lines
736 B
PHP
Raw Normal View History

<?php
require_once("docutil.php");
page_head("Installing a self-extracting archive");
echo "
This type of installation
requires that you be familiar with the
UNIX command-line interface.
<p>
After downloading the file (say, into
<code>boinc_5.2.13_i686-pc-linux-gnu.sh</code>), type
<pre>
sh boinc_5.2.13_i686-pc-linux-gnu.sh
</pre>
This will create a directory BOINC/
with the following files:
<dl>
<dt> boinc
<dd> The BOINC core client
<dt> boincmgr
<dd> The BOINC manager
<dt>
run_client
<dd> A script that cd's into the BOINC directory and runs the core client.
</dl>
You may want to run the executable each time your machine boots
or you log on.
Information on this is <a href=bare_core.php>here</a>.
";
page_tail();
?>