Installation LAMP
Installation von Linux, Apache2, MySQL und PHP 7/phpMyAdmin
apt-get update => Aktualisiert die Paketlisten auf dem Rechner
apt-get install apache2 -y =>Installiert den Apache2-Webserver und weitere benötigte Pakete.
apt-get install mysql-server mysql-client -y => Installation von MySQL-Server und -Client. Während der Installation musst du ein Passwort für den MySQL-Benutzer "root" vergeben
Installation von PHP 7 sowie einige wichtige PHP 7 Module.
apt-get install php7.0 php7.0-cli php7.0-curl php7.0-gd php7.0-geoip php7.0-intl php7.0-json php7.0-mbstring php7.0-mcrypt php7.0-mysql php7.0-opcache php7.0-readline php7.0-xml php7.0-xsl php7.0-zip php7.0-bz2 libapache2-mod-php7.0 -y
systemctl restart apache2
apt-get install phpmyadmin Danach folgt ein Konfigurationsfenster
Von der Seite: https://www.bennetrichter.de/anleitungen/apache2-php7-mysql-phpmyadmin-installieren/