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-04-15 22:38:22 +00:00
|
|
|
After downloading the file (say, into file X), type
|
|
|
|
<pre>
|
|
|
|
sh X
|
|
|
|
</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-04-15 22:38:22 +00:00
|
|
|
</dl>
|
|
|
|
|
2005-05-31 21:59:29 +00:00
|
|
|
You may want to run the executable each time your machine boots
|
2005-03-05 23:12:31 +00:00
|
|
|
or you log on.
|
2005-05-31 21:59:29 +00:00
|
|
|
Information on this is <a href=bare_core.php>here</a>.
|
2005-03-05 23:12:31 +00:00
|
|
|
|
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|