//!
SETUP: PC running Linux console with SD cardreader
------
CHECK: Open Linux console and type:
------
cat /proc/partitions
Insert SD card in reader and type again:
cat /proc/partitions
Check the difference to see the name of the SD card - assumed "sdb"
CARE MUST BE TAKEN TO USE THE RIGHT NAME !!
UNMOUNT: all partitions by typing (substitute "sdx" with the right name):
--------
sudo umount /dev/sdx1
sudo umount /dev/sdx2
PARTITIONING: Type following (substitute "sdb" with the right name):
-------------
sudo fdisk /dev/sdx
p
d
1
d
p
n
p
1
t
b
p
w
FORMATTING: Type (substitute "sdx" with the right name):
-----------
sudo mkfs.msdos -n EV3_DATA /dev/sdx1
REMOVE: Use the "Safely Remove Drive" and remove SD card
------- or type:
sync
//!