does minepeon have raspi-config? how do i expand the root fs?
I am not sure if it re-sizes or not. If not this will do it.
sudo fdisk /dev/mmcblk0
In fdisk,
Press p to print the partition table, take note of the number in the
Start column of the row starting /dev/mmcblk0p2′
Press d to delete a partition then enter 2′ to choose the second partition
Press n to create a new partition, all the default options are fine:
Choose primary partition type
Partition number 2
The starting block should be same number you took note of in step 1 (It should be the default number so press Enter)
The default ending block should be the last available block on the SD card, this will vary depending on what size SD card you have (Press Enter)
4. Press w to write the new partition table and return to the bash prompt
Reboot now to force the kernel to recognize the new partition table.
sudo reboot