Instalando o linux em um macbook pro - boot broken

0

Então eu tentei instalar o ubuntu 14.04 no meu macbook pro (substituindo completamente o OSX). Eu tinha reequipado instalado, mas não parece ter desaparecido. E toda vez que eu inicializo, o PC não consegue encontrar nenhum sistema operacional.

Eu tentei usar boot-repair com todas as opções possíveis, mas nunca consertei a inicialização.

Eu tenho as seguintes partições:

/dev/sda1 : EFI boot
/dev/sda2 : /
/dev/sda3 : swap

Eu tentei instalar o reencontro usando a opção --root , mas não funcionou, aqui está a saída:

root@ubuntu:/usr/share/refind# mkdir /media/boot
root@ubuntu:/usr/share/refind# mount /dev/sda1 /media/boot/
root@ubuntu:/usr/share/refind# ./install.sh --root /media/boot/
Installing rEFInd on Linux....
ESP was found at /media/boot using vfat
Found rEFInd installation in /media/boot/EFI/refind; upgrading it.
Copied rEFInd binary files

Notice: Backed up existing icons directory as icons-backup.
Existing refind.conf file found; copying sample file as refind.conf-sample
to avoid overwriting your customizations.

Fatal: Couldn't open either sysfs or procfs directories for accessing EFI variables.
Try 'modprobe efivars' as root.
Installing it!

ALERT: There were problems running the efibootmgr program! You may need to
rename the refind_x64.efi binary to the default name (EFI/boot/bootx64.efi
on x86-64 systems or EFI/boot/bootia32.efi on x86 systems) to have it run!

Existing /media/boot//boot/refind_linux.conf found; not overwriting.

ALERT:
Installation has completed, but problems were detected. Review the output for
error messages and take corrective measures as necessary. You may need to
re-run this script or install manually before rEFInd will work.

root@ubuntu:/usr/share/refind# 

A execução de modprobe efivars não alterou nada.

Então agora eu estou meio perdido: postando isso de um liveCD, não entendendo realmente porque o MBP não está pegando o boot EFI corretamente.

    
por Florian Margaine 06.07.2014 / 12:32

1 resposta

1

Está consertado!

Depois de ler um pouco mais os erros, vi isso:

ALERT: There were problems running the efibootmgr program! You may need to
rename the refind_x64.efi binary to the default name (EFI/boot/bootx64.efi
on x86-64 systems or EFI/boot/bootia32.efi on x86 systems) to have it run!

Por isso, inspecionei a pasta /EFI/ e não encontrei nenhuma pasta boot nela.

# mkdir /media/boot/EFI/boot
# cp /media/boot/EFI/refind/refind_x64.efi /media/boot/EFI/boot/bootx64.efi

Isso funciona! refind é meio quebrado (sem ícone), mas eu posso inicializar bem.

Para restaurar os ícones e refindir o trabalho corretamente:

# cp -R /media/boot/EFI/refind/* /media/boot/EFI/boot/
    
por 06.07.2014 / 12:51