I am very new to the Rasperry Pi and I am installing Raspbian in Headless manner.
I have the following question. I have to write the Raspbian image on my SD card using the dd
Linux command.
The question is: what file system does my SD card have to be before I can write Raspbian to it with dd
? Currently my SD card is formatted in FAT32 but I think that this is not good.
What is the standard file system? Is it ext3?
And what can I do to format it in the right file system using Linux?
cat /etc/fstab
says there are 2 partitions,/dev/mmcblk0p1
is formatted asvfat
and/dev/mmcblk0p2
is formatted asext4
. – lenik May 26 '14 at 20:29dd
command it overwrites everything, like lenik said. It creates the correct partition type from the contents of the .img file. – RPiAwesomeness Sep 17 '14 at 19:08