operating_system_distro: ubuntu
OS: Ubuntu, Debian, JumpBox
ARCH: i386, x86_64

1. Put the monitis init script into /etc/init.d directory
# cp ./monitis /etc/init.d/

2. Make it executable
# chmod +x /etc/init.d/monitis

3. Configure it on runlevels
 - on running VM via ssh
# update-rc.d monitis defaults
 - on stopped VM, with its disk mounted on HV
# chroot <disk_mount_point> update-rc.d monitis defaults 

4. Start it if required (on running VM only)
# /etc/init.d/monitis start


UNINSTALLATION

1. Unconfigure the service on runlevels
 - on running VM via ssh
# update-rc.d monitis remove
 - on stopped VM, with its disk mounted on HV
# chroot <disk_mount_point> update-rc.d monitis remove 

2. Remove the service
# rm -f /etc/init.d/monitis
