0

I´ve cloned a Ubunutu 12.04 virtual Server. The original server uses Nagios for apache monitoring and amanda client for backups. On the clone I want disable both services. Whats the best way for this? (Someone else did the install, never used one of them)

dpkg -l | grep nagios
dpkg -l | grep amanda

Gives me

ii  he-nagios                       0.5-4                             Host Europe Nagios Package
ii  nagios-plugins                  1.4.15-5ubuntu3.2                 Plugins for nagios compatible monitoring systems (metapackage)
ii  nagios-plugins-basic            1.4.15-5ubuntu3.2                 Plugins for nagios compatible monitoring systems
ii  nagios-plugins-standard         1.4.15-5ubuntu3.2                 Plugins for nagios compatible monitoring systems
ii  he-amanda-client                1.0-1                             Advanced Maryland Automatic Network Disk Archiver (Client)
ii  he-amanda-common                1.0-1                             Advanced Maryland Automatic Network Disk Archiver (Libs)
ii  he-amanda-restore               1.0-1                             Restoretool for he-amanda-client

Will f.e.

apt-get --purge remove he-nagios

do the job?

Kind regards, t book

Keith
  • 4,637
  • 15
  • 25
Anatol
  • 349
  • 2
  • 6
  • 19

1 Answers1

0

Yes, you can remove the packages:

apt-get remove <package-name>

Note that if you add the option --purge you will also remove the config files.

Céline Aussourd
  • 600
  • 1
  • 5
  • 14