Changes between Version 1 and Version 2 of BoltTutorial


Ignore:
Timestamp:
Feb 1, 2008, 9:35:24 AM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoltTutorial

    v1 v2  
    11= Bolt Tutorial =
    22
    3 to be written
     3== Creating a course ==
     4
     5Install the BOINC software on a Linux system
     6(or run the [BoincVm BOINC server virtual machine] in a VMWare
     7player on any computer).
     8
     9Use [MakeProject make_project] to create a BOINC project:
     10{{{
     11> cd boinc/tools
     12> make_project test
     13}}}
     14Edit httpd.conf as directed (you'll need root access to do this).
     15Let's say your server's domain name is "a.b.c"
     16and you named your project "test".
     17
     18Visit http://a.b.c/test_ops/bolt_ops.php,
     19and create a course named "Test course"
     20with course document "course_doc.php" (we'll create this later).
     21
     22== Lessons and sequences ==
     23
     24Let's start with a simple course consisting of two lessons.
     25Each lesson consists of a PHP or HTML file.
     26Create the following files in ~/projects/test/html/user:
     27
     28lesson1.php
     29{{{
     30
     31}}}
     32
     33lesson2.html
     34{{{
     35}}}
     36
     37course_doc.php
     38{{{
     39}}}
     40
     41[[img(seq.png)]]
     42