Virtualbox - instalação do ubuntu na partição

1

Oi eu gostaria de instalar uma nova cópia do Ubuntu em partições separadas para o host no VirtualBox, que também é Ubuntu.

Eu consegui criar arquivos VMDK para apontar para a partição bruta. Mas eu preciso saber que instalando o guest Ubuntu dessa maneira, isso não afetará o gerenciador de boot do host. Eu não quero ir em frente e fazê-lo e depois descobrir que não consigo acessar o sistema operacional host.

Obrigado!

    
por melon 15.06.2011 / 18:22

1 resposta

1

Se você usar uma partição real para o VirtualBox, não poderá gravar no MBR do disco, portanto, não é um perigo real fazer isso, a menos que você especifique o disco inteiro ou a partição incorreta.

De acordo com o link , o MBR do convidado é gravado em um arquivo em vez de ser gravado em uma partição .

In some configurations it may be necessary to change the MBR code of the created image, e.g. to replace the Linux boot loader that is used on the host by another boot loader. This allows e.g. the guest to boot directly to Windows, while the host boots Linux from the "same" disk. For this purpose the -mbr parameter is provided. It specifies a file name from which to take the MBR code. The partition table is not modified at all, so a MBR file from a system with totally different partitioning can be used. An example of this is

VBoxManage internalcommands createrawvmdk -filename /path/to/file.vmdk -rawdisk /dev/sda -partitions 1,5 -mbr winxp.mbr

The modified MBR will be stored inside the image, not on the host disk.

The created image can be attached to a storage controller in a VM configuration as usual."

    
por 15.06.2011 / 20:42