解决 Ubuntu 安装 AWVS 报错 dependency ** found on the system

系统信息

系统版本:Ubuntu 20.04 LTS x64、Ubuntu 22.04 LTS x64

内核版本:Linux 5.4.0-100-generic

问题一

在Ubuntu 22.04上安装AWVS,出现了这种报错

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Acunetix Installer Version: v_221109177, Copyright (c) Acunetix
------------------------------------------------------------

Checking os...
Checking for dependencies...
- dependency libXrandr.so.2 not found on the system
- dependency libatspi.so.0 not found on the system
- dependency libasound.so.2 not found on the system
- dependency libXdamage.so.1 not found on the system
- dependency libcairo.so.2 not found on the system
- dependency libpango-1.0.so.0 not found on the system
- dependency libatk-1.0.so.0 not found on the system
- dependency libcups.so.2 not found on the system
- dependency libatk-bridge-2.0.so.0 not found on the system
- dependency libXfixes.so.3 not found on the system
- dependency libXcomposite.so.1 not found on the system
- dependency libgbm.so.1 not found on the system
- dependency libxkbcommon.so.0 not found on the system
Some dependencies are not found on the system. Aborting installation.
Aborting installation

AWVS报错

解决办法

1
sudo apt-get install -y libpango-1.0 libxi6 libgtk-3-0 libx11-xcb1 libxss1 libgbm-dev libasound2

问题解决,进入安装

image-20221123144943.png

问题二

在Ubuntu 20.04上安装AWVS,出现了这种报错 dependency libgbm.so.1 not found on the system

image-20220402100548072

1
2
3
4
Checking for dependencies...
- dependency libgbm.so.1 not found on the system
Some dependencies are not found on the system. Aborting installation.
Aborting installation

解决方法

1
2
sudo apt-get update
sudo apt-get install -y libgbm-dev

问题解决,进入安装

image-20220402100921027