Install Nessus Vulnerability Scanner To Linux

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