Search found 355 matches
- Thu May 05, 2022 6:21 am
- Forum: wimlib discussion
- Topic: wimapply with raw disk file (file.img)
- Replies: 3
- Views: 694
Re: wimapply with raw disk file (file.img)
The NTFS-3G image application mode actually works *only* on raw partitions, not on mounted filesystems. The commands you gave only partitioned the disk, and didn't create an NTFS filesystem on it. Are you sure that you created an NTFS filesystem on it? That would require using the mkntfs program fro...
- Sat Apr 30, 2022 6:59 pm
- Forum: wimlib discussion
- Topic: status : 0xc0000225
- Replies: 2
- Views: 409
Re: status : 0xc0000225
This is expected since Microsoft's software doesn't support non-default compression chunk sizes, as described in the documentation.
- Tue Mar 08, 2022 4:27 pm
- Forum: wimlib discussion
- Topic: High Memory Usage in Capture
- Replies: 1
- Views: 834
Re: High Memory Usage in Capture
There isn't any workaround for wimlib using memory proportional to the number of files in the WIM image; this is fairly fundamental to wimlib's design. You could maybe split your files into multiple images.
- Tue Mar 08, 2022 4:26 pm
- Forum: wimlib discussion
- Topic: Error when using wimlib in attempt to create a thumb drive boot disk for Windows 10
- Replies: 2
- Views: 959
Re: Error when using wimlib in attempt to create a thumb drive boot disk for Windows 10
This sounds like an issue with Homebrew and not with wimlib upstream.
- Tue Mar 08, 2022 4:25 pm
- Forum: wimlib discussion
- Topic: [SOLVED] Can't create hard link
- Replies: 3
- Views: 951
Re: [SOLVED] Can't create hard link
Yes, as documented the NTFS-3G image application mode works on a block device containing an NTFS filesystem directly, rather than a mounted filesystem.
- Tue Mar 08, 2022 4:23 pm
- Forum: wimlib discussion
- Topic: UEFI support in mkwinpeimg
- Replies: 2
- Views: 1107
Re: UEFI support in mkwinpeimg
Could you contribute a patch for this?
- Tue Mar 08, 2022 4:22 pm
- Forum: wimlib discussion
- Topic: virustotal warning for wimlib-imagex.exe
- Replies: 2
- Views: 767
Re: virustotal warning for wimlib-imagex.exe
I don't see any issue; all release files match the ones I originally uploaded. For the 1.13.5 release the SHA-256 checksums are: 32fcc9e9b144b7cb1db4c86e104ca78283cdc225e13fe82b273660586aefe323 wimlib-1.13.5.tar.gz 59d0c960e14af4ad18da47aace9802f0eee3b11f647422165ef0b72e12cc529c wimlib-1.13.5-window...
- Sun Feb 06, 2022 10:11 pm
- Forum: wimlib discussion
- Topic: Build error with updated libxml2 (statically linked)
- Replies: 1
- Views: 863
Re: Build error with updated libxml2 (statically linked)
> I use MinGW-w64 (MSYS2) to rebuild Wimlib 1.13.5 statically from source, as explained at the end of README.WINDOWS.
Note that the directions are for Cygwin, not MSYS2. You're pretty much on your own here, but if you can provide a patch that fixes it I'd be glad to apply it.
Note that the directions are for Cygwin, not MSYS2. You're pretty much on your own here, but if you can provide a patch that fixes it I'd be glad to apply it.
- Fri Jan 21, 2022 11:02 pm
- Forum: wimlib discussion
- Topic: UPDATE command
- Replies: 2
- Views: 1202
Re: UPDATE command
Update commands currently don't accept wildcards.
- Fri Jan 21, 2022 1:40 am
- Forum: wimlib discussion
- Topic: Change the index boot
- Replies: 1
- Views: 1102
Re: Change the index boot
You can't directly renumber images with wimlib-imagex, but you can achieve this by exporting the images one by one, since the images will get added to the destination WIM sequentially. For example: for index in 6 5 12 4 9 1 2 10 7 3 8 11; do wimexport src.wim $index dst.wim done wimoptimize dst.wim