ベストアンサー1
GRUBをインストールするかどうかを尋ねるメッセージが表示されます。そうでない場合は残念です。私が使用したすべてのディストリビューションにはリクエスト(debian、ubuntu、suse、manjaro)、無効にする方法(私の意見ではcentos)があるか、手動で実行するように求めます(arch)。
しかし、止められない場合は後で修正することができます。ブートローダは後でLinuxシステムで簡単に変更できます。 (オプション)バックアップしてください。その後、インストールを完了し、ライブメディアまたはリカバリメディアから起動し、grubとproc、sys、およびdevを管理するrootfsと/bootをrootfsにマウントし、rootfsとしてchrootします。次に grub を再インストールします。
たとえば、chroot を設定して入力するには、次のようにします。
sudo -i
mkdir /mnt/root
mount /dev/sda2 /mnt/root # assuming this is rootfs
mount /dev/sda1 /mnt/root/boot # assuming this is /boot
for d in dev proc sys; do mount -o bind /$d /mnt/root/$d; done
chroot /mnt/root /bin/bash
次に、別のrootfsからgrubをインストールするか、別の手順を実行します。
grub-install /dev/sda
#optional... especially important if you have modified fstab
# choose one of these depending on distro
mkinitcpio # arch,manjaro
mkinitrd # suse,rh
update-initramfs -u #ubuntu,debian,mint probably
#optional... not required just for grub-install. Required if you have added new kernels or modified /etc/grub.d/ files.
# maybe this will run os-prober for you, saving the step of getting the 2nd OS in the grub menu
update-grub