Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # login and type "su"
- apt-get update
- apt-get install htop screen vim
- # java
- wget http://cdn.azul.com/zulu/bin/zulu8.15.0.1-jdk8.0.92-linux_amd64.deb -O zulu.deb
- dpkg -i zulu.deb
- # LAMP
- apt-get install apache2
- apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql
- mysql_install_db
- /usr/bin/mysql_secure_installation
- apt-get install php5 libapache2-mod-php5 php5-mcrypt
- # index.php
- nano /etc/apache2/mods-enabled/dir.conf
- # add index.php to beginning:
- <IfModule mod_dir.c>
- DirectoryIndex index.php index.html index.cgi index.pl index.php index.xhtml index.htm
- </IfModule>
- # install modules you want, I don't know what we might need
- apt-cache search php5-
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement