安装 CentOS 7 之后发现 Windows 7 的启动项不见了, 原因是 CentOS 默认不支持ntfs分区,导致无法读取 windows 7 的 引导程序。
修复步骤如下:
1. 安装 ntfs-3g 用于识别ntfs分区
# yum install epel-release
# yum install ntfs-3g
2. 重新生成引导项
# grub2-mkconfig -o /boot/grub2/grub.cfg
reference: https://blog.csdn.net/androidstar_cn/article/details/52659115