OpenVAS Source Installation Steps
mkdir openvas-src
cd openvas-src/
wget http://wald.intevation.org/frs/download.php/1638/openvas-libraries-7.0.1.tar.gz
wget http://wald.intevation.org/frs/download.php/1640/openvas-scanner-4.0.1.tar.gz
wget http://wald.intevation.org/frs/download.php/1637/openvas-manager-5.0.0.tar.gz
wget http://wald.intevation.org/frs/download.php/1639/greenbone-security-assistant-5.0.0.tar.gz
wget http://wald.intevation.org/frs/download.php/1633/openvas-cli-1.3.0.tar.gz
tar zxvf openvas-{component}.tar.gz
install the Ubuntu 14.04 packages
apt-get install build-essential bison flex cmake pkg-config libglib libglib2.0-dev libgnutls libgnutls-dev libpcap libpcap0.8-dev libgpgme11 libgpgme11-dev doxygen libuuid1 uuid-dev sqlfairy xmltoman sqlite3 libxml2-dev libxslt1.1 libxslt1-dev xsltproc libmicrohttpd-dev
Enter each of the components directories and perform the following steps,
cd {component}
mkdir source
cd source
cmake ..
make
make install
openvas-mkcert
ldconfig
openvassd
Check that openvassd has started correctly and is running.
ps -ef | grep openvas
Lets sync NVT plugins and the vulnerability data.
openvas-nvt-sync
openvas-scapdata-sync
openvas-certdata-sync
Create a user account and client certificate.
openvasmd --create-user=admin --role=Admin
openvas-mkcert-client -n -i
Then check you have openvassd / openvasmd / gsad running.
openvasmd --rebuild --progress
openvasmd
gsad
ps -ef | grep openvas
And confirm each component is listening on its port.
netstat -anp | grep LISTEN
we have OpenVAS up and running its time to look at the web console,
https://192.168.1.127/omp
Ref :- https://hackertarget.com/install-openvas-7-ubuntu/