(My host is Windows 8.1 x64 16Gb RAM, running VirtualBox 5.0.20 r106931)
The problem is that when I attach the hard disk, following the standard procedure (see below), the guest gets frozen in the welcome screen (the black one with the small progress bar, just after the bios POST, sorry I cant upload images yet) probably when detecting the new disk.
I have tried to attach it under the current IDE controller, and also under SCSI and SATA controllers, with no success, all get frozen in the same point.
I have tried to format the hard disk as GPT, also as MBR, with NTFS and FAT32, and with big and small partitions (for example 512Gb)
I have also tried turning the disk offline in the host with the sequence of commands:
Code: Select all
diskpart
list disk
select disk 1
offline disk
attributes disk clear readonly
exit
BTW, booting the same guest from a Linux Rescue Boot CD (GParted) it sees the 5Tb disk perfectly, no freeze, suggesting I have a problem with my Windows 2003 Server boot process.
When diagnosing the problem, my first surprise is the result of the next command (run as admin):
Code: Select all
vboxmanage internalcommands listpartitions -rawdisk \\.\PhysicalDrive1
Number Type StartCHS EndCHS Size (MiB) Start (Sect)
Even despite of this error, I carry on and create my .vmdk with this command:
Code: Select all
vboxmanage internalcommands createrawvmdk -filename "disk1.vmdk" -rawdisk "\\.\PhysicalDrive1"
Code: Select all
# Disk DescriptorFile
version=1
CID=c1e6785e
parentCID=ffffffff
createType="fullDevice"
# Extent description
RW 9767541168 FLAT "\\.\PhysicalDrive1" 0
# The disk Data Base
#DDB
ddb.virtualHWVersion = "4"
ddb.adapterType="ide"
ddb.geometry.cylinders="16383"
ddb.geometry.heads="16"
ddb.geometry.sectors="63"
ddb.uuid.image="f00d66e5-f475-46c8-9d73-d8a7673cc2a9"
ddb.uuid.parent="00000000-0000-0000-0000-000000000000"
ddb.uuid.modification="fa879390-204d-4b85-abc1-be3f90306ed2"
ddb.uuid.parentmodification="00000000-0000-0000-0000-000000000000"
ddb.geometry.biosCylinders="1024"
ddb.geometry.biosHeads="255"
ddb.geometry.biosSectors="63"
Any clue?
Thank you!