在 ubuntu 上编译安装 pacman 发表于 2019-04-04 更新于 2024-09-20 分类于 折腾 阅读次数: 评论数: 为了编译一个arch的包,迫不得已需要在现有的机器上安装pacman,具体的编译过程如下: 12345678910sudo apt install libarchive-dev bsdtargit clone git://projects.archlinux.org/pacman.gitgit checkout e6f72c61cd pacman./autogen.sh./configure --disable-docmakesudo make install 其中可能会遇到一些依赖缺少,比如gettext, automake, autopoint, libcurl4-openssl-dev, libarchive-dev, bsdtar,依赖补全以后重新configure即可。