Tuesday, August 19, 2014

Quickstart: Raspbian (Raspberry Pi) Common Errors

-  FAT-fs (mmcblk0p1): Volume was not properly unmounted

Reason: (http://lkml.org/lkml/2013/5/6/342) dosfstools should be at least v3.0.14, the current version is: 3.0.13-1
How to: (http://www.tuxlog.de/raspberrypi/2014/raspberry-pi-volume-not-properly-unmounted/)

sudo umount /boot
sudo git clone http://daniel-baumann.ch/git/software/dosfstools.git
sudo cd dosfstools
sudo make
sudo ./fsck.fat -V /dev/mmcblk0p1

0x25: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
1) Remove dirty bit
2) No action
? 1

sudo ./fsck.fat -a /dev/mmcblk0p1
sudo mount /boot

(Updating...)

2 comments:

  1. i am trying to setup a 6lowpan network using raspberry pi to control a network of door locks.
    can u guide me with the exact procedure how can set it up as my edge router.

    ReplyDelete
  2. Hi. You can take a look here:

    http://thingschat.blogspot.fr/2014/06/border-router-with-raspberry-pi-for-lln.html

    ReplyDelete