2005-03-05 23:12:31 +00:00
|
|
|
<?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>
|
2005-12-10 02:21:06 +00:00
|
|
|
After downloading the file (say, into
|
|
|
|
<code>boinc_5.2.13_i686-pc-linux-gnu.sh</code>), type
|
2005-04-15 22:38:22 +00:00
|
|
|
<pre>
|
2005-12-10 02:21:06 +00:00
|
|
|
sh boinc_5.2.13_i686-pc-linux-gnu.sh
|
2005-04-15 22:38:22 +00:00
|
|
|
</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
|
2005-06-06 19:18:01 +00:00
|
|
|
<dd> A script that cd's into the BOINC directory and runs the core client.
|
2005-12-13 08:04:57 +00:00
|
|
|
<dt>
|
|
|
|
run_manager
|
|
|
|
<dd> A script that cd's into the BOINC directory and runs the manager.
|
2005-04-15 22:38:22 +00:00
|
|
|
</dl>
|
|
|
|
|
2005-12-13 08:04:57 +00:00
|
|
|
<p>
|
|
|
|
The core client has a number of other
|
|
|
|
<a href=client_unix.php>command-line options</a>.
|
|
|
|
<p>
|
|
|
|
You may want to
|
|
|
|
<a href=auto_start.php>automatically start the core client</a>
|
|
|
|
at boot time.
|
|
|
|
<p>
|
|
|
|
To control a running BOINC client, use the
|
|
|
|
<a href=boinc_cmd.php>BOINC command tool</a>.
|
|
|
|
|
2005-03-05 23:12:31 +00:00
|
|
|
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|