Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Alpine 上安装 Debian 软件包?
例如:
wget https://dl.influxdata.com/influxdb/releases/influxdb_0.13.0_armhf.deb sudo dpkg -i influxdb_0.13.0_armhf.deb
好消息:
alpine现在dpkg在其存储库中有可用的软件包,您可以安装它apk add dpkg,您可以使用它dpkg -i *.deb来安装deb您想要的。
alpine
dpkg
apk add dpkg
dpkg -i *.deb
deb
Alpine Linux 不是 Debian 衍生版(幸运的是),因此它不支持 Debian 软件包。
Alpine 还没有为 influxdb 提供包,因此您可以创建一个包或从源代码安装 influxdb。