> For the complete documentation index, see [llms.txt](https://www.redteam.cafe/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.redteam.cafe/dealing-with-the-errors/setting-up-openvas-in-kali-2020.3.md).

# 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
```
