Is there anyway to solve this /dev/root full partition?
I am not able to expand Pi to use my entire SD Card (8Gb) space from raspi-config. Thanx!
pi@emonpi ~ $ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/root 2.7G 2.5G 0 100% /
devtmpfs 214M 0 214M 0% /dev
tmpfs 44M 284K 44M 1% /run
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 87M 0 87M 0% /run/shm
tmpfs 30M 4.0K 30M 1% /tmp
tmpfs 30M 396K 30M 2% /var/log
/dev/mmcblk0p1 56M 20M 37M 36% /boot
/dev/mmcblk0p3 788M 42M 707M 6% /home/pi/data
Re: Emoncms SD Image - Full /dev/root partition [SOLVED]
You cannot use raspi-config as it is only capable of handling simple 2 partition setups, the 3rd partition causes it a problem.
You need to do it manually using fdisk, but first you need to move the 3rd partition to make room to enlarge the 2nd and to do that you will create a 4th, copy the 3rd to the 4th, and then delete the 3rd.
see the "RaspB+ and SD card Extend" thread for more info on how to do it.
Paul
Re: Emoncms SD Image - Full /dev/root partition [SOLVED]
Thanx a lot !!