erro Xen no CentOS

1

Durante a criação de um novo servidor virtual no xen usando este comando

xen-create-image --hostname=minecraft.koanhosting.com --ip 87.98.249.146 --install -method=debootstrap

Mas continuo recebendo este erro:

Writing inode tables:  0/32^H^H^H^H^H 1/32^H^H^H^H^H 2/32^H^H^H^H^H 3/32^H^H^H^H^H 4/32^H^H^H^H^H 5/32^H^H^H^H^H 6/32^H^H^H^H^H 7/32^H^H^H^H^H 8/32^H^H^H^H^H 9/32^H^H^H^H^H10/32^H^$
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

This filesystem will be automatically checked every 28 mounts or
180 days, whichever comes first.  Use tune2fs -c or -i to override.
Done
Installation method: debootstrap

Copying files from host to image.
Copying files from /var/cache/apt/archives -> /tmp/LYC7oAQoxq/var/cache/apt/archives
Done
Done
I: Retrieving Release
E: Failed getting release file http://ftp.us.debian.org/debian/dists/etch/Release

Copying files from new installation to host.
Copying files from /tmp/LYC7oAQoxq/var/cache/apt/archives -> /var/cache/apt/archives
Done
Done
The installation of the new system has failed.

The system is missing the common file: /bin/ls
Done
System installation failed.  Aborting

Parece não encontrar nenhum recurso no google para esse erro. Eu tenho a sensação de que é com o debootstrap, não tenho certeza.

    
por Conner Stephen McCabe 31.01.2013 / 15:53

1 resposta

2

Aparentemente, as configurações padrão para xen-create-image tentam debootstrap Etch , uma versão do Debian sem suporte por quase dois três anos .

O Wiki Debian tem uma entrada no Xen, com uma seção sobre como criar uma imagem de convidado Debian usando xen-tools . Ele dá um exemplo de chamada para xen-create-image assim:

xen-create-image [..] --dist <lenny|squeeze|maverick|whatever>

assim, você pode tentar adicionar --dist squeeze (estável) ou --dist wheezy (teste) à sua linha de comando.

Se isso ainda não resolver o problema, consulte mais de perto /etc/xen-tools/xen-tools.conf e man xen-create-image .

    
por 31.01.2013 / 17:12