wlanboy
Content Contributer
Whenever I have to install a new vps I get rid of a lot of "default services" which are installed with enabled autorun.
If anyone want to add anything feel free to add a comment.
If anyone want to add anything feel free to add a comment.
- Get rid of apache, sendmail, bind and nmbd
sudo su
service apache2 stop
service sendmail stop
service bind9 stop
service nmbd stop
update-rc.d apache2 disable
update-rc.d sendmail disable
update-rc.d bind9 disable
update-rc.d nmbd disable
apt-get remove sendmail bind9 apache2 apache2-doc apache2-mpm-prefork apache2.2-bin \
apache2.2-common samba
apt-get autoremove && apt-get clean && apt-get autoclean
PS: Yes I use apache2-utils to create/manage my password files.
- Disable avahi daemon
Code:sudo nano /etc/default/avahi-daemon change line "AVAHI_DAEMON_START = 1" to "AVAHI_DAEMON_START = 0"