Distro + Web Server

Any really. I am running RHEL 6.3 with Apache, but thats just me.

CentOS with Apache will do a good job, just remember about SE Linux and iptables :)
 
After giving some Os's a try I decided to go with Ubuntu 12.10 Server Edition 64 Bit.

I am running PHP - MySQL - PhpMyAdmin - Webmin 1.610 and this thing is very fast!

I can do SSH via Webmin remotely via Java.

There is no gui with this edition just command line and it's fantastic.

10133429.png


"Backup (with root)"
Code:
# sudo su
# cd /
# tar cvpzf backup.tgz --exclude=/proc --exclude=/lost+found --exclude=/backup.tgz --exclude=/mnt --exclude=/sys /
or
# tar cvpjf backup.tar.bz2 --exclude=/proc --exclude=/lost+found --exclude=/backup.tar.bz2 --exclude=/mnt --exclude=/sys /

"Restore (with root)"
Code:
# sudo su
# cd /
# tar xvpfz backup.tgz -C /
or
# tar xvpfj backup.tar.bz2 -C /
 
Last edited:
Back
Top Bottom