Compilation failure "configure: error: udev support requested but libudev header not installed"

Compilation failure "configure: error: udev support requested but libudev header not installed"

我在 ubuntu 机器上进行了以下操作:

  1. Git 克隆 https://github.com/libusb/libusb.git
  2. 提取后,运行 ./autogen.sh 脚本失败并出现以下错误:

checking libudev.h usability... no checking libudev.h presence... no checking for libudev.h... no configure: error: udev support requested but libudev header not installed

我也尝试使用以下命令安装 libudev sudo apt-get install libudev-dev 但它失败并出现以下错误:

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
  libudev1 udev
The following NEW packages will be installed:
  libudev-dev
The following packages will be upgraded:
  libudev1 udev
2 upgraded, 1 newly installed, 0 to remove and 83 not upgraded.
Need to get 1,197 kB of archives.
After this operation, 539 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Err:1 http://in.archive.ubuntu.com/ubuntu xenial-updates/main amd64 udev amd64 229-4ubuntu17
  404  Not Found [IP: 91.189.88.162 80]
Err:2 http://in.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libudev1 amd64 229-4ubuntu17
  404  Not Found [IP: 91.189.88.162 80]
Err:3 http://in.archive.ubuntu.com/ubuntu xenial-updates/main amd64 libudev-dev amd64 229-4ubuntu17
  404  Not Found [IP: 91.189.88.162 80]
Unable to correct missing packages.
E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/main/s/systemd/udev_229-4ubuntu17_amd64.deb  404  Not Found [IP: 91.189.88.162 80]

E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_229-4ubuntu17_amd64.deb  404  Not Found [IP: 91.189.88.162 80]

E: Failed to fetch http://in.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev-dev_229-4ubuntu17_amd64.deb  404  Not Found [IP: 91.189.88.162 80]

E: Aborting install.

如有任何帮助,我们将不胜感激。谢谢。

我开始工作了。首先,我安装了 libudev-dev 硬件。

1.wget http://kr.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev-dev_204-5ubuntu20_amd64.debwget http://kr.archive.ubuntu.com/ubuntu/pool/main/s/systemd/libudev1_204-5ubuntu20_amd64.deb

  1. 使用 sudo dpkg -i <*.deb>

  2. 安装了这些软件包
  3. 现在,运行 ./autogen.sh 在 libusb 文件夹下。

配置成功!

sudo apt install libudev-dev 适用于 Ubuntu 18.04 LTS