システムを起動するたびに、Linux が直接起動します。 を押すとshift、GRUB には Windows ではなく Linux のみが表示されます。fdisk
との結果を以下に示しますupdate-grub
。Linux を間違った方法でインストールしたと思います。
$ fdisk
WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sda: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 1953525168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 1 1953525167 976762583+ ee GPT
Partition 1 does not start on physical sector boundary.
$ update-grub
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-3.19.0-32-generic
Found initrd image: /boot/initrd.img-3.19.0-32-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
No volume groups found
done
答え1
まず、 を試してみましたsudo os-prober
がsudo update-grub
、Windows が認識されませんでした。
最終的に私は以下の手順でこの問題を解決しましたブート修復
ブート修復をインストールする
sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair
「推奨修復」を押して、提案されたコマンドをターミナルに入力します。
シャットダウンがうまくいかなかったために Grub が Windows を認識しなかったのだと思いますが、これで問題は解決しました。
これがお役に立てば幸いです。