別のディスクからDebianとWindows 8 UEFIデュアルブート

別のディスクからDebianとWindows 8 UEFIデュアルブート

別のディスクにインストールされているDebianとWindows 8をダブルブートしたいと思います。これが私がこれまでにしたことです。このチュートリアル

私のドライブの構成とパーティションは次のとおりです。

/dev/sda1 - Windows System Reserved
/dev/sda2 - Windows 8 partition
/dev/sdb1 - NTFS partition (where I keep Windows data)
/dev/sdb2 - Linux swap
/dev/sdb3 - Debian
/dev/sdc1 - Live CD (explained later)

スワップとDebianはどちらもデフォルトのパーティションです。

インストール中に次のエラーが発生します:GRUBのインストールに失敗しました(チュートリアルによると大丈夫です)

チュートリアルでは、EFIで起動したLive Ubuntu USB(dev / sdc)を使用してGrubEFIをインストールすることをお勧めします。

問題は、EFIシステムパーティションを見つけて/boot/efiにマウントする必要があることです。

しかし、一人もいないようです。

この問題を解決するのに役立ちますか?

ディスクとパーティションの詳細は次のとおりです。

Disk /dev/sda: 250069680 sectors, 119.2 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 994A5C74-12AD-400E-9123-A000AC1F78CB
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 250069646
Partitions will be aligned on 2048-sector boundaries
Total free space is 4717 sectors (2.3 MiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048          718847   350.0 MiB   0700  Microsoft basic data
   2          718848       250066943   118.9 GiB   0700  Microsoft basic data

Disk /dev/sdb: 1953525168 sectors, 931.5 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): AC0FBF3D-5C6C-494A-9F25-C5E6261B66DA
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1953525134
Partitions will be aligned on 2048-sector boundaries
Total free space is 3437 sectors (1.7 MiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048      1707761663   814.3 GiB   0700  Microsoft basic data
   2      1707761664      1739012095   14.9 GiB    8200  Linux swap
   3      1739012096      1953523711   102.3 GiB   8300  Linux filesystem

Warning! Secondary partition table overlaps the last partition by
33 blocks!
You will need to delete this partition or resize it in another utility.
Disk /dev/sdc: 62324736 sectors, 29.7 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): A17CC70D-C650-4E4E-9DC6-865D719BE5B7
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 62324702
Partitions will be aligned on 1-sector boundaries
Total free space is 29 sectors (14.5 KiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1              63        62324735   29.7 GiB    0700  Microsoft basic data

ベストアンサー1

ロードに興味があるかもしれません。EFIブートローダの紹介そして私ALT Linux構造これには、Refindブートマネージャとパーティションとファイルシステムの操作に必要なすべてのツールが含まれているため、便利です(たとえば、Debianインストーラが他のESPを作成しない場合など)。

ESP(特殊GPT UUIDを持つFAT32パーティション)がすべて必要ですが、上記のfdisk出力にはありません。以下はlocalhostから抜粋したものです。

Disk /dev/sda: 234.7 GiB, 252000000000 bytes, 492187500 sectors
[...]
Disklabel type: gpt

Device         Start       End   Sectors   Size Type
/dev/sda1       2048    616447    614400   300M EFI System
[...]

efibootmgrたとえば、(電子はOSがEFIモードで起動したときに呼び出されます)を使用せずにgrub-install忘れない場合に便利です。modprobe efivarsそれ以外の場合、/sys/firmware/efiブートローダでは機能しません。

おすすめ記事