【发布时间】:2016-03-20 06:18:02
【问题描述】:
root@joker:/usr/libaio# ar -x libaio1*.deb
bash: ar: command not found
我试图在我新安装的 Debian 中使用 'ar' 命令提取 .deb 包。
我试图找到如何安装此实用程序。但是找不到。
谁能帮我解决这个问题。
【问题讨论】:
root@joker:/usr/libaio# ar -x libaio1*.deb
bash: ar: command not found
我试图在我新安装的 Debian 中使用 'ar' 命令提取 .deb 包。
我试图找到如何安装此实用程序。但是找不到。
谁能帮我解决这个问题。
【问题讨论】:
ar 由 binutils
提供确保已安装
【讨论】:
你可以试试dpkg
dpkg -x libaio1*.deb /tmp/out
【讨论】: