Mediawiki/Installing/Ubuntu
From r00tedvw.com wiki
(Difference between revisions)
| Line 3: | Line 3: | ||
==Installation Overview== | ==Installation Overview== | ||
All of the instructions below were done on Ubuntu 14.04 LTS | All of the instructions below were done on Ubuntu 14.04 LTS | ||
| + | |||
| + | ==Install required packages== | ||
| + | Below is a list of all the packages required by Mediawiki for installation on Ubuntu. | ||
| + | ~$ sudo apt-get update && sudo apt-get install apache2 mysql-server php5 php5-mysql libapache2-mod-php5 ImageMagick | ||
| + | Alternatively, if you think you have already installed some of the packages, you can quickly check | ||
| + | ~$ dpkg -s [package name] | grep Status | ||
| + | ie. ~$ dpkg -s imagemagick | grep Status | ||
| + | Status: install ok installed | ||
Revision as of 21:01, 11 October 2014
Installing | Multiple Instances | Ubuntu Installation
Installation Overview
All of the instructions below were done on Ubuntu 14.04 LTS
Install required packages
Below is a list of all the packages required by Mediawiki for installation on Ubuntu.
~$ sudo apt-get update && sudo apt-get install apache2 mysql-server php5 php5-mysql libapache2-mod-php5 ImageMagick
Alternatively, if you think you have already installed some of the packages, you can quickly check
~$ dpkg -s [package name] | grep Status
ie. ~$ dpkg -s imagemagick | grep Status
Status: install ok installed