wok-6.x annotate fusecloop/description.txt @ rev 17591
syslinux/isohybrib.exe: add --md5, --undo
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Feb 10 08:53:27 2015 +0100 (2015-02-10) |
parents | 860ce5da84ab |
children | f937073af512 |
rev | line source |
---|---|
pascal@11996 | 1 Fusecloop is FUSE mounter for compressed loop images. |
pascal@11996 | 2 These images can be found on Knoppix and Knoppix like CD's such as DSL. |
pascal@11996 | 3 |
pascal@11996 | 4 About SliTaz patch : |
pascal@11996 | 5 |
pascal@11996 | 6 1- Add transparent support for accelerated knoppix, V0, V1 and V2 (current) |
pascal@11996 | 7 format. |
pascal@11996 | 8 |
pascal@17526 | 9 2- Add new V3 format to build huge cloop images. |
pascal@17526 | 10 * The index is compressed and uses 32 bits lengths instead of 64 bits offsets. |
pascal@17526 | 11 * The index is moved to the file end. The cloop creation tool holds the index |
pascal@17526 | 12 in memory instead of the datas. This reduces memory needs by 5000. |
pascal@17526 | 13 $ genisoimage -R myDVD/ | create_compressed_fs 131072 > myDVD.cloop |
pascal@11996 | 14 |
pascal@11996 | 15 3- Any format cloop can be converted to V2 format for knoppix compatibility. |
pascal@17526 | 16 $ extract_compressed_fs myDVD.cloop --convert-to-v2 > myDVDinV2.cloop |
pascal@17526 | 17 |
pascal@17526 | 18 create_compressed_fs and extract_compressed_fs are available here: |
pascal@17526 | 19 http://cook.slitaz.org/cooker.cgi?files=cloop-utils |