I am trying to install Comodo Antivirus for Linux on my Ubuntu 20.10 Linux machine. I downloaded the cav-linux_x64.deb and double clicked on it.
The installer started installing, but exited with a message “Missing Dependency”.
Does anyone have an idea what those missing dependencies may be and how to resolve this issue?
Thanks!
http://cav-linux_x64.deb
Update 1: I tried running it from command line too. This is all I get:
$ sudo dpkg -i /home/myusername/Downloads/cav-linux_x64.deb
Selecting previously unselected package cav-linux.
(Reading database ... 269598 files and directories currently installed.)
Preparing to unpack .../Downloads/cav-linux_x64.deb ...
Unpacking cav-linux (1.1.268025-1) ...
dpkg: dependency problems prevent configuration of cav-linux:
cav-linux depends on libssl0.9.8 (>= 0.9.8m-1); however:
Package libssl0.9.8 is not installed.
dpkg: error processing package cav-linux (--install):
dependency problems - leaving unconfigured
Errors were encountered while processing:
cav-linux
pedram[at]pedram-Inspiron-3646:~/Downloads$
So it appears to be missing libssl0.9.8. I tried installing that package:
~/Downloads$ sudo apt install -y libssl0.9.8
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libssl0.9.8 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libssl0.9.8' has no installation candidate
Update 2: I determined the correct version of libssl for Ubuntu 20.10 is libssl1.1, but that’s already installed on my system:
sudo apt-get install libssl1.1
Reading package lists... Done
Building dependency tree
Reading state information... Done
libssl1.1 is already the newest version (1.1.1f-1ubuntu4).
libssl1.1 set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 10 not upgraded.
So I am basically out of ideas now. Any help from anyone?