Link to home
Start Free TrialLog in
Avatar of Irwin W.
Irwin W.Flag for Canada

asked on

Help installing missing libraries

Hi I am helping a friend install OpenVAS.  I am not a linux guru and cannot get these libraries installed via apt-get.

Can someone let me know that modules need to be installed?  

We get these errors:

The following packages have unmet dependencies:                                                                                
 greenbone-security-assistant : Depends: libglib2.0-0 (>= 2.31.8) but 2.24.2-1 is to be installed                              
                                Depends: libgnutls26 (>= 2.12.17-0) but 2.8.6-1+squeeze2 is to be installed                    
                                Depends: libgpg-error0 (>= 1.10) but 1.6-1 is to be installed                                  
                                Depends: libmicrohttpd10 but it is not going to be installed                                  
                                Depends: libopenvas6 (>= 6.0.0) but it is not going to be installed                            
 openvas-administrator : Depends: libgnutls26 (>= 2.12.17-0) but 2.8.6-1+squeeze2 is to be installed                          
                         Depends: libgpg-error0 (>= 1.10) but 1.6-1 is to be installed                                        
                         Depends: libopenvas6 (>= 6.0.0) but it is not going to be installed                                  
 openvas-cli : Depends: libgnutls26 (>= 2.12.17-0) but 2.8.6-1+squeeze2 is to be installed                                    
               Depends: libgpg-error0 (>= 1.10) but 1.6-1 is to be installed                                                  
               Depends: libopenvas6 (>= 6.0.0) but it is not going to be installed                                            
 openvas-manager : Depends: libgnutls26 (>= 2.12.17-0) but 2.8.6-1+squeeze2 is to be installed                                
                   Depends: libgpg-error0 (>= 1.10) but 1.6-1 is to be installed                                              
                   Depends: libopenvas6 (>= 6.0.0) but it is not going to be installed                                        
 openvas-scanner : Depends: libgnutls26 (>= 2.12.17-0) but 2.8.6-1+squeeze2 is to be installed                                
                   Depends: libgpg-error0 (>= 1.10) but 1.6-1 is to be installed                                              
                   Depends: libopenvas6 (>= 6.0.0) but it is not going to be installed
Avatar of jlevie
jlevie

What you are trying to install is asking for later versions of libraries than the system has. In the general case, those versions won't be available for that version of the OS. You could possibly build later versions from source but I suspect that will reveal other problems. The most sane solution is upgrading to a later OS version that has the libraries or finding a copy of OpenVAS meant for the version of the OS you are using.
you need a fix of broken dependencies first,

"sudo apt-get -f install"

Best,
Avatar of Irwin W.

ASKER

OK some more information I totally forgot to post.

We are running Linux version 2.6.32-5-amd64 (Debian 2.6.32-48squeeze1) (dannf@debian.org) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Mon Feb
 25 00:26:11 UTC 2013  

I am trying to run this command for OpenVAS:
apt-get -y install greenbone-security-assistant openvas-cli openvas-manager openvas-scanner openvas-administrator sqlite3 xsltproc rsync

I tried the command above but the same output as before.
Have you install the repository from OpenVAS?
@mazdajai...yes step two of the above link you provided is what started this thread.
ASKER CERTIFIED SOLUTION
Avatar of Mazdajai
Mazdajai
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks I'll look into this when I have more time.