首页
随机
最近更改
特殊页面
社群首页
参数设置
关于WHY42
免责声明
WHY42
搜索
用户菜单
登录
欢迎来到Riguz的小站!这是一个私人wiki,用来记录一些我的笔记。
查看“︁Gentoo:Grub2安装”︁的源代码
←
Gentoo:Grub2安装
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您可以查看和复制此页面的源代码。
安装Grub2时,参考[https://wiki.gentoo.org/wiki/Handbook:AMD64/Installation/Bootloader 官方教程],出现了错误: <pre> warn: This GPT partition label has no BIOS Boot Partition; embedding won't be possible!. </pre> 这样安装完之后是无法启动的。退出chroot环境,使用gparted 命令查看分区: <source lang="bash"> parted /dev/sda </source> 可能是这样: <pre> Model: Areca ARC-1210-VOL#00 (scsi) Disk /dev/sda: 4000000MB Sector size (logical/physical): 512B/512B Partition Table: gpt Number Start End Size File system Name Flags 1 0.02MB 4000MB 4000MB linux-swap(v1) 2 4000MB 4300MB 300MB ext3 boot 3 4300MB 104300MB 100000MB ext3 </pre> 可以看到boot分区是没有标记的。 <source lang="bash"> (parted)set 2 bios_grub on (parted)q </source> 执行完成后,再chroot到系统中,安装grub。 [[Image:Grub2 Install.png]] [[Category:Linux/Unix]]
返回
Gentoo:Grub2安装
。