最近私のラップトップ(Dell Precision M4500)にArchをインストールしました。私はハードドライブを交換したので、インストール中に最初からパーティションを起動する必要がありました。私はGPTパーティションを使用することを選択し、UEFIを使用して起動するようにシステムを設定しました。
インストール中にGRUBをインストールしようとしましたが、既存のコマンドを使用してMBRディスク(grub-install /dev/sda
)にインストールしたため、失敗しました。 EFIのメッセージで失敗したため(何が内容であるか覚えていません)、代わりにそのメッセージを使用しましたbootctl
。フォローするアーチ初心者ガイド次の住所に手紙を送ってください。
# bootctl install
boot/loader/entries/arch.conf
次のコンテンツにします。
title Arch Linux
linux /vmlinuz-linux
initrd /initramfs-linux.img
options root=/dev/sda2 rw
そして/boot/loader/loader.conf
timeout 3
default arch
その後、システムを正常にインストールしました。ただし、再起動後、POST後にシステムに黒い画面が表示され、ブートローダは表示されません。ブートローダに入る唯一の方法は、F12システムの起動メニュー(BIOSに入ることができる(またはシステムがEFIでない場合)同じメニュー)をクリックし、メニューから「linux bootloader」を選択することです。これにより、「Arch」を選択できるブートローダ画面に移動します。
時間に合わせてメニューを入手してくださいF12:
「grub」を選択すると、次のようになります。
「grub」をもう一度選択すると、同じメニューに戻ります。
最初のメニューから「Linux Boot Manager」を選択すると、Archエントリと「EFI Basic Loader」エントリを含むメニューが表示されます。
「Arch」を選択するとArchのインストールが始まり、「EFI Basic Loader」を選択すると下の4に示すメニューに移動します。
最初のメニューから「UEFI:INT 13(RAID.0x80)」を選択すると、Archシステムを起動する項目を選択できるArch項目のみのメニューが表示されます。
また、インストールを試みましたgrub
(今回は正しく)。
pacman -S efibootmgr grub os-prober
grub-install --target=x86_64-efi --efi-directory=/boot/EFI --bootloader-id=grub --recheck
grub-mkconfig -o /boot/grub/grub.cfg
これにより、起動メニューに新しい "grub"エントリが表示されますが、F12それを選択すると黒い画面が表示され、再起動メニューに戻ります。
私のgrub.cfg
もの(コメントが削除されました):
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
set root='hd0,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 98202b4b-af35-413a-b3ff-87c149c5061d
else
search --no-floppy --fs-uuid --set=root 98202b4b-af35-413a-b3ff-87c149c5061d
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=5
else
set timeout=5
fi
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-98202b4b-af35-413a-b3ff-87c149c5061d' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 9943-114D
else
search --no-floppy --fs-uuid --set=root 9943-114D
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=UUID=98202b4b-af35-413a-b3ff-87c149c5061d rw quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-98202b4b-af35-413a-b3ff-87c149c5061d' {
menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-98202b4b-af35-413a-b3ff-87c149c5061d' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 9943-114D
else
search --no-floppy --fs-uuid --set=root 9943-114D
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=UUID=98202b4b-af35-413a-b3ff-87c149c5061d rw quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux.img
}
menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-98202b4b-af35-413a-b3ff-87c149c5061d' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 9943-114D
else
search --no-floppy --fs-uuid --set=root 9943-114D
fi
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=UUID=98202b4b-af35-413a-b3ff-87c149c5061d rw quiet
echo 'Loading initial ramdisk ...'
initrd /initramfs-linux-fallback.img
}
}
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
私のパーティションテーブル(エラーに注意してください。これが関連しているかどうかわかりません):
$ sudo parted /dev/sda print
Error: The backup GPT table is corrupt, but the primary appears OK, so that will
be used.
OK/Cancel? OK
Model: ATA TOSHIBA MQ01ABD0 (scsi)
Disk /dev/sda: 750GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags:
Number Start End Size File system Name Flags
1 1049kB 538MB 537MB fat32 boot, esp
2 538MB 32.7GB 32.2GB ext4
3 32.7GB 462GB 429GB ext4
4 462GB 479GB 17.2GB linux-swap(v1)
5 479GB 750GB 271GB ntfs msftdata
そして/etc/fstab
:
# /dev/sda2
UUID=98202b4b-af35-413a-b3ff-87c149c5061d / ext4 rw,relatime,data=ordered 0 1
# /dev/sda3
UUID=baa9dd1e-835c-4d88-af8a-31dc97ac7af6 /home ext4 rw,relatime,data=ordered 0 2
# /dev/sda1
UUID=9943-114D /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
# /dev/sda4
UUID=8eaf91cd-f638-487b-8299-50d39342df0d none swap defaults 0 0
(私のEFIパーティション(sda1
)はにマウントされています/boot
。これを行う必要がありますか/boot/EFI
?)
だから私の質問は、システムを押さずに利用可能なブートローダで直接起動するにはどうすればよいですかF12?です。私はこのブートローダーを好みますgrub
が、必要に応じてそれを使用できますbootctl
。