Hallo, Da ich ganz neu in Linux bin Wollte ich mal fragen wie ich Den Apache Webserver und den Postfix Mailserver Löschen Kann. Die 3 Sachen sind bei Mir vorinstalliert worden. Da Ich aber keins Davon brauche weil ich Nur Teamspeak Server Mumble Und Ventrilo Server Hoste. Mit welchen Befehlen Kann ich diese Löschen. Und brauch ich den Postfix Mailserver Das mir das Noch zugeschickt wird ?
?#!/bin/sh
### LOG FILES PFADE ###
logfile1=/var/log/security/chkrootkit_scan_`date +%y%m%d`.log
logfile2=/var/log/security/rkhunter_scan_`date +%y%m%d`.log
logfile3=/var/log/security/clamav_scan_`date +%y%m%d`.log
### E-MAIL EMPFAENGER ###
email=deine@adresse.tld
### CHKROOTKIT ###
/usr/sbin/chkrootkit > $logfile1
cat $logfile1 | mail -s "chkrootkit !TREFFER!" $email
### RKHUNTER ###
/usr/bin/rkhunter --update >> /dev/null
/usr/bin/rkhunter -c --cronjob --quiet >> $logfile2
cat $logfile2 | mail -s "rkhunter !TREFFER!" $email
### CLAMAV ###
clamscan -r --quiet -l $logfile3 /home /root /tmp
cat $logfile3 | mail -s "ClamAV-Scan REPORT" $email