You need to convert it to a non-solid wim first (eg, "wimoptimize --compress lzx install.wim")
For what it's worth, the DVD version of Windows 11 already contains a WIM file in the suitable format.
Search found 30 matches
- Mon Mar 18, 2024 7:50 am
- Forum: wimlib discussion
- Topic: windows11 install.wim
- Replies: 1
- Views: 71280
- Wed Feb 07, 2024 10:13 am
- Forum: wimlib discussion
- Topic: Win10 Install.wim?
- Replies: 2
- Views: 28527
Re: Win10 Install.wim?
As an aside, you might consider formatting your USB drive as exFAT. It maintains the simple permission-less kind of file system like FAT32 is, but there's no file size limit.
exFAT isn't usable on very old versions of Windows, or very old Linux, very old Mac, but everything from the past good few ...
exFAT isn't usable on very old versions of Windows, or very old Linux, very old Mac, but everything from the past good few ...
- Thu May 19, 2022 3:54 pm
- Forum: wimlib discussion
- Topic: wimapply with raw disk file (file.img)
- Replies: 3
- Views: 18176
Re: wimapply with raw disk file (file.img)
You might want to use so that wimcapture can actually capture the partition itself rather than the whole disk (which includes the partition label)
Code: Select all
losetup -fP file.img
- Wed Mar 09, 2022 8:34 am
- Forum: wimlib discussion
- Topic: [SOLVED] Can't create hard link
- Replies: 3
- Views: 16397
Re: [SOLVED] Can't create hard link
A path like "/run/media/m/BEE6-6CB5/" suggests to me that the USB drive is formatted with FAT, which cannot support hard links in the first place.
- Wed Jul 28, 2021 7:58 am
- Forum: wimlib discussion
- Topic: Error : filename is not valid UTF-8
- Replies: 3
- Views: 19085
Re: Error : filename is not valid UTF-8
Edit: in principle filenames with a well-defined encoding other than UTF-8, say ISO-8859-1, could be mapped to UTF-16 as well. Almost everyone uses UTF-8 now though, so there hasn't been a need to support this.
It should be possible, even, to have a flag that interprets all file names as ISO ...
- Sun Nov 08, 2020 8:53 pm
- Forum: wimlib discussion
- Topic: Error reading data from WIM file: Invalid argument
- Replies: 1
- Views: 11819
Re: Error reading data from WIM file: Invalid argument
I tried copying it to a non-FAT32 FS
Did you save it to FAT32 first? There's a file size limit that's smaller than the file you are supposed to be working with in the first place...
Just about any other file system doesn't have this same limit. exFAT, NTFS, HFS+ would all work for saving this ...
Did you save it to FAT32 first? There's a file size limit that's smaller than the file you are supposed to be working with in the first place...
Just about any other file system doesn't have this same limit. exFAT, NTFS, HFS+ would all work for saving this ...
- Wed May 27, 2020 8:50 am
- Forum: wimlib discussion
- Topic: Wim To ESD & ESD To Wim is always heavy for me ?
- Replies: 3
- Views: 16310
Re: Wim To ESD & ESD To Wim is always heavy for me ?
Sorry for the delay & thanks for the quick & prompt response! I realize that the process is very heavy. Is it possible to break the whole procedure in small parts ?
wimlib does this by default by splitting off into as many compression threads as you have CPU cores. If you aren't using "--threads ...
- Sun Feb 16, 2020 3:08 am
- Forum: wimlib discussion
- Topic: Questions add file in wim
- Replies: 1
- Views: 13876
Re: Questions add file in wim
You can use wimupdate like so:
Code: Select all
wimupdate [wimfile] [ImageIndex] --command="add Adeeb.txt /Windows/System32/Adeeb.txt"
- Tue Jun 04, 2019 6:30 pm
- Forum: wimlib discussion
- Topic: Deploy Linux Mint via MDT
- Replies: 1
- Views: 14238
Re: Deploy Linux Mint via MDT
I assume you mean this: https://en.wikipedia.org/wiki/Microsoft ... nt_Toolkit
I doubt it will be possible to provision Linux operating systems with it. wimlib could certainly be used as part of Linux deployment, but you're going to want to base it from a Linux system in the first place.
I doubt it will be possible to provision Linux operating systems with it. wimlib could certainly be used as part of Linux deployment, but you're going to want to base it from a Linux system in the first place.
- Tue Apr 02, 2019 2:39 am
- Forum: wimlib discussion
- Topic: What does the --check option gain?
- Replies: 1
- Views: 14126
What does the --check option gain?
The wim format and wimlib seem to support some kind of extra integrity information (hashing the compressed contents of the wim file?), but I don't really know when this might be desirable. wimverify is still able to assure that a wim file is not corrupted even if a file doesn't have this information ...