windows de inicialização dupla 10 e ubuntu 14.04 error error no such device

0

[foto de gparted]

Eu tinha o Windows 10 ao lado do Ubuntu 14.04 no mesmo disco rígido.

Quando eu ligo e a lista de opções para inicializar aparece, eu posso inicializar no Ubuntu ok e acessar todos os arquivos do windows, mas não consigo inicializar no windows 10.

Quando escolho o Windows 10 para inicializar, recebo a mensagem:

error: no such device: 27795F9B69145D5C.
press any key to continue...

Em seguida, a tela fica em branco

Eu sou novo no Ubuntu.

vuletic@vuletic-Aspire-5735:~$ sudo blkid
[sudo] password for vuletic: 
/dev/sda1: LABEL="PQSERVICE" UUID="EAEE-EB49" TYPE="vfat" 
/dev/sda2: UUID="a03c32da-1e8d-4c37-8aa7-b8e8e501f63b" TYPE="ext4" 
/dev/sda3: LABEL="C:/" UUID="27795F9B69145D5C" TYPE="ntfs" 
/dev/sda4: UUID="323C3EB83C3E7747" TYPE="ntfs" 
vuletic@vuletic-Aspire-5735:~$ 
vuletic@vuletic-Aspire-5735:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
#                
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda2 during installation
UUID=a03c32da-1e8d-4c37-8aa7-b8e8e501f63b /               ext4    errors=remount-ro 0       1
vuletic@vuletic-Aspire-5735:~$ 
vuletic@vuletic-Aspire-5735:~$ sudo fdisk -l

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xc637a1a9

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1            2048    20482047    10240000   27  Hidden NTFS WinRE
/dev/sda2        20482048    79077375    29297664   83  Linux
/dev/sda3   *    79079424   975055575   447988076    7  HPFS/NTFS/exFAT
/dev/sda4       975056896   976054271      498688   27  Hidden NTFS WinRE
vuletic@vuletic-Aspire-5735:~$ 
vuletic@vuletic-Aspire-5735:~$ sudo add-apt-repository ppa:yannubuntu/boot-repair
[sudo] password for vuletic: 
 Simple tool to repair frequent boot problems.

Website: https://sourceforge.net/p/boot-repair/home
 More info: https://launchpad.net/~yannubuntu/+archive/ubuntu/boot-repair
Press [ENTER] to continue or ctrl-c to cancel adding it

gpg: keyring '/tmp/tmphj6oekac/secring.gpg' created
gpg: keyring '/tmp/tmphj6oekac/pubring.gpg' created
gpg: requesting key 60D8DA0B from hkp server keyserver.ubuntu.com
gpg: /tmp/tmphj6oekac/trustdb.gpg: trustdb created
gpg: key 60D8DA0B: public key "Launchpad PPA for YannUbuntu" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK
vuletic@vuletic-Aspire-5735:~$ 
14.04 
vuletic@vuletic-Aspire-5735:~$ sudo update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-3.13.0-106-generic
Found initrd image: /boot/initrd.img-3.13.0-106-generic
Found linux image: /boot/vmlinuz-3.13.0-49-generic
Found initrd image: /boot/initrd.img-3.13.0-49-generic
Found linux image: /boot/vmlinuz-3.13.0-48-generic
Found initrd image: /boot/initrd.img-3.13.0-48-generic
Found linux image: /boot/vmlinuz-3.5.0-49-generic
Found initrd image: /boot/initrd.img-3.5.0-49-generic
Found Windows Recovery Environment (loader) on /dev/sda1
Found Windows 10 (loader) on /dev/sda3
Found linux image: /boot/vmlinuz-3.13.0-106-generic
Found initrd image: /boot/initrd.img-3.13.0-106-generic
Found linux image: /boot/vmlinuz-3.13.0-49-generic
Found initrd image: /boot/initrd.img-3.13.0-49-generic
Found linux image: /boot/vmlinuz-3.13.0-48-generic
Found initrd image: /boot/initrd.img-3.13.0-48-generic
Found linux image: /boot/vmlinuz-3.5.0-49-generic
Found initrd image: /boot/initrd.img-3.5.0-49-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
Found Windows Recovery Environment (loader) on /dev/sda1
Found Windows 10 (loader) on /dev/sda3
done
vuletic@vuletic-Aspire-5735:~$ 
    
por VULETICA 25.12.2016 / 15:58

1 resposta

1

parece que o SO está procurando por um UUID que não existe. Use a ferramenta Reparo de inicialização para reparar o problema, instale-o via terminal

sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair

Então, se o simples clique não corrigir as coisas, você postará o Resumo de inicialização para obter mais ajuda.

    
por Arduino_Sentinel 25.12.2016 / 16:35