Install Nessus Vulnerability Scanner To Linux

Gabriel Turqos

Active Member
Joined
Mar 11, 2019
Messages
17
I want to install nessus non commercial version into my Linux ubuntu box. How can I get and install nessus? Thanks
 


In order to install packages on Ubuntu you must use sudo (become root):
Code:
sudo dpkg -i package_name
And if you get an error related to unmet dependencies run the following command to fix it:
Code:
apt -f install
 


Back
Top