0

Keep in mind I used several micro SD cards and SD card and a USB pin-drive hoping to get a different result, also tried on 3 different computers 2 Windows 10 Home, and a Windows 7 Pro.

I'm trying to write a os(ParrotSec) on to my Raspberry Pi 3 via micro SD card. but every time I do it. I get this:

Photo https://gyazo.com/a6e94016863870c791e4d365be95b3d1

It's a 32 GB micro SD card and it's showing 63mb as its max but I figured out on how to fix that using diskpart. cmd

diskpart
list disk
select disk 1
list partition
clean
list partition
create partition primary
list partition
format fs=fat32 quick
list partition
exit

But when I write again it gives me the same results. I also used different img writing softwares like rosa, win32 and rufus.

Extra information. -operating systems i tried to install Raspbain and Parrot(parrotsec.org)

Steve Robillard
  • 34,988
  • 18
  • 106
  • 110
Zeltron playz
  • 23
  • 2
  • 6

1 Answers1

0

That is because there are two disk partitions. Only the first can be seen by windows. Once you put the card into your Pi you can expand the filesystem. Raspbian will do this automatically on first boot. I am not familair with Parrot, but instructions for expanding the root file system can be found in this related question. You can verify the size of the partitions on your SD card with the following command:

df -h.

Steve Robillard
  • 34,988
  • 18
  • 106
  • 110