Search found 474 matches

by synchronicity
Sat Aug 13, 2016 4:06 am
Forum: wimlib discussion
Topic: Suggestion: merge capture and append into functionally identical commands
Replies: 12
Views: 21155

Re: Suggestion: merge capture and append into functionally identical commands

It may have been a good idea to do this originally. There would still need to be an option to always create a new archive, rather that potentially use an existing archive; it just wouldn't be the default behavior. Changing it now is worth considering, but I am concerned that the change would cause c...
by synchronicity
Fri Aug 12, 2016 2:49 am
Forum: wimlib discussion
Topic: Only apply metadata
Replies: 2
Views: 5947

Re: Only apply metadata

I'm not sure I understand your problem and how your proposed feature relates to it. Are you saying that the wimapply process is being killed before it has finished? If so, that isn't the fault of wimapply. You need to ensure that it is allowed to run to completion. The details of exactly what it doe...
by synchronicity
Sat Aug 06, 2016 2:04 am
Forum: wimlib discussion
Topic: wimlib can't handle case sensitive names on Windows 10
Replies: 7
Views: 12763

Re: wimlib can't handle case sensitive names on Windows 10

Yes, but it seems that obcaseinsensitive=0 is not guaranteed by installation of LXSS, so I think the functionality wouldn't be used often. I am not sure anyone has ever tested wimlib with objcaseinsensitive=0. Currently, I expect that capture will work as expected but apply will not. The extraction ...
by synchronicity
Sat Aug 06, 2016 12:58 am
Forum: wimlib discussion
Topic: wimlib can't handle case sensitive names on Windows 10
Replies: 7
Views: 12763

Re: wimlib can't handle case sensitive names on Windows 10

If such files can only be read by a Linux binary, then it's not realistic to make the Windows version of wimlib handle them. It would have to do something very convoluted like spawn a Linux binary and communicate with it using an IPC protocol. And that would need to happen for both capture and apply...
by synchronicity
Wed Jul 27, 2016 10:07 pm
Forum: wimlib discussion
Topic: Decrease fragmentation when using ntfs-3G
Replies: 9
Views: 14111

Re: Decrease fragmentation when using ntfs-3G

It's the other way around. ntfsfallocate is another example of an application which uses libntfs-3g and the underlying ntfs_attr_truncate_solid() function and cluster allocator. Technically, I think ntfsfallocate wouldn't encounter this fragmentation problem because it only allows processing one fil...
by synchronicity
Wed Jul 27, 2016 3:31 pm
Forum: wimlib discussion
Topic: Filesizes differ for every build with dsim/wimlib-imagex
Replies: 2
Views: 6342

Re: Filesizes differ for every build with dsim/wimlib-imagex

One possibility is that the image's metadata resource compresses to a slightly different size each time because the timestamps are different. There could be other differences introduced while the image is mounted as well. There are no differences introduced by 'wimoptimize' itself since that process...
by synchronicity
Mon Jul 25, 2016 8:18 pm
Forum: wimlib discussion
Topic: Decrease fragmentation when using ntfs-3G
Replies: 9
Views: 14111

Re: Decrease fragmentation when using ntfs-3G

I did some tests with applying a Windows 7 image to an NTFS volume (~40000 files and 5 GB of data; volume size ~15 GB). In the case of nondirectory files, I found that wimlib is correctly requesting that NTFS-3G preallocate clusters. Before writing anything to a file stream, wimlib calls ntfs_attr_t...
by synchronicity
Wed Jul 20, 2016 3:39 pm
Forum: wimlib discussion
Topic: Decrease fragmentation when using ntfs-3G
Replies: 9
Views: 14111

Re: Decrease fragmentation when using ntfs-3G

Okay. Is there any specific way I can reproduce this problem? When I tried, there was little fragmentation.
by synchronicity
Sun Jul 10, 2016 4:50 am
Forum: wimlib discussion
Topic: Decrease fragmentation when using ntfs-3G
Replies: 9
Views: 14111

Re: Decrease fragmentation when using ntfs-3G

Hi,

Do you know whether the fragmented files you observed were compressed with NTFS compression?
by synchronicity
Fri Jul 01, 2016 3:32 am
Forum: wimlib discussion
Topic: use progress in c#
Replies: 1
Views: 5288

Re: use progress in c#

I can't help much with C#, but it should be possible to use the progress callbacks. Look for examples of implementing a callback function (callable from unmanaged code) in C#.