~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to doc/sea.php

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
require_once("docutil.php");
3
 
page_head("Installing a self-extracting archive (Unix/Linux)");
4
 
echo "
5
 
BOINC for Unix/Linux is available as a self-extracting archive.
6
 
The download files have names like
7
 
<pre>
8
 
boinc_5.2.13_i686-pc-linux-gnu.sh
9
 
</pre>
10
 
 
11
 
This type of installation
12
 
requires that you be familiar with the
13
 
UNIX command-line interface.
14
 
 
15
 
<p>
16
 
After downloading the file (say, into
17
 
        <code>boinc_5.2.13_i686-pc-linux-gnu.sh</code>), type
18
 
<pre>
19
 
sh boinc_5.2.13_i686-pc-linux-gnu.sh
20
 
</pre>
21
 
This will create a directory BOINC/
22
 
with the following files:
23
 
<dl>
24
 
<dt> boinc
25
 
<dd> The BOINC core client
26
 
<dt> boincmgr
27
 
<dd> The BOINC manager
28
 
<dt>
29
 
run_client
30
 
<dd> A script that cd's into the BOINC directory and runs the core client.
31
 
<dt>
32
 
run_manager
33
 
<dd> A script that cd's into the BOINC directory and runs the manager.
34
 
</dl>
35
 
 
36
 
<p>
37
 
The core client has a number of other
38
 
<a href=client_unix.php>command-line options</a>.
39
 
<p>
40
 
You may want to
41
 
<a href=auto_start.php>automatically start the core client</a>
42
 
at boot time.
43
 
<p>
44
 
To control a running BOINC client, use the
45
 
<a href=boinc_cmd.php>BOINC command tool</a>.
46
 
 
47
 
 
48
 
";
49
 
page_tail();
50
 
?>