所以我正在尝试为PDEBuild安装Multistrap,但是我收到一个错误,说multistrap的Ubuntu默认版本(2.1.6ubuntu)低于所需的版本(2.1.9+)。有人知道我是怎么安装新版本的吗?我尝试添加lenny Debian代码库,但似乎不起作用。
发布于 2012-03-26 10:46:02
最干净的方法是安装pbuilder,从here ( .dsc和.tar.gz)下载multistrap源码包,然后构建包:
sudo apt-get install pbuilder
mkdir -p /tmp/build_multistrap && cd /tmp/build_multistrap
wget https://launchpad.net/debian/experimental/+source/multistrap/2.1.9/+files/multistrap_2.1.9.dsc https://launchpad.net/debian/experimental/+source/multistrap/2.1.9/+files/multistrap_2.1.9.tar.gz
sudo pbuilder build multistrap_2.1.9.dsc
cd /var/cache/pbuilder/result
sudo dpkg -i multistrap_2.1.9_all.deb
rm -rf /tmp/build_multistraphttps://stackoverflow.com/questions/7851244
复制相似问题