I am following this post to create bootable Ubuntu flash drive. https://askubuntu.com/a/377561
Suppose my flash drive is /dev/sdb.
After running
sudo dd bs=4M if=input.iso of=/dev/sdb
does the flash drive have a file system? If yes, what file system type?
Thanks.
dddoes not create any filesystem by itself, but creates an exact copy of the input. So if your.isofile has e.g. ISO9660, then the flash drive will have the same. You can find out withfile input.isoandfile /dev/sdb. – ridgy Apr 23 '17 at 13:05ISO9660is a file system type? @ridgy – Tim Apr 23 '17 at 14:26