Para este problema, não é realmente um problema com o MBR. Os fóruns do AudoCAD aos quais você se conectou tinham as seguintes informações:
It's not a change in MBR. grub bootloader put it's stage2 code into the 2048 sectors after the master boot record. this harddisk area is not used by operating systems and resides before the first partion. between byte 3585 (0x0E01) and byte 4096 (0x1000) autocad 2011 write some code in this area and destroy the grub boot stage2 code.
Você precisará reinstalar o GRUB. De acordo com o Super GRUB Disk Wiki , você pode corrigir o GRUB de dentro de uma instalação do Linux se você usar um LiveCD, ou a partir do prompt de comando do GRUB, se você puder chegar ao estágio 1, ou usando o dito Super GRUB Disk para reparar o bootloader. Dependendo da sua versão do GRUB, existem diferentes opções para qual disco de recuperação você deve usar; você pode vê-los todos aqui .
Se você tiver acesso ao estágio 1 do carregador, use os seguintes comandos:
Find the partition where GRUB stage1 it is.
grub>find /boot/grub/stage1 grub>find /grub/stage1 Output from these commands might be: (hd0,1) (hd0,3)
Let's suppose that you want to restore GRUB from second partition on first hard disk,
(hd0,1)
.Just type these commands:
grub>root (hd0,1)
which prompts:
Filesystem type is ext2fs, partition type 0x83
and then:
grub>setup (hd0)
which prompts:
Checking if "/boot/grub/stage1" exists... yes Checking if "/boot/grub/stage2" exists... yes Checking if "/boot/grub/e2fs_stage1_5" exists...
yes Running "embed /boot/grub/e2fs_stage1_5 (hd0)"... 15 sectors are embedded. succeeded Running "install /boot/grub/stage1 d (hd0) (hd0)1+15 p (hd0,1)/boot/grub/stage 2 /boot/grub/menu.lst"... succeeded Done.
Now you can reboot your machine with the reboot command.
grub>reboot