I am trying to create a bootable USB stick using the sudo dd command, but using fdisk -l to find out which USB port the device is , I don't know how to interpret the output.
My computer is a HP Compaq nc6220, with 3 USB ports.
This is the output I am currently getting, with the USB stick plugged into the single USB port on the left of my keyboard:
Disk /dev/sda: 37.3 GiB, 40007761920 bytes, 78140160 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: 0x00029d6e
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 73963519 73961472 35.3G 83 Linux
/dev/sda2 73965566 78139391 4173826 2G 5 Extended
/dev/sda5 73965568 78139391 4173824 2G 82 Linux swap / Solaris
Disk /dev/sdb: 7.5 GiB, 8053063680 bytes, 15728640 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: 0x00000000
I am assuming the /dev/sda lines refer to my computer's internal hard drive, and the /dev/sdb lines refer to the USB stick.
However, previously, when I tried to run fdisk -l with this USB stick, it was giving a different output, with 4 lines, labelled /dev/sdb1, /dev/sdb2, dev/sdb3 and dev/sdb4.
Please can anyone tell me what is going on here (as to why the output has changed, and is it safe for me to use sudo dd if=~/Desktop/linuxmint-18.1-cinnamon-32bit.iso of=/dev/sdb to format the USB stick and make a bootable USB stick so I can install a different distro?