web-dev-qa-db-ja.com

USBブータブルGPTパーティションを作成するにはどうすればよいですか?

これはlsblkが示すものです

sdd                    8:48   1  14,7G  0 disk 
├─sdd1                 8:49   1     2G  0 part /media/miki/Ubuntu 19.04 AMD64
└─sdd2                 8:50   1   3,7M  0 part 

これはfdisk/dev/sddの出力です

Command (m for help): p
Disk /dev/sdd: 14,7 GiB, 15733161984 bytes, 30728832 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x46f8e7bf

Device     Boot   Start     End Sectors  Size Id Type
/dev/sdd1  *          0 4095999 4096000    2G  0 Empty
/dev/sdd2       4066772 4074259    7488  3,7M ef EFI (FAT-12/16/32)

私は今何を選ぶべきですか?

Command (m for help): m

Help:

  DOS (MBR)
   a   toggle a bootable flag
   b   edit nested BSD disklabel
   c   toggle the dos compatibility flag

  Generic
   d   delete a partition
   F   list free unpartitioned space
   l   list known partition types
   n   add a new partition
   p   print the partition table
   t   change a partition type
   v   verify the partition table
   i   print information about a partition

  Misc
   m   print this menu
   u   change display/entry units
   x   extra functionality (experts only)

  Script
   I   load disk layout from sfdisk script file
   O   dump disk layout to sfdisk script file

  Save & Exit
   w   write table to disk and exit
   q   quit without saving changes

  Create a new label
   g   create a new empty GPT partition table
   G   create a new empty SGI (IRIX) partition table
   o   create a new empty DOS partition table
   s   create a new empty Sun partition table

このp出力

Command (m for help): p
Disk /dev/sdd: 14,7 GiB, 15733161984 bytes, 30728832 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x46f8e7bf

Device     Boot   Start     End Sectors  Size Id Type
/dev/sdd1  *          0 4095999 4096000    2G  0 Empty
/dev/sdd2       4066772 4074259    7488  3,7M ef EFI (FAT-12/16/32)


lsblk -f /dev/sdd
NAME   FSTYPE  LABEL              UUID                                 MOUNTPOINT
sdd    iso9660 Ubuntu 19.04 AMD64 2019-04-16-19-19-59-00               
├─sdd1 iso9660 Ubuntu 19.04 AMD64 2019-04-16-19-19-59-00               /media/miki/Ubuntu 19.04 AMD64
└─sdd2 vfat    Ubuntu 19.04 AMD64 039E-EF17  

私の目標は、USBを起動可能にすることですが、タイプが間違っていたため(以前はMBR)、検​​出されませんでした。

1
MikiBelavista

IsoファイルからUSBペンドライブにクローンを作成したようです。使用したツール/方法を教えてください。

あなたは次のコマンドで確認することができます、そして私が得るものと同様のものが得られるはずです(Lubuntuで)

$ lsblk -f /dev/sdd
NAME   FSTYPE  LABEL               UUID                                 MOUNTPOINT
sdd    iso9660 Lubuntu 19.04 AMD64 2019-04-16-19-13-46-00               
├─sdd1 iso9660 Lubuntu 19.04 AMD64 2019-04-16-19-13-46-00               
└─sdd2 vfat    Lubuntu 19.04 AMD64 039E-EF17                            

その場合、USBペンドライブはUEFIモードとBIOSモードの両方で起動可能である必要があります。

これは非常に特殊なパーティションテーブルです(ただしMSDOSとして分類され、GUID(GPT)ではありません)。GPTパーティションを作成する理由はありません。


コンピューターのUEFI/BIOSメニューの一部の設定を変更する必要がある場合や、USBドライブを選択できる一時的なブートメニューを取得するために、ブートの早い段階でホットキーを押す必要がある場合があります。

それでも機能しない場合は、md5sumでダウンロードに問題がないか確認してください。次のステップは、USBペンドライブが正常かどうかを確認することです。しかし、あなたの質問の出力は有望に見えます。

1
sudodus