cdebootsrap-static 在 initramfs 上失败

cdebootsrap-static 在 initramfs 上失败

从 Ubuntu 12.04 的新 Live CD 中:

# enabling universe repository
sudo apt-get update
sudo apt-get install cdebootstrap-static
sudo cdebootstrap-static --debug -v --allow-unauthenticated --flavour minimal precise /mnt http://archive.ubuntu.com/ubuntu

由于此错误而失败:

O: Errors were encountered while processing:
O:   /var/cache/bootstrap/initramfs-tools_0.99ubuntu13_all.deb
D: Status: 256
E: Internal error: install

知道原因吗?谢谢

答案1

在进一步阅读之后cdebootstrap vs debootstrap,我最终选择了@psusi的建议 - 使用debootstrap而不是cdebootstrap。这有效:

sudo apt-get install deboostrap;
sudo debootstrap --arch=amd64 --variant=minbase precise /mnt http://archive.ubuntu.com/ubuntu

相关内容