You are not logged in.

#1 2023-02-13 15:27:02

Hubbleexplorer
Member
Registered: 2021-05-15
Posts: 89

[Close] Openvas installation is full of errors

Hello,
So I'm trying to install openvas on my arch machine but it seems something really wrong is happening.
First i try to use the Arch wiki https://wiki.archlinux.org/title/OpenVAS but the package

gvm-libs-20

(https://aur.archlinux.org/packages/gvm-libs-20) can't compile for because of this error

"CMake Error at util/CMakeLists.txt:76 (message): The gpgme library >= 1.7.0 is required. "

(yes i have the latest version of gpgme installed).
So i try the blackarch repo that also results in another error


openvas --update-vt-info
openvas: error while loading shared libraries: libhiredis.so.1.0.0: cannot open shared object file: No such file or directory

i tried to install hiredis 1.0.0 from source because the version on the on the repos is 1.1.0-1 (https://archlinux.org/packages/communit … 4/hiredis/) that also didnt resolve the problem.

If someone can explain to me what I'm doing wrong i would appreciated because I'm losing my mind over this.
Thank you for your time.

Last edited by Hubbleexplorer (2023-06-30 11:19:54)

Offline

#2 2023-02-13 17:17:43

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 19,774

Re: [Close] Openvas installation is full of errors

Moving to AUR issues


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
Sometimes it is the people no one can imagine anything of who do the things no one can imagine. -- Alan Turing
---
How to Ask Questions the Smart Way

Offline

#3 2023-02-13 18:43:14

loqs
Member
Registered: 2014-03-06
Posts: 17,327

Re: [Close] Openvas installation is full of errors

Flag gvm-libs-20 out of date.  Your initial issue is fixed in 22.4.4.  The build will then fail as `pcap-config --libs` contains leading whitespace.  You can fix that with

diff --git a/boreas/CMakeLists.txt b/boreas/CMakeLists.txt
index e2f86b2..cb9fa4f 100644
--- a/boreas/CMakeLists.txt
+++ b/boreas/CMakeLists.txt
@@ -62,6 +62,7 @@ if (PCAP_CONFIG)
   execute_process (COMMAND pcap-config --libs
     OUTPUT_VARIABLE PCAP_LDFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
+  string(STRIP ${PCAP_LDFLAGS} PCAP_LDFLAGS)
   execute_process (COMMAND pcap-config --cflags
     OUTPUT_VARIABLE PCAP_CFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)

Not sure if that is an upstream bug in either gvm-libs or pcap.

Last edited by loqs (2023-02-15 17:57:08)

Offline

#4 2023-02-13 19:31:33

Hubbleexplorer
Member
Registered: 2021-05-15
Posts: 89

Re: [Close] Openvas installation is full of errors

loqs wrote:

Flag gvm-libs-20 out of date.  Your initial issue is fixed in 22.4.4.  The build will then fail as `pcap-config --libs` contains leading whitespace.  You can fix that with

diff --git a/boreas/CMakeLists.txt b/boreas/CMakeLists.txt
index e2f86b2..b3adbba 100644
--- a/boreas/CMakeLists.txt
+++ b/boreas/CMakeLists.txt
@@ -62,6 +62,7 @@ if (PCAP_CONFIG)
   execute_process (COMMAND pcap-config --libs
     OUTPUT_VARIABLE PCAP_LDFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
+  string(STRIP PCAP_LDFLAGS PCAP_LDFLAGS)
   execute_process (COMMAND pcap-config --cflags
     OUTPUT_VARIABLE PCAP_CFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)

Not sure if that is an upstream bug in either gvm-libs or pcap.

Ok i can build gvm-libs how can i add it to pacman ?

Offline

#5 2023-02-13 19:42:21

loqs
Member
Registered: 2014-03-06
Posts: 17,327

Re: [Close] Openvas installation is full of errors

Offline

#6 2023-02-13 20:03:09

Hubbleexplorer
Member
Registered: 2021-05-15
Posts: 89

Re: [Close] Openvas installation is full of errors

Thank you now i the gvm-libs is build.

After trying to build openvas-scanner (https://aur.archlinux.org/packages/openvas-scanner) this error occures

-- Looking for ksba >= 1.0.7...
   Called from: [1]     /home/hubble/.cache/paru/clone/openvas-scanner/src/openvas-scanner-22.4.0/nasl/CMakeLists.txt
-- Looking for ksba >= 1.0.7... /usr/lib/libksba.so
   Called from: [1]     /home/hubble/.cache/paru/clone/openvas-scanner/src/openvas-scanner-22.4.0/nasl/CMakeLists.txt
-- Found ksba ...
   Called from: [1]     /home/hubble/.cache/paru/clone/openvas-scanner/src/openvas-scanner-22.4.0/nasl/CMakeLists.txt
CMake Error at nasl/CMakeLists.txt:73 (if):
  if given arguments:

    "VERSION_LESS" "1.0.7"

  Unknown arguments specified


   Called from: [1]     /home/hubble/.cache/paru/clone/openvas-scanner/src/openvas-scanner-22.4.0/nasl/CMakeLists.txt
   Returning to         /home/hubble/.cache/paru/clone/openvas-scanner/src/openvas-scanner-22.4.0
   Called from: [1]     /home/hubble/.cache/paru/clone/openvas-scanner/src/openvas-scanner-22.4.0/CMakeLists.txt
-- Configuring incomplete, errors occurred!
See also "/home/hubble/.cache/paru/clone/openvas-scanner/src/openvas-scanner-22.4.0/CMakeFiles/CMakeOutput.log".
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'openvas-scanner-22.4.0-1': 
error: packages failed to build: openvas-scanner-22.4.0-1

I'm currently trying to find out if is because is out of date or another error
Already check the

ksba

version, and it is superior. (https://archlinux.org/packages/core/x86_64/libksba/)

Last edited by Hubbleexplorer (2023-02-13 20:03:24)

Offline

#7 2023-02-13 21:47:12

loqs
Member
Registered: 2014-03-06
Posts: 17,327

Re: [Close] Openvas installation is full of errors

Patch for openvas-scanner 22.4.0

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6b018be..718387b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -225,7 +225,6 @@ set (CMAKE_C_FLAGS              "${CMAKE_C_FLAGS} ${GPGME_C_FLAGS} \
                                 -std=c11 \
                                 -Wall \
                                 -Wextra \
-                                -Werror \
                                 -Wpedantic \
                                 -Wmissing-prototypes \
                                 -Wshadow \
diff --git a/misc/CMakeLists.txt b/misc/CMakeLists.txt
index 001b61a..bcd3e8c 100644
--- a/misc/CMakeLists.txt
+++ b/misc/CMakeLists.txt
@@ -49,6 +49,7 @@ if (PCAP_CONFIG)
   execute_process (COMMAND pcap-config --libs
     OUTPUT_VARIABLE PCAP_LDFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
+  string(STRIP ${PCAP_LDFLAGS} PCAP_LDFLAGS)
   execute_process (COMMAND pcap-config --cflags
     OUTPUT_VARIABLE PCAP_CFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
diff --git a/nasl/CMakeLists.txt b/nasl/CMakeLists.txt
index 39fbb81..4102e73 100644
--- a/nasl/CMakeLists.txt
+++ b/nasl/CMakeLists.txt
@@ -59,44 +59,12 @@ pkg_check_modules (OPENVAS_WMICLIENT libopenvas_wmiclient>=1.0.5)
 # for 'nasl' binary
 pkg_check_modules (LIBSSH REQUIRED libssh>=0.6.0)
 
-set (KSBA_MIN_VERSION "1.0.7")
-message (STATUS "Looking for ksba >= ${KSBA_MIN_VERSION}...")
-find_library (KSBA ksba)
-message (STATUS "Looking for ksba >= ${KSBA_MIN_VERSION}... ${KSBA}")
-if (NOT KSBA)
-  message (SEND_ERROR "The ksba library is required.")
-else (NOT KSBA)
-  execute_process (COMMAND ksba-config --version
-    OUTPUT_VARIABLE KSBA_VERSION
-    OUTPUT_STRIP_TRAILING_WHITESPACE)
-  message (STATUS "Found ksba ${KSBA_VERSION}...")
-  if (${KSBA_VERSION} VERSION_LESS ${KSBA_MIN_VERSION})
-    message (SEND_ERROR "The ksba library >= ${KSBA_MIN_VERSION} is required.")
-  else (${KSBA_VERSION} VERSION_LESS ${KSBA_MIN_VERSION})
-    execute_process (COMMAND ksba-config --libs
-      OUTPUT_VARIABLE KSBA_LDFLAGS
-      OUTPUT_STRIP_TRAILING_WHITESPACE)
-    execute_process (COMMAND ksba-config --cflags
-      OUTPUT_VARIABLE KSBA_CFLAGS
-      OUTPUT_STRIP_TRAILING_WHITESPACE)
-  endif (${KSBA_VERSION} VERSION_LESS ${KSBA_MIN_VERSION})
-endif (NOT KSBA)
+pkg_check_modules (KSBA REQUIRED ksba>=1.0.7)
 
 message (STATUS "Looking for pcap...")
 find_library (PCAP pcap)
 
-find_library (GPGME gpgme)
-message (STATUS "Looking for gpgme... ${GPGME}")
-if (NOT GPGME)
-  message (SEND_ERROR "The gpgme library is required.")
-endif (NOT GPGME)
-
-execute_process (COMMAND gpgme-config --libs
-  OUTPUT_VARIABLE GPGME_LDFLAGS
-  OUTPUT_STRIP_TRAILING_WHITESPACE)
-execute_process (COMMAND gpgme-config --cflags
-  OUTPUT_VARIABLE GPGME_CFLAGS
-  OUTPUT_STRIP_TRAILING_WHITESPACE)
+pkg_check_modules (GPGME REQUIRED gpgme)
 
 message (STATUS "Looking for netsnmp...")
 find_library (SNMP netsnmp)
@@ -177,9 +145,9 @@ if (NOT OPENVAS_WMICLIENT_FOUND)
   set (FILES smb_interface_stub.c wmi_interface_stub.c ${FILES})
 endif (NOT OPENVAS_WMICLIENT_FOUND)
 
-if (KSBA)
+if (KSBA_FOUND)
   add_definitions (-DHAVE_LIBKSBA)
-endif (KSBA)
+endif (KSBA_FOUND)
 
 if (OPENVAS_CONF)
   add_definitions (-DOPENVAS_CONF="${OPENVAS_CONF}")
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a0c520a..945d045 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -69,6 +69,7 @@ if (PCAP_CONFIG)
   execute_process (COMMAND pcap-config --libs
     OUTPUT_VARIABLE PCAP_LDFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
+  string(STRIP ${PCAP_LDFLAGS} PCAP_LDFLAGS)
   execute_process (COMMAND pcap-config --cflags
     OUTPUT_VARIABLE PCAP_CFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)

Additionally missing depends for json-glib libksba libbsd and it is also building in package() rather than build().

Offline

#8 2023-02-14 22:43:02

Hubbleexplorer
Member
Registered: 2021-05-15
Posts: 89

Re: [Close] Openvas installation is full of errors

loqs wrote:

Patch for openvas-scanner 22.4.0

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6b018be..718387b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -225,7 +225,6 @@ set (CMAKE_C_FLAGS              "${CMAKE_C_FLAGS} ${GPGME_C_FLAGS} \
                                 -std=c11 \
                                 -Wall \
                                 -Wextra \
-                                -Werror \
                                 -Wpedantic \
                                 -Wmissing-prototypes \
                                 -Wshadow \
diff --git a/misc/CMakeLists.txt b/misc/CMakeLists.txt
index 001b61a..bcd3e8c 100644
--- a/misc/CMakeLists.txt
+++ b/misc/CMakeLists.txt
@@ -49,6 +49,7 @@ if (PCAP_CONFIG)
   execute_process (COMMAND pcap-config --libs
     OUTPUT_VARIABLE PCAP_LDFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
+  string(STRIP ${PCAP_LDFLAGS} PCAP_LDFLAGS)
   execute_process (COMMAND pcap-config --cflags
     OUTPUT_VARIABLE PCAP_CFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
diff --git a/nasl/CMakeLists.txt b/nasl/CMakeLists.txt
index 39fbb81..4102e73 100644
--- a/nasl/CMakeLists.txt
+++ b/nasl/CMakeLists.txt
@@ -59,44 +59,12 @@ pkg_check_modules (OPENVAS_WMICLIENT libopenvas_wmiclient>=1.0.5)
 # for 'nasl' binary
 pkg_check_modules (LIBSSH REQUIRED libssh>=0.6.0)
 
-set (KSBA_MIN_VERSION "1.0.7")
-message (STATUS "Looking for ksba >= ${KSBA_MIN_VERSION}...")
-find_library (KSBA ksba)
-message (STATUS "Looking for ksba >= ${KSBA_MIN_VERSION}... ${KSBA}")
-if (NOT KSBA)
-  message (SEND_ERROR "The ksba library is required.")
-else (NOT KSBA)
-  execute_process (COMMAND ksba-config --version
-    OUTPUT_VARIABLE KSBA_VERSION
-    OUTPUT_STRIP_TRAILING_WHITESPACE)
-  message (STATUS "Found ksba ${KSBA_VERSION}...")
-  if (${KSBA_VERSION} VERSION_LESS ${KSBA_MIN_VERSION})
-    message (SEND_ERROR "The ksba library >= ${KSBA_MIN_VERSION} is required.")
-  else (${KSBA_VERSION} VERSION_LESS ${KSBA_MIN_VERSION})
-    execute_process (COMMAND ksba-config --libs
-      OUTPUT_VARIABLE KSBA_LDFLAGS
-      OUTPUT_STRIP_TRAILING_WHITESPACE)
-    execute_process (COMMAND ksba-config --cflags
-      OUTPUT_VARIABLE KSBA_CFLAGS
-      OUTPUT_STRIP_TRAILING_WHITESPACE)
-  endif (${KSBA_VERSION} VERSION_LESS ${KSBA_MIN_VERSION})
-endif (NOT KSBA)
+pkg_check_modules (KSBA REQUIRED ksba>=1.0.7)
 
 message (STATUS "Looking for pcap...")
 find_library (PCAP pcap)
 
-find_library (GPGME gpgme)
-message (STATUS "Looking for gpgme... ${GPGME}")
-if (NOT GPGME)
-  message (SEND_ERROR "The gpgme library is required.")
-endif (NOT GPGME)
-
-execute_process (COMMAND gpgme-config --libs
-  OUTPUT_VARIABLE GPGME_LDFLAGS
-  OUTPUT_STRIP_TRAILING_WHITESPACE)
-execute_process (COMMAND gpgme-config --cflags
-  OUTPUT_VARIABLE GPGME_CFLAGS
-  OUTPUT_STRIP_TRAILING_WHITESPACE)
+pkg_check_modules (GPGME REQUIRED gpgme)
 
 message (STATUS "Looking for netsnmp...")
 find_library (SNMP netsnmp)
@@ -177,9 +145,9 @@ if (NOT OPENVAS_WMICLIENT_FOUND)
   set (FILES smb_interface_stub.c wmi_interface_stub.c ${FILES})
 endif (NOT OPENVAS_WMICLIENT_FOUND)
 
-if (KSBA)
+if (KSBA_FOUND)
   add_definitions (-DHAVE_LIBKSBA)
-endif (KSBA)
+endif (KSBA_FOUND)
 
 if (OPENVAS_CONF)
   add_definitions (-DOPENVAS_CONF="${OPENVAS_CONF}")
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index a0c520a..945d045 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -69,6 +69,7 @@ if (PCAP_CONFIG)
   execute_process (COMMAND pcap-config --libs
     OUTPUT_VARIABLE PCAP_LDFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)
+  string(STRIP ${PCAP_LDFLAGS} PCAP_LDFLAGS)
   execute_process (COMMAND pcap-config --cflags
     OUTPUT_VARIABLE PCAP_CFLAGS
     OUTPUT_STRIP_TRAILING_WHITESPACE)

Additionally missing depends for json-glib libksba libbsd and it is also building in package() rather than build().

Thank you very much.
One question have you committed the changes to the repository?

Also "ospd-openvas" is missing a dependency "python-ospd", this can be bypassed by doing

 paru -d --nodeps  ospd-openvas 

but you need to install python dependencies throw pip.

The article of openvas on the Arch wiki should be revise to warn anyone of this errors, and the inicial setup might be wrong  becuase after installing openvas-scanner this warning comes up

##########################################################
#         Before starting to use openvas run the         #
#         following post installation tasks:             #
##########################################################
# echo "net.core.somaxconn = 1024" >> /etc/sysctl.conf   #
# echo "vm.overcommit_memory = 1" >> /etc/sysctl.conf    #
# sysctl -p                                              #
#                                                        #
# systemctl start greenbone-nvt-sync                     #
##########################################################

##########################################################
#         To frequently synchronize the data             #
#         you can enable the daily timers:               #
##########################################################
# systemctl enable --now greenbone-nvt-sync.timer        #
##########################################################

when in the wiki it says to use a new user called gvm
also another thing gsa wont compile with the most useless error message

yarn install v1.22.19
[1/5] Validating package.json...
[2/5] Resolving packages...
[3/5] Fetching packages...
[4/5] Linking dependencies...
warning "@greenbone/ui-components > bootstrap@4.6.0" has unmet peer dependency "jquery@1.9.1 - 3".
warning "@greenbone/ui-components > bootstrap@4.6.0" has unmet peer dependency "popper.js@^1.16.1".
warning "@greenbone/ui-components > styled-components@5.2.1" has unmet peer dependency "react-is@>= 16.8.0".
warning " > babel-loader@8.2.5" has unmet peer dependency "webpack@>=2".
warning "react-scripts > tailwindcss@3.0.23" has unmet peer dependency "autoprefixer@^10.0.2".
warning "react-scripts > eslint-config-react-app > eslint-plugin-flowtype@8.0.3" has unmet peer dependency "@babel/plugin-syntax-flow@^7.14.5".
warning "react-scripts > eslint-config-react-app > eslint-plugin-flowtype@8.0.3" has unmet peer dependency "@babel/plugin-transform-react-jsx@^7.14.9".
warning "react-scripts > react-dev-utils > fork-ts-checker-webpack-plugin@6.5.1" has unmet peer dependency "typescript@>= 2.7".
warning "react-scripts > eslint-config-react-app > @typescript-eslint/eslint-plugin > tsutils@3.21.0" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta".
warning "@storybook/react > @storybook/react-docgen-typescript-plugin@1.0.2-canary.253f8c1.0" has unmet peer dependency "typescript@>= 3.x".
warning "@storybook/react > @storybook/react-docgen-typescript-plugin > react-docgen-typescript@2.0.0" has unmet peer dependency "typescript@>= 4.3.x".
warning " > @testing-library/user-event@13.5.0" has unmet peer dependency "@testing-library/dom@>=7.21.4".
warning " > eslint-config-prettier@8.5.0" has unmet peer dependency "eslint@>=7.0.0".
[5/5] Building fresh packages...
Done in 27.93s.
yarn run v1.22.19
$ INLINE_RUNTIME_CHUNK=false react-scripts build && rm -f build/*.js*
Creating an optimized production build...
Browserslist: caniuse-lite is outdated. Please run:
  npx browserslist@latest --update-db
  Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating
Browserslist: caniuse-lite is outdated. Please run:
  npx browserslist@latest --update-db
  Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating
Failed to compile.

Error: error:0308010C:digital envelope routines::unsupported
    at String.replace (<anonymous>)


error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'gsa-22.4-4': 
error: packages failed to build: gsa-22.4-4

This also happends with gvmd

[ 94%] Linking C executable gvmd
/usr/bin/ld: CMakeFiles/gvmd.dir/lsc_crypt.c.o: undefined reference to symbol 'gpgme_data_release@@GPGME_1.0'
/usr/bin/ld: /usr/lib/libgpgme.so.11: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make[2]: *** [src/CMakeFiles/gvmd.dir/build.make:722: src/gvmd] Error 1
make[1]: *** [CMakeFiles/Makefile2:338: src/CMakeFiles/gvmd.dir/all] Error 2
make: *** [Makefile:166: all] Error 2
==> ERROR: A failure occurred in build().
    Aborting...
error: failed to build 'gvmd-22.4-2': 
error: packages failed to build: gvmd-22.4-2

Last edited by Hubbleexplorer (2023-02-14 22:53:25)

Offline

#9 2023-02-15 17:38:55

loqs
Member
Registered: 2014-03-06
Posts: 17,327

Re: [Close] Openvas installation is full of errors

Only the AUR package maintainer can update the package.  You could refer them to this thread.

For gvm add the following to the start of build() in PKGBUILD

  export NODE_OPTIONS=--openssl-legacy-provider

Edit:
gvmd has one of the same issue as openvas-scanner,  expecting gpgme to supply gpgme-config but failing to error out when it is missing.

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 7e815c7..d40acb3 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -70,19 +70,7 @@ else (NOT XSLTPROC_EXECUTABLE)
   message (STATUS "Looking for xsltproc... ${XSLTPROC_EXECUTABLE}")
 endif (NOT XSLTPROC_EXECUTABLE)
 
-message (STATUS "Looking for gpgme...")
-find_library (GPGME gpgme)
-if (NOT GPGME)
-  message (SEND_ERROR "The gpgme library is required.")
-else (NOT GPGME)
-  message (STATUS "Looking for gpgme... ${GPGME}")
-  execute_process (COMMAND gpgme-config --cflags
-    OUTPUT_VARIABLE GPGME_CFLAGS
-    OUTPUT_STRIP_TRAILING_WHITESPACE)
-  execute_process (COMMAND gpgme-config --libs
-    OUTPUT_VARIABLE GPGME_LDFLAGS
-    OUTPUT_STRIP_TRAILING_WHITESPACE)
-endif (NOT GPGME)
+pkg_check_modules (GPGME REQUIRED gpgme)
 
 if (WITH_LIBTHEIA)
   find_package(Theia 1.0.0 REQUIRED)

Last edited by loqs (2023-02-15 17:56:05)

Offline

#10 2023-02-16 16:02:43

Hubbleexplorer
Member
Registered: 2021-05-15
Posts: 89

Re: [Close] Openvas installation is full of errors

I alert the mainteiners of the repos and add a warning to the Arch wiki informing about the broken packages a this thread.
Also I'm making some pull request to see if the fixes are implement in the next version of the software because this may affect other distros. (example https://github.com/greenbone/gvm-libs/p … 301211073)

Also after adding this to the thread if some one needs, after installing gvmd

##########################################################
#         Before starting to use gvmd run the            #
#         following post installation tasks:             #
##########################################################
# systemctl start greenbone-scapdata-sync                #
# systemctl start greenbone-certdata-sync                #
# systemctl start greenbone-feed-sync                    #
# gvm-manage-certs -a                                    #
##########################################################

##########################################################
#         To frequently synchronize the data             #
#         you can enable the daily timers:               #
##########################################################
# systemctl enable --now greenbone-scapdata-sync.timer   #
# systemctl enable --now greenbone-certdata-sync.timer   #
# systemctl enable --now greenbone-feed-sync.timer       #
##########################################################

Last edited by Hubbleexplorer (2023-02-16 16:23:57)

Offline

#11 2023-06-30 11:19:25

Hubbleexplorer
Member
Registered: 2021-05-15
Posts: 89

Re: [Close] Openvas installation is full of errors

Closing this for futher updates

Offline

Board footer

Powered by FluxBB