Time for action — creating your Mahara file structure
You're now going to extract the content of the code, which you downloaded in the preceding Time for action downloading Mahara section, to the right place on your web server:
1. Copy the
mahara-1.5.1.tar.gz
(or whichever version you downloaded) package into your home directory on your web server. If you are copying the file to the server from your own computer, you can do this by using thescp
command (on Linux or Mac):scp Mahara-1.5.1.tar.gz servername:pathtohomedirectory
2. Unpack the contents of the Mahara package on the Linux Server. On the terminal, you can do this using the
tar
command:tar xvzf Mahara-1.5.0.tar.gz
3. You will now see a new folder called
Mahara-1.5.1
, you will need to rename this topublic
. To do this on the terminal, you can use themv
command:mv Mahara-1.5.1 public
4. That's it! The Mahara code is now in place.
What Just Happened?
You just learned where to copy the Mahara package on your server and how to extract its contents.