cdebootsrap-static falha no initramfs

0

De um novo CD ao vivo do Ubuntu 12.04:

# 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

Falha com este erro:

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

Alguma idéia por quê? Obrigado

    
por francois_rv 10.10.2013 / 00:29

1 resposta

1

Depois de ler mais sobre cdebootstrap vs debootstrap , eu finalmente optei pela sugestão @psusi - use o debootstrap ao invés do cdebootstrap. Isso funcionou:

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