Exatamente da mesma forma que você faria em um disco rígido.
Isso pode ser tão fácil quanto usar "FDISK / dev / sdb" na linha de comando. Você, é claro, precisa configurar os tipos de partição apropriados e formatá-los. Tente o seguinte em uma linha de comando:
fdisk /dev/sdb d 1 [ to remove pre-existing partition] n p 1 [enter] +500M t c [ to create primary 500 meg partition for fat] n p 2 [enter] [enter] t 2 83 [ to create second partition for ext3 ] w Type "sync" to force in-memory changes to disk. (Or you could wait an indeterminate period of time !) Then remove the disk and reinsert it so its reread. mkfs.vfat /dev/sdb1 [ to Create a FAT partition on the ppe rimary partition ] mkfs.ext3 dev/sdb2 [ to Create an EXT3 partition on the secondary partition ]