# Setting Up OPENVAS in KALI 2020.3

### OLD way to install and configure OpenVAS

```
sudo apt install openvas -y
sudo openvas-setup
sudo openvas-feed-update
sudo openvas-start
```

### Error

```
command not found
```

### Update- New way to install OpenVAS

OpenVAS is changing the name to GVM (Greenbone Vulnerability Management).The new command **gvm** has replaced all **openvas** commands.

In Kali Rolling updated repository, we now should use gvm instead of openvas command

```
sudo apt install gvm -y
sudo gvm-setup
sudo gvm-feed-update
sudo gvm-start
```
