On 30 January 2014 04:50, Anil Singhar anil.singhar@linaro.org wrote:
Does anyone know how to increase the disk size on Foundation Model?
For some reason, the network connectivity to the foundation model (via ssh localhost) doesn't work reliably. So my earlier attempts to mount my host computer's drive and get things done doesn't work reliably either. Now I am stuck with the initial 8GB or so hard disk on the foundation model which is insufficient for any meaningful work.
Hi Anil,
You should be able to run gparted on the filesystem image directly. That allows you to resize partitions inside the filesystem image (if there is free space left in the partition table)
If you need to grow the file itself, you can do something like
cat <old-file> /dev/zero | dd of=<new-file> count=16384 bs=1m
to make a copy of your old file padded to 16 GB.
Regards, Ard.