我正在键入运行服务haspd.service,但得到了一个错误:
ноя 22 17:50:55 ubuntu-server haspd[5918]: Running winehasp... [PASSED]
ноя 22 17:50:55 ubuntu-server haspd[5918]: Running hasplm... [PASSED]
ноя 22 17:50:55 ubuntu-server haspd[5918]: Running hasplmd... [PASSED]
ноя 22 17:50:55 ubuntu-server haspd[5918]: usbkeytest: error while loading shared libraries: libusb-1.0.so.0: cannot open shared object file: No such file or directory
ноя 22 17:50:55 ubuntu-server haspd[5918]: We have no built usbkeytest, so run all possible services
ноя 22 17:50:55 ubuntu-server haspd[5918]: Running skeyd... [PASSED]
ноя 22 17:50:55 ubuntu-server systemd[1]: haspd.service: Control process exited, code=exited status=2
ноя 22 17:50:55 ubuntu-server systemd[1]: Failed to start LSB: Hasp keys support.在互联网上发现,我应该安装libudev0:i 386,但是我有ubuntu 16.04,这个包在14.04被删除了,我做不到,我是linux的新手,请帮帮我.
发布于 2017-02-08 11:42:47
libusb-1.0.so.0实际上来自Xenial中可用的包libusb-1.0-0。
要安装本机amd64架构,请执行以下操作:
sudo apt install libusb-1.0-0我不明白为什么在这种情况下你会需要它来换一种不同的架构。如果出于某种原因,您确实需要i386变体,您可以这样安装它:
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install libusb-1.0.0:i386发布于 2022-04-22 16:25:07
上面的说明对我没有用,对我起作用的只是删除/opt/resolve中的所有内容,所以如果您发现自己处于这种情况,只需执行以下操作:
rm -rf /opt/resolve发布于 2017-02-07 12:10:27
只管跑:
sudo dpkg --add-architecture i386 && apt-get update
sudo apt install libusb-1.0.0:i386 https://askubuntu.com/questions/852337
复制相似问题