Cant install GUI because 404 on the https://download.bitdefender.com/repos/deb/
Can anyone suggest how to install bitdefender-scanner-gui in Ubuntu?
I've already add to the /etc/apt/sources.list
deb http://download.bitdefender.com/repos/deb/ bitdefender non-free
```
sudo apt-get update
….
sudo apt-get install bitdefender-scanner-gui
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package bitdefender-scanner-gui
```
Answers
-
The error indicates the package
bitdefender-scanner-gui
isn't available in the repository. Ensure you've added the repository key usingwget -O - https://download.bitdefender.com/repos/deb/bd.key | sudo apt-key add -
before runningsudo apt-get update
. If the issue persists, the package may no longer be supported or listed. Check Bitdefender's official documentation or support for updates or alternative installation methods. Consider using the command-line scanner if the GUI isn't required.0