Janelas de inicialização dupla 8 e ubuntu 12.04 primeiro, o Ubuntu não está inicializando (tela preta)

1

Estou tentando inicializar duas vezes o Windows 8 e o Ubuntu 12.04 no novo Asus Zenbook U500VZ com 2x 128 GB ssd em raid0 usando a Tecnologia de armazenamento Intel Rapid (Windows pré-carregado).

Após um pouco de tentativa e erro, finalmente consegui o Windows funcionar e o Grub e o Ubuntu instalados. Mas quando eu escolhi o Ubuntu para inicializar no Grub eu mal vejo o logo do Ubuntu com os pontos, então fico com uma tela preta (tentei ajustar o brilho da tela como sugerido em threads similares) e ouço os sons de bateria mas nada acontece. / p>

Isso é o que eu fiz:
Eu desliguei o Secure Boot, o CSM, o Fast Boot e instalei o Windows no EFI / GPT, desliguei o Hibernate no Windows e instalei o Ubuntu. Como ele não mostrava a opção "ao lado do windows 8", tentei instalá-lo manualmente nesta ordem, após a partição do Windows.

  • 200mb para o grub, onde eu disse ao Ubuntu para colocar o bootloader
  • cerca de 8 GB para troca
  • 15 GB para '/'
  • o resto ~ 60 GB para '/ home'

Eu então executei o Boot Repair e fiz o Grub carregar e não tenho problema em carregar o Windows 8.

Eu não sei mais o que fazer.

Boot-repair me deu isso para solução de problemas:
link removido devido a link-limtis ver link em edição, mas com / 6180438 /

EDITAR:

Tentei reinstalar o GRUB2 da seguinte forma:
link
 mas não funcionou:

ubuntu@ubuntu:~$ sudo grub-install --boot-directory=/mnt/boot /dev/mapper/isw_dagfijbabd_RAID0SYS6
/usr/sbin/grub-setup: warn: Attempting to install GRUB to a partitionless disk or to a partition.  This is a BAD idea..
/usr/sbin/grub-setup: warn: Embedding is not possible.  GRUB can only be installed in this setup by using blocklists.  However, blocklists are UNRELIABLE and their use is discouraged..
/usr/sbin/grub-setup: error: will not proceed with blocklists.

agora o grub também não funciona. Tudo que eu obtenho é um prompt de reparo do GRUB ...

EDIT2:

Eu fiz uma reinstalação completa de ambos os sistemas operacionais a partir do zero. E tenho windows e grub trabalhando novamente. Desta vez eu também recebo a tela preta ao tentar carregar o Ubuntu a partir do GRUB, mas agora, depois de alguns minutos, recebo esta mensagem em um prompt:

Gave up waiting for root device. Common problems:
- Boot args for (cat /proc/cmdline)
  - Check rootdelay= (did the system wait long enough?)
  - Check root= (did the system wait for the right device?)
- Missing modules (cat /proc/modules; ls /dev)
Alert!  /dev/disk/by-uuid/[a hard drive uuid] does not exist. Dropping to a shell!

BusyBox v1.18.5 (Ubuntu 1:1.18.5-1ubuntu4.1) built-in shell (ash)
Enter 'help' for a list of built-in commands.

(initramfs)

Parece que não carrega a partição correta, mas por quê?

Editar 3:

Execute novamente o reparo de inicialização e a tela preta está de volta sem a saída mencionada acima em EDIT2.

Poderia ser um problema com a NVIDIA GeForce GT 650M? Não aparece nos detalhes do sistema no USB ao vivo. Existe uma maneira de instalar os drivers do USB ao vivo?

este é o novo link de reparo de inicialização: link

Editar 4:

Eu tentei instalar o driver mais recente da Nvidia usando

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install nvidia-current-updates

sem resultado ....

Editar 5:

Também tentei definir a linha de inicialização para nomodeset , no splash , nvidia.modeset=0 e GRUB_GFXMODE=1280x1024x32 ainda uma tela preta com o drumsound.

Editar 6:

Se isso ajudar, esta é minha /boot/grub/grub.cfg

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}

function load_video {
  insmod efi_gop
  insmod efi_uga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_gpt
insmod ext2
set root='(hd4,gpt7)'
search --no-floppy --fs-uuid --set=root fb4c455f-c123-4c54-abbd-d6217a6c2737
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  insmod part_gpt
  insmod ext2
  set root='(hd4,gpt7)'
  search --no-floppy --fs-uuid --set=root fb4c455f-c123-4c54-abbd-d6217a6c2737
  set locale_dir=($root)/boot/grub/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ]; then
  set timeout=10
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
    set gfxpayload="${1}"
    if [ "${1}" = "keep" ]; then
        set vt_handoff=vt.handoff=7
    else
        set vt_handoff=
    fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
if [ "${linux_gfx_mode}" != "text" ]; then load_video; fi
menuentry 'Ubuntu, with Linux 3.8.0-31-generic' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='(hd4,gpt7)'
    search --no-floppy --fs-uuid --set=root fb4c455f-c123-4c54-abbd-d6217a6c2737
    linux   /boot/vmlinuz-3.8.0-31-generic.efi.signed root=UUID=fb4c455f-c123-4c54-abbd-d6217a6c2737 ro   quiet splash $vt_handoff
    initrd  /boot/initrd.img-3.8.0-31-generic
}
menuentry 'Ubuntu, with Linux 3.8.0-31-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='(hd4,gpt7)'
    search --no-floppy --fs-uuid --set=root fb4c455f-c123-4c54-abbd-d6217a6c2737
    echo    'Loading Linux 3.8.0-31-generic ...'
    linux   /boot/vmlinuz-3.8.0-31-generic.efi.signed root=UUID=fb4c455f-c123-4c54-abbd-d6217a6c2737 ro recovery nomodeset 
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initrd.img-3.8.0-31-generic
}
submenu "Previous Linux versions" {
menuentry 'Ubuntu, with Linux 3.8.0-29-generic' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='(hd4,gpt7)'
    search --no-floppy --fs-uuid --set=root fb4c455f-c123-4c54-abbd-d6217a6c2737
    linux   /boot/vmlinuz-3.8.0-29-generic root=UUID=fb4c455f-c123-4c54-abbd-d6217a6c2737 ro   quiet splash $vt_handoff
    initrd  /boot/initrd.img-3.8.0-29-generic
}
menuentry 'Ubuntu, with Linux 3.8.0-29-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod gzio
    insmod part_gpt
    insmod ext2
    set root='(hd4,gpt7)'
    search --no-floppy --fs-uuid --set=root fb4c455f-c123-4c54-abbd-d6217a6c2737
    echo    'Loading Linux 3.8.0-29-generic ...'
    linux   /boot/vmlinuz-3.8.0-29-generic root=UUID=fb4c455f-c123-4c54-abbd-d6217a6c2737 ro recovery nomodeset 
    echo    'Loading initial ramdisk ...'
    initrd  /boot/initrd.img-3.8.0-29-generic
}
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/25_custom ###

menuentry "Windows UEFI bkpbootmgfw.efi" {
search --fs-uuid --no-floppy --set=root B6F8-C530
chainloader (${root})/EFI/Microsoft/Boot/bkpbootmgfw.efi
}

menuentry "Windows Boot UEFI loader" {
search --fs-uuid --no-floppy --set=root B6F8-C530
chainloader (${root})/EFI/Boot/bkpbootx64.efi
}
### END /etc/grub.d/25_custom ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' {
    fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###

e este é meu /etc/default/grub

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR='lsb_release -i -s 2> /dev/null || echo Debian'
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command 'vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

EDITAR 7

Eu tenho o Ubuntu instalado e funcionando. Usando o instalador alternativo 12.04.03 com essa modificação. [http: //] cirrus [.] ucsd [.] edu [/] ~ pierce [/] fix_ubuntu_usb [/]. Então eu inicializei e instalei atualizações e drivers nvidia e voltei para a tela preta! Como me livrar dos drivers nvidia?

    
por bogren 01.10.2013 / 19:10

0 respostas