diff --git a/checkin_notes b/checkin_notes index ad4bcc83e2..86b07f44c5 100755 --- a/checkin_notes +++ b/checkin_notes @@ -6234,3 +6234,15 @@ David 13 June 2007 client/ client_state.C scheduler_op.C + +David 13 June 2007 + - Added project.xml entry for Playstation 3 / Linux + - Server status page: if the scheduler isn't running, + it's almost certainly because "stop_sched" is present, + not because Apache isn't running. + Get rid of the use of "sched_pid". + + tools/ + project.xml + html/ops/ + sample_server_status.php diff --git a/doc/linux.php b/doc/linux.php index 72a2e6cfc9..4480eb1c4d 100644 --- a/doc/linux.php +++ b/doc/linux.php @@ -9,22 +9,34 @@ The BOINC client software should work on:
boinc_client: /lib/libc.so.6: version `GLIBC_2.2' not found (required by ./boinc_client)-then you need to install a newer version of libc. -
-boinc_client: /lib/libc.so.6: version `GLIBC_2.3' not found (required by ./boinc_client) --then the BOINC client was built incorrectly; -please alert us. +then you need to install a newer version of libc.) + +
+NOTE: the 64-bit BOINC client will download 32-bit applications
+from projects that don't have 64-bit apps.
+Note that 32-bit binaries don't just work on every 64-bit Linux. If
+for example you install a fresh Ubuntu 6.10 or 7.04, 32-bit binaries
+won't work. They are not even recognized as valid executables. You
+first have to install the ia32 package and dependent packages.
+Further, for programs that link with the graphic library, you will
+manually have to copy a 32-bit libglut library to the usr/lib32
+directory.
+If after this you still get client errors,
+find your exe in the projects directory and run ldd to see what
+libraries are missing.
";
diff --git a/html/ops/sample_server_status.php b/html/ops/sample_server_status.php
index fa2f0c32da..27f07f779f 100644
--- a/html/ops/sample_server_status.php
+++ b/html/ops/sample_server_status.php
@@ -36,8 +36,6 @@
//
// Running \n";
- }
- elseif ($running == 0) {
+ } elseif ($running == 0) {
$xmlstring .= " Not Running \n";
- }
- else {
+ } else {
$xmlstring .= " Disabled \n";
- }
+ }
$xmlstring .= " \n";
$htmlstring .= "\n";
- if ($xml) { echo $xmlstring; return 0; }
- if ($xmlout) { fwrite($xmloutfile,$xmlstring); }
+ if ($xml) {
+ echo $xmlstring; return 0;
+ }
+ if ($xmlout) {
+ fwrite($xmloutfile, $xmlstring);
+ }
echo $htmlstring;
return 0;
}
@@ -123,8 +123,13 @@ function show_counts($key, $xmlkey, $value) {
global $xml,$xmlout,$xmloutfile;
$formattedvalue = number_format($value);
$xmlstring = " <$xmlkey>$value$xmlkey>\n";
- if ($xml) { echo $xmlstring; return 0; }
- if ($xmlout) { fwrite($xmloutfile,$xmlstring); }
+ if ($xml) {
+ echo $xmlstring;
+ return 0;
+ }
+ if ($xmlout) {
+ fwrite($xmloutfile,$xmlstring);
+ }
echo " ";
return 0;
}
@@ -143,10 +148,6 @@ $www_host = parse_element($config_vars,"$key $formattedvalue