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