Eu faria assim (assumindo que sdb
é seu bastão):
Exclua qualquer tabela de partições anterior:
# dd if=/dev/zero of=/dev/sdb bs=512 count=1
Crie os novos:
# fdisk /dev/sdb
> n
> p
> 1
(+1GB)
> a
> 1
(toggles boot flag)
> t
> c
(filesystem type)
> n
> p
> 2
(defaults)
> t
(specify 2nd partition)
> c
(filesystem type)
> p
(prints current configuration)
> w
(write the new table and quit)
Crie os sistemas de arquivos:
# mkfs.vfat /dev/sdb1
# mkfs.vfat /dev/sdb2