I want to add files to my Debian setup USB flash drive and am trying to follow the steps from this answer: https://unix.stackexchange.com/a/559371
However, after successfully writing the image with dd bs=4M if=debian-11.0.0-amd64-netinst.iso of=/dev/sdb conv=fdatasync status=progress && sync, when I want to add the partition with fdisk and then b, I get the following error:
Command (m for help): b
There is no *BSD partition on /dev/sdb.
The device (null) does not contain BSD disklabel.
This is what the stick looks like:
$ sudo fdisk -l /dev/sdb
Disk /dev/sdb: 7,8 GiB, 8352956416 bytes, 16314368 sectors
Disk model: Flash Disk
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: 0x31114a24
Device Boot Start End Sectors Size Id Type
/dev/sdb1 * 0 6305695 6305696 3G 0 Empty
/dev/sdb2 1476 6701 5226 2,6M ef EFI (FAT-12/16/32)
What does the error message mean? Where am I doing wrong? How can I add the partition instead?