# 解决 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,出现了这种报错

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报错

# 解决办法

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

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

# 解决方法

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

问题解决,进入安装

image-20220402100921027