X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=README;h=0f15a36fe4279c2a034d4c1dda5bcbef899d1ecf;hp=26d7e61940b852eb952388810441a3c964914935;hb=ac4e9d3b603a8abcc99965ed99576fd0721f8ccb;hpb=9ec9035ce7e154dae21acad0328374c5d3b26e2f diff --git a/README b/README index 26d7e619..0f15a36f 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ WIMLIB -This is wimlib version 1.0.0 (September 2012). wimlib can be used to read, +This is wimlib version 1.0.3 (September 2012). wimlib can be used to read, write, and mount files in the Windows Imaging Format (WIM files). These files are normally created by using the `imagex.exe' utility on Windows, but this library provides a free implementation of imagex for UNIX-based @@ -75,6 +75,33 @@ details. image of Windows PE that can be put on a CD or USB drive, or published on a server for PXE booting. See the main page `doc/mkwinpeiso.1' for more details. + COMPRESSION RATIO + +wimlib can create XPRESS or LZX compressed WIM archives. As of wimlib v1.0.3, +the XPRESS compression ratio is slightly better than that provided by +Microsoft's software, while the LZX compression ratio is approaching that of +Microsoft's software but is not quite there yet. Running time is as good as or +better than Microsoft's software. + +The following tables compare the compression ratio and performance for creating +a compressed Windows PE image (disk usage of about 524 MB, uncompressed WIM size +361 MB): + + Table 1. WIM size + + XPRESS Compression LZX Compression + wimlib imagex (v1.0.2): 145,283,871 bytes 139,288,293 bytes + wimlib imagex (v1.0.3): 139,288,293 bytes 131,379,869 bytes + Microsoft imagex.exe: 140,406,981 bytes 127,249,176 bytes + + Table 2. Time to create WIM + + XPRESS Compression LZX Compression + wimlib imagex (v1.0.2): 18 sec 49 sec + wimlib imagex (v1.0.3): 19 sec 30 sec + Microsoft imagex.exe: 25 sec 89 sec + + DEPENDENCIES * libxml2 @@ -184,8 +211,11 @@ wimlib has mostly been developed and tested on x86_64 (64-bit) GNU/Linux. It has been tested on x86 (32-bit) GNU/Linux occasionally. -I have tested a previous version of wimlib on FreeBSD and it worked, but this is -not well tested, especially with the more recent versions of this software. +wimlib may work on FreeBSD. However, this is not well tested. If you do not +have libntfs-3g 2011-4-12 or later available, you must configure with +--without-ntfs-3g. Also, GNU coreutils is needed to run the test suite. Before +mounting a WIM you need to load the POSIX message queue module (run `kldload +mqueuefs'). wimlib should work on big endian machines but it has not been tested.