hier hätte ich auch noch was kleines

habe das auch gerade selbst gemacht und es klappt alles.
****
Quellen/ Paketlisten von APT aktualisieren
System auf aktuellen Stand bringen
Installation verschiedener kleiner Programme für Debian Linux
Code:
apt-get -y install mc zip unzip bzip2 screen vim rsync traceroute ftp lynx
Aktuelle Zeit unter Debian Linux ( u.a. wichtig bzgl. Einträgen in Logs )
Code:
apt-get -y install ntp ntpdate
Installation Debian Apache Webserver
Code:
apt-get -y install apache2
Installation Debian Apache 2.2 Php5 Unterstützung
Code:
apt-get -y install libapache2-mod-php5 php5-cli php5-common php5-cgi
Installation PhpMyAdmin
Code:
apt-get install phpmyadmin
Installation Debian Mysql Server 5
Code:
apt-get install mysql-common mysql-server mysql-server-5.0
Passwort von Root für Debian MySQL ändern / setzen
Code:
mysqladmin -u root password yourrootsqlpassword
Anpassung Apache.conf
Code:
nano /etc/apache2/apache2.conf
nano /etc/apache2/sites-enabled/000-default
ändern auf RedirectMatch #^/$ /
Debian Apache 2.2 Webserver Neustart
Code:
/etc/init.d/apache2 restart
Debian Mysql Server 5 Neustarten
Code:
/etc/init.d/mysql restart