2003-08-26 18:33:21 +00:00
|
|
|
<?
|
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Preferences");
|
|
|
|
echo "
|
2002-04-30 22:22:54 +00:00
|
|
|
<p>
|
2002-09-05 11:46:10 +00:00
|
|
|
You can specify <b>preferences</b> determining and limiting
|
|
|
|
how BOINC uses your computers.
|
2002-09-26 05:57:10 +00:00
|
|
|
Preferences are divided into two groups:
|
2003-03-06 17:42:49 +00:00
|
|
|
<h3>General preferences</h3>
|
|
|
|
<b>General preferences</b> apply to all BOINC projects in which you participate.
|
2002-09-27 06:12:50 +00:00
|
|
|
They include:
|
2004-02-19 16:43:28 +00:00
|
|
|
";
|
2004-03-21 00:10:15 +00:00
|
|
|
|
2004-02-19 16:43:28 +00:00
|
|
|
list_start();
|
2004-03-21 00:10:15 +00:00
|
|
|
|
2004-02-19 16:43:28 +00:00
|
|
|
list_item("When to work",
|
|
|
|
"You can specify whether work (computation and network transfer) should be done
|
|
|
|
1) while the host is being used (i.e. during keyboard and mouse input);
|
|
|
|
2) while the computer is being powered
|
2002-08-30 00:10:40 +00:00
|
|
|
by batteries (for laptop users).
|
2004-02-19 16:43:28 +00:00
|
|
|
");
|
|
|
|
list_item("Confirm before connect",
|
|
|
|
"Whether to wait for confirmation before making network connections.");
|
|
|
|
list_item("Work buffering min and max",
|
|
|
|
"
|
|
|
|
Your computer maintains an estimate of the amount of work remaining
|
|
|
|
(i.e. the time until one of its processors will be idle).
|
|
|
|
You can choose the <b>minimum work</b> and the
|
|
|
|
<b>maximum work</b> to keep.
|
|
|
|
Normally the work remaining is between these two limits.
|
|
|
|
When the work remaining reaches minimum level,
|
|
|
|
your computer contacts one or more scheduling servers,
|
|
|
|
and attempts to get enough work to exceed the maximum level.
|
|
|
|
<p>
|
|
|
|
This scheme allows computers that are sporadically connected
|
|
|
|
(because they're portable or have modem-based connections)
|
|
|
|
to avoid becoming idle due to lack of work.
|
2002-09-05 11:46:10 +00:00
|
|
|
If the host is frequently disconnected from the Internet, the min
|
2002-08-21 23:49:33 +00:00
|
|
|
should be at least as long as the typical period of disconnection.
|
2002-09-05 11:46:10 +00:00
|
|
|
The larger the difference between min and max, the less often
|
|
|
|
the BOINC client will connect to the Internet.
|
2004-02-19 16:43:28 +00:00
|
|
|
");
|
2004-03-21 00:10:15 +00:00
|
|
|
|
2004-02-19 16:43:28 +00:00
|
|
|
list_item("Disk usage limits",
|
|
|
|
"You can limit the disk space used by BOINC in any of three ways:
|
|
|
|
1) Maximum disk space used by BOINC;
|
2004-03-21 00:10:15 +00:00
|
|
|
2) Maximum percentage of total space that can be used by BOINC.
|
2004-02-19 16:43:28 +00:00
|
|
|
3) Minimum disk space to keep free.
|
|
|
|
");
|
2004-03-21 00:10:15 +00:00
|
|
|
|
2004-02-19 16:43:28 +00:00
|
|
|
list_end();
|
2004-03-21 00:10:15 +00:00
|
|
|
|
2004-02-19 16:43:28 +00:00
|
|
|
echo "
|
2003-12-12 20:53:03 +00:00
|
|
|
You can view and edit your general preferences through a web interface,
|
2002-09-26 05:57:10 +00:00
|
|
|
at the site of any project in which you participate.
|
|
|
|
Changes are automatically propagated to all your hosts;
|
|
|
|
this is done the next time the host contacts the project's server,
|
|
|
|
so there may be some delay.
|
|
|
|
|
2003-03-06 17:42:49 +00:00
|
|
|
<h3>Project preferences</h3>
|
|
|
|
There is a separate set of <b>project preferences</b>
|
2002-09-27 06:12:50 +00:00
|
|
|
for each project in which you participate.
|
|
|
|
They include:
|
2002-05-29 23:25:21 +00:00
|
|
|
<ul>
|
2002-08-21 23:49:33 +00:00
|
|
|
<li> Resource share: if projects contend for resources,
|
|
|
|
the amount allocated to a project is proportional to this number.
|
2002-08-19 18:43:10 +00:00
|
|
|
<li> Whether to show email address on web site
|
|
|
|
<li> Whether project should send emails to user
|
2002-09-26 05:57:10 +00:00
|
|
|
<li> Project-specific preferences (defined by the project;
|
|
|
|
e.g., to specify graphics color schemes).
|
2002-05-29 23:25:21 +00:00
|
|
|
</ul>
|
2002-04-30 22:22:54 +00:00
|
|
|
<p>
|
2003-03-06 17:42:49 +00:00
|
|
|
You can view and edit project preferences through
|
2002-09-27 06:12:50 +00:00
|
|
|
a web interface at the project's web site.
|
2003-03-06 17:42:49 +00:00
|
|
|
|
|
|
|
<h3>Location-specific preferences</h3>
|
|
|
|
If you have computers both at home and at work
|
2004-03-21 00:10:15 +00:00
|
|
|
you may want to use different preferences for them.
|
2003-08-26 18:33:21 +00:00
|
|
|
In addition to your 'primary preferences'
|
2003-03-06 17:42:49 +00:00
|
|
|
(which are used by default)
|
|
|
|
BOINC allows you to create separate preferences for
|
|
|
|
home, work, and school.
|
|
|
|
<p>
|
2003-08-26 18:33:21 +00:00
|
|
|
Your account with a project has a 'default location'
|
2003-03-06 17:42:49 +00:00
|
|
|
(home, work, or school).
|
|
|
|
New computers registered to your account will be
|
|
|
|
given the default location.
|
|
|
|
You can change the location of an existing computer
|
|
|
|
through the project's web site.
|
2003-08-26 18:33:21 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|