On Tue, May 1, 2012 at 3:27 PM, Cadu <cadu.unisal1@gmail.com> wrote:

Hi guys!

I'm having problems of space when i try add more packages in live image.

I'm using the command:
livecd-iso-to-disk-oc --noverify --home-size-mb 2048 --overlay-size-mb 2048 ${ISO} ${LOOP}




getdisk DEV = /dev/loop2 Unable to fit live image + overlay on available space on USB stick + Size of live image: 2986 + Overlay size: 2048 + Home overlay size: 2048 --------------------------- = Requested: 7082 - Available: 7075 --------------------------- = To fit, free or decrease requested size total by: 7 Cleaning up to exit...





My question is: Which parameter can set the total space of my 8G pendrive? Why the space is limited in 7075?


Thanks a lot!

--
[]'s
Carlos Eduardo

Seja a mudança que você deseja ver no mundo.

"Mahatma Gandhi"

The available disc space is calculated at these lines in the current version of livecd-iso-to-disk script,
http://git.fedorahosted.org/git/?p=livecd;a=blob;f=tools/livecd-iso-to-disk.sh;h=7df49c2b8383eda8b7e049650765f8f25735621a;hb=HEAD#l980
using the df command.

(The livecd-iso-to-disk-oc name and output indicate that you are using an older version, but the process is similar.)
Other files on the drive and the specific filesystem formatting type and configuration will affect the results of df.

        --Fred