1. Get the Moodle code 1.a Install Install the Moodle package from the command-line interface and follow the prompts: sudo apt-get install moodle 1.b Either by downloading the tar-archive The Moodle download site [6] runs a script which fetches archives from the mirrors of sourceforge.net [7] . The logic is that moodle-X.Y.Z.tgz means the point release X.Y.Z and moodle-latest-XY.tgz stands for the version X.Y.latest+ of branches still supported. See the examples below: # wget http://download.moodle.org/download.php/direct/stable16/moodle-1.6.9.tgz # wget http://download.moodle.org/download.php/direct/stable17/moodle-1.7.7.tgz # wget http://download.moodle.org/download.php/direct/stable18/moodle-1.8.14.tgz # wget http://download.moodle.org/download.php/direct/stable19/moodle-latest-19.tgz # wget http://download.moodle.org/download.php/direct/stable20/moodle-2.0.10.tgz # wget http://download.moodle.org/download.php/direct/stable21/moodle-2.1.10.tgz # wget http://dow...