Local Development with LAMP - Manjaro
  • Introduction
  • Local Environment
  • Configure Drush
  • Configuring for Drupal
Powered by GitBook
On this page
  • Install tools of the trade
  • Install LAMP

Was this helpful?

Local Environment

Install tools of the trade

Update the package manager - sudo pacman -Syu

Install sublime.

Configure the subl command.

sudo ln -s /opt/sublime_text_3/sublime_text /bin/subl

Install node

sudo pacman -S nodejs

Create a bash profile

touch ~/.bashrc

Customize your bashrc

subl ~/.bashrc

source ~/.bashrc

Install git

sudo pacman -S git

Install LAMP

Install Apache - sudo pacman -S apache

Once installed tweak your Apache configuration - subl /etc/httpd/conf/httpd.conf

Comment out the unique_id_module #LoadModule unique_id_module modules/mod_unique_id.so

Reastart apache sudo systemctl restart httpd

Configure your hosts file subl /etc/hosts

Add your hostname 127.0.0.1 localhost.localdomain localhost droplet1

Install MySQL

sudo pacman -S mariadb

PreviousIntroductionNextConfigure Drush

Last updated 5 years ago

Was this helpful?