View Single Post
Posts: 594 | Thanked: 1,094 times | Joined on Aug 2012 @ Rhine
#7
Thanks, i got it working correct again

I missed the part with /data/media. It seems, the update copied / moved the android-data which was on my sdcard to /data/media, which was on the device. that's why so much less space was available on the device. btw: it did not copy all files, some are lost, bu i can live with that.

now i moved all data from /data/media back to the sdcard and mounted /data/media to the android-folder on the sdcard.

the p1 is there, because i'm using ext4, not btrfs.

my df -h output now looks like this:
Code:
/dev/mmcblk1p1         59G  4.2G   52G   8% /mnt/sd
/dev/mmcblk1p1         59G  4.2G   52G   8% /home/nemo
/dev/mmcblk1p1         59G  4.2G   52G   8% /data/media
/dev/fuse              59G  4.2G   52G   8% /home/nemo/android_storage
/dev/fuse              59G  4.2G   52G   8% /mnt/sd/.home/android_storage
/dev/mmcblk1p1         59G  4.2G   52G   8% /media/sdcard/45823f6b
i have no idea, where the second fuse mount comes from, i only mount this:
Code:
  mount /dev/mmcblk1p1 /mnt/sd
  mount -o bind /mnt/sd/.home /home/nemo
  mount -o bind /mnt/sd/.android /data/media
the settings app now shows, that 2.4G are in use on the device.

so, except this second fuse mount, everything seems to be ok again thanks.