Menu

#49 Warn user about iso / zip creation failing on FAT32

open
5
2012-02-22
2012-02-14
Ryan
No

The maximum file size on FAT32 is 4GB. If you try to create a recovery iso / zip larger than 4GB, the operation fails.

Warn the user when we expect iso / zip creation to exceed 4GB.

Discussion

  • Steven Shiau

    Steven Shiau - 2012-02-22

    The difficult thing is, how can we tell the size of the image will be larger than 4 GB.
    It's not easy to estimate the size before compressing.
    Do you have any good suggestion?
    Thanks in advance.

    Steven.

     
  • Steven Shiau

    Steven Shiau - 2012-02-22
    • assigned_to: nobody --> steven_shiau
     
  • Ryan

    Ryan - 2012-02-22

    As far as I'm aware an iso file isn't compressed, so we can just sum the images files and the clonezilla boot files and warn the user that they could exceed 4gb.

    The iso already warns when it will be over 4.7gb (won't fit on a dvd), so we change that warning to include if we are copying the iso to a FAT32 partition.

    The zip is much the same. If the user chooses default options, the image will already be compressed with gzip, and so we can use the same process as iso file size estimation as I don't think zip will compress much more than gzip.

    What do you think?

     
  • Steven Shiau

    Steven Shiau - 2012-03-01

    So you did not mean to estimate the iso/zip file _before_ it's created, instead you meant to warn users that _after_ it's created?

    Steven.