Wednesday, January 9, 2008

Format SD card to Linux filesystem in eee pc

Code:
fdisk /dev/sdb
New > Primary > Enter > Write > “yes” > Quit

Format new partition /dev/sdb1 to ext3 filesystem:

Code:
mke2fs -c /dev/sdb1 # format to ext2
tune2fs -j /dev/sdb1 # convert to ext3 (optional)
e2label /dev/sdb1 SDCARD # set volume label to “SDCARD”

change ownership to user for the SDCARD after remount:
Code:
sudo chown -R user:user /media/MMC-SD/SDCARD

4 comments:

  1. Tried this today and managed to change the owner on my highspeed SD Card. Unfortunatly now it as slow as a snail in glue. Any ideas?

    ReplyDelete
  2. try to create the directory

    sudo mkdir /media

    and remount your sdcard

    ReplyDelete
  3. Thanks a lot for this.
    Worked a treat, I had to exit the Console after formatting and labeling the drive, then the Chown command worked.

    Now I can get XAMPP working on it.

    ReplyDelete
  4. I did this on my Kingston 8GB and it seemed to break the card. It spent close to an hour trying to create the file system and then I got a memory IO error and it hasn't worked since.
    I'm curious what type of card you had success with?

    ReplyDelete