1

When I run this command sudo dpkg -i Nessus-5.0.1-ubuntu1110_amd64.deb, I got the following error:

dpkg: error processing Nessus-5.0.1-ubuntu1110_amd64.deb (--install):
 cannot access archive: No such file or directory
Errors were encountered while processing:

Would anyone have an idea how to fix this? Thank you!

Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407

1 Answers1

1

First, try to check the checksums and make sure you got a complete correct download.

Second, try to run the command with --force-architecture argument:

sudo dpkg --force-architecture -i Nessus-5.0.1-ubuntu1110_amd64.deb

This should work.

Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407