Search found 473 matches

by synchronicity
Fri Jun 17, 2016 4:18 pm
Forum: wimlib discussion
Topic: Decrease fragmentation when using ntfs-3G
Replies: 9
Views: 14042

Re: Decrease fragmentation when using ntfs-3G

Yes, this has been reported before and I am planning to investigate it sometime. The current code is actually already intended to preallocate the space for each file, but perhaps it doesn't work as intended.
by synchronicity
Wed Jun 08, 2016 2:17 am
Forum: wimlib discussion
Topic: [ExclusionException] not working
Replies: 10
Views: 19759

Re: [ExclusionException] not working

I should add, however, that the default capture configuration file is documented [1], so you could manually create a new configuration file based on that file.

[1] https://wimlib.net/man1/wimlib-imagex-capture.html
by synchronicity
Mon Jun 06, 2016 6:18 pm
Forum: wimlib discussion
Topic: [ExclusionException] not working
Replies: 10
Views: 19759

Re: [ExclusionException] not working

Neither of those features is currently implemented.
by synchronicity
Wed Jun 01, 2016 2:48 am
Forum: wimlib discussion
Topic: wimlib 1.9.2 released
Replies: 1
Views: 4916

wimlib 1.9.2 released

wimlib version 1.9.2 has been released. There are a few small changes: On UNIX, wimlib can now overwrite readonly files when extracting. On Windows, fixed a bug where wimlib could leave a null DACL (a.k.a. "no NTFS permissions") set on some existing directories after extraction. On Windows...
by synchronicity
Sat May 28, 2016 8:52 pm
Forum: wimlib discussion
Topic: [ExclusionException] not working
Replies: 10
Views: 19759

Re: [ExclusionException] not working

Yes, just use "source list" mode. For the example you gave, create sources.txt containing:

Code: Select all

c:\Users\test\AppData\Local\test \Users\test\AppData\Local\test
Then do:

Code: Select all

wimcapture sources.txt out.wim --source-list
See the documentation for details.
by synchronicity
Fri May 27, 2016 3:57 am
Forum: wimlib discussion
Topic: [ExclusionException] not working
Replies: 10
Views: 19759

Re: [ExclusionException] not working

Files underneath an excluded directory are not scanned. Therefore, in your example, the path \Users\test\AppData\Local\test is never seen by wimlib at all. Currently, the use case for [ExclusionException] is to name specific file(s) which should be included despite matching a wildcard pattern. This ...
by synchronicity
Sun May 22, 2016 2:54 pm
Forum: wimlib discussion
Topic: Failed to open iconv from UTF-8 to UTF-16LE: Invalid argument
Replies: 3
Views: 9388

Re: Failed to open iconv from UTF-8 to UTF-16LE: Invalid argument

Include the UTF-16 iconv module in your boot environment:

/usr/lib/gconv/gconv-modules
/usr/lib/gconv/UTF-16.so
by synchronicity
Sun May 15, 2016 2:42 am
Forum: wimlib discussion
Topic: Applying a wim archive captured with --source-list and broken NTFS permissions
Replies: 5
Views: 10478

Re: Applying a wim archive captured with --source-list and broken NTFS permissions

Good news --- I found a workaround for the Windows bug that does not require changing directories' security descriptors. This entirely avoids the problem you've described, as wimlib now will never change the existing security descriptors (except when it actually needs to set a security descriptor gi...
by synchronicity
Sat May 14, 2016 12:34 am
Forum: wimlib discussion
Topic: Applying a wim archive captured with --source-list and broken NTFS permissions
Replies: 5
Views: 10478

Re: Applying a wim archive captured with --source-list and broken NTFS permissions

Hi, With regards to capturing the image: when a file or directory is added to a WIM image, wimlib creates any prerequisite ancestor directories with default metadata, including "no security descriptor". In your example, this applied to the root directory of the image. Since wimlib cannot, ...
by synchronicity
Sat Apr 30, 2016 12:45 am
Forum: wimlib discussion
Topic: process stays at 99% sometime and write a lot to disk
Replies: 11
Views: 19393

Re: process stays at 99% sometime and write a lot to disk

Can you share the exact command line you used to archive the directory containing only a .7z file? And you definitely think the checksum pass is occurring, i.e. it appears that wimlib is reading through the full .7z file before the "Archiving file data" progress starts increasing?