📎 AI Summary:
The thread discusses how to install the non-commercial version of Nessus on an Ubuntu Linux system. The original poster asks for guidance, and several contributors suggest downloading it from the official Nessus website and installing it using the dpkg command, with additional advice on resolving dependency issues via sudo and apt commands. Overall, the responses provide straightforward instructions, indicating a helpful and informative discussion on installing Nessus.

Gabriel Turqos

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

Solution
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

livix07

Honorable Member
Member details
Joined
Feb 19, 2018
Messages
585
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
 

Solution