Skip to content

Instantly share code, notes, and snippets.

@daxxog
Last active December 18, 2022 01:27
Show Gist options
  • Save daxxog/5877852 to your computer and use it in GitHub Desktop.
Save daxxog/5877852 to your computer and use it in GitHub Desktop.
LAMPP stack 32bit installer (lampp)
#!/bin/sh
#curl -L https://gist.github.com/daxxog/5877852/raw/lampp-install-32.sh | sh
#make a dev directory and switch to it
cd ~
mkdir dev
cd dev
#grab and install LAMPP
wget -N http://192.168.1.135/xampp-linux-1.8.2-0-installer.run
sudo chmod 755 xampp-linux-*-installer.run
sudo ./xampp-linux-*-installer.run
#grab and install the upstart service config
wget https://gist.github.com/daxxog/5878973/raw/lampp.conf
sudo cp ./lampp.conf /etc/init/lampp.conf
rm lampp.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment