Search found 474 matches

by synchronicity
Mon Feb 22, 2016 4:11 pm
Forum: wimlib discussion
Topic: parser error : PCDATA invalid Char value 31 with cyrillic xml
Replies: 3
Views: 14046

Re: parser error : PCDATA invalid Char value 31 with cyrillic xml

I don't think it's realistic to expect wimlib to process incorrect XML documents. wimlib uses a standards compliant XML parser. You should find out why these characters were inserted in the first place, so you can solve the problem at its source. For its part, wimlib should always create well-formed...
by synchronicity
Mon Feb 22, 2016 3:17 pm
Forum: wimlib discussion
Topic: parser error : PCDATA invalid Char value 31 with cyrillic xml
Replies: 3
Views: 14046

Re: parser error : PCDATA invalid Char value 31 with cyrillic xml

Sounds like the WIM file's XML document contains characters that are forbidden by the XML standard. Where did this file come from?
by synchronicity
Mon Feb 15, 2016 4:18 pm
Forum: wimlib discussion
Topic: Is it possiable to capture FAT/FAT32 filesystem with file attributes?
Replies: 8
Views: 14373

Re: Is it possiable to capture FAT/FAT32 filesystem with file attributes?

Good to see you found the code useful. However, there are a few reasons why I am a little hesitant to merge it into the master branch. * The proposed code would live alongside the "generic" UNIX capture/apply code, but really would be specific not only to Linux but to a specific filesystem...
by synchronicity
Sun Feb 14, 2016 3:18 pm
Forum: wimlib discussion
Topic: Currently used files backup on Linux. Code 47.
Replies: 2
Views: 7396

Re: Currently used files backup on Linux. Code 47.

Creating archives from directory trees which are being concurrently modified is not supported. There are many race conditions which can occur in such scenarios.
by synchronicity
Fri Feb 12, 2016 3:08 am
Forum: wimlib discussion
Topic: Best practises for applying an image to existing volume
Replies: 20
Views: 58486

Re: Best practises for applying an image to existing volume

Yes it should just work from Linux. It's just Windows 8.1 and later that has special handling of this new ACE type.
by synchronicity
Fri Feb 12, 2016 2:31 am
Forum: wimlib discussion
Topic: Best practises for applying an image to existing volume
Replies: 20
Views: 58486

Re: Best practises for applying an image to existing volume

I don't know. It might be necessary to test different types of apps, including paid apps, as you've suggested. It certainly would be quite hostile to users, on Microsoft's part, if your apps would inevitably break after a simple backup and restore. Regardless, I'm not planning to update wimlib to au...
by synchronicity
Sat Feb 06, 2016 6:01 pm
Forum: wimlib discussion
Topic: Best practises for applying an image to existing volume
Replies: 20
Views: 58486

Re: Best practises for applying an image to existing volume

I believe this will be harder to work around than I initially thought. The real problem is extracting data to nondirectory files. Obviously, to extract any data at all to a nondirectory file, wimlib needs write access to it. Normally, if there is an existing nondirectory file at a location at which ...
by synchronicity
Sat Feb 06, 2016 1:14 am
Forum: wimlib discussion
Topic: WimLib is crashing on big Files
Replies: 12
Views: 20947

Re: WimLib is crashing on big Files

Thanks. I am not sure why a network filesystem on Windows would be unreliable as such, but it makes sense that data would need to be paged from the DLL at the very end of the process, when the output shows "100% done". Before then it is running the same code over and over again, for severa...
by synchronicity
Fri Feb 05, 2016 12:02 am
Forum: wimlib discussion
Topic: WimLib is crashing on big Files
Replies: 12
Views: 20947

Re: WimLib is crashing on big Files

I'm very suspicious of the error codes you are seeing: C0000006 = STATUS_IN_PAGE_ERROR C00000C4 = STATUS_UNEXPECTED_NETWORK_ERROR Is either the source WIM file or wimlib-imagex located on a network filesystem, or any sort of device which might be producing I/O errors? You should also try running the...
by synchronicity
Thu Feb 04, 2016 6:20 am
Forum: wimlib discussion
Topic: WimLib is crashing on big Files
Replies: 12
Views: 20947

Re: WimLib is crashing on big Files

Thanks. Unfortunately I don't have much chance of tracking down this problem if you can't provide a smaller example that reproduces it. The crash isn't even in wimlib but rather in ntdll, so it could be memory corruption or pretty much anything else that occurred prior to the point of the crash... a...