Here you can find the images and installation instructions for preparing your lab environment (Kali Linux as an attacker machine and Metasploitable Linux as a victim machine). If you have any questions, email Vitaly at vford42@students.tntech.edu or Jacob at jmwheeler42@students.tntech.edu
How to set up a new virtual machine:
http://blogs.cae.tntech.edu/cybereagles/2013/10/17/linux-informational-session/
Kali Linux:
http://www.kali.org/downloads/
Metasploitable Linux:
http://sourceforge.net/projects/metasploitable/
Script to fix a metasploit problem when you launch Armitage in Kali:
#!/bin/bash
# script to fix metasploit problem
echo ‘attempting to start’
service postgresql start
service metasploit start
service metasploit stop
echo ‘finished’