Moodle Learning Management System Setup: Difference between revisions
(Created page with " ==== Install LAMP stack ==== <code>sudo apt-get install apache2 mysql-server php5</code>") |
No edit summary |
||
Line 1: | Line 1: | ||
==== Install LAMP stack ==== | ==== Install LAMP stack ==== | ||
<code>sudo apt-get install apache2 mysql-server php5</code> | <code>sudo apt-get install apache2 mysql-server php5</code> | ||
==== Download Moodle ==== | |||
Get the latest version of Moodle from www.moodle.com. For example: | |||
<code>cd ~</code> | |||
<code>mkdir downloads</code> | |||
<code>cd downloads</code> | |||
<code>wget -O moodle-latest-23.tgz 'http://downloads.sourceforge.net/project/moodle/Moodle/stable23/moodle-latest-23.tgz?r=http%3A%2F%2Fdownload.moodle.org%2Fdownload.php%2Fstable23%2Fmoodle-latest-23.tgz&ts=1348454379&use_mirror=voxel'</code> | |||
Also download the Spanish/Mexico language pack: | |||
<code>wget 'http://download.moodle.org/download.php/direct/langpack/2.3/es_mx.zip'</code> |
Revision as of 20:19, 23 September 2012
Install LAMP stack
sudo apt-get install apache2 mysql-server php5
Download Moodle
Get the latest version of Moodle from www.moodle.com. For example:
cd ~
mkdir downloads
cd downloads
wget -O moodle-latest-23.tgz 'http://downloads.sourceforge.net/project/moodle/Moodle/stable23/moodle-latest-23.tgz?r=http%3A%2F%2Fdownload.moodle.org%2Fdownload.php%2Fstable23%2Fmoodle-latest-23.tgz&ts=1348454379&use_mirror=voxel'
Also download the Spanish/Mexico language pack:
wget 'http://download.moodle.org/download.php/direct/langpack/2.3/es_mx.zip'