無法使用 WoeUSB 建立可啟動 USB

無法使用 WoeUSB 建立可啟動 USB

當我嘗試使用 WoeUSB 在 Linux Ubuntu 18.04 上建立 Windows 10 可啟動 USB 時,出現以下錯誤:

Installation failed!
Exit code: 256
Log:
WoeUSB v@@WOEUSB_VERSION@@
==============================
Mounting source filesystem...
Error: File "/media/woeusb_source_1548324574_1839/sources/install.wim" 
in source image has exceed the FAT32 Filesystem 4GiB Single File Size 
Limitation and cannot be installed.  You must specify a different -- 
target-filesystem.
Refer: https://github.com/slacka/WoeUSB/wiki/Limitations#fat32- 
filesystem-4gib-single-file-size-limitation for more info.
Unmounting and removing "/media/woeusb_source_1548324574_1839"...
You may now safely detach the target device

我的 USB 儲存空間為 8GB。

答案1

按照微軟論壇WoeUSB 的解釋如上所示,FAT32 裝置上單一檔案的最大大小為 4 GiB。那個檔案系統使用 32 位元欄位來儲存檔案大小(以位元組為單位),並且 2^32 位元組 = 4 GiB(實際上,真正的限制是 4 GiB 減去 1 個位元組,即 4 294 967 295 位元組,因為您可以擁有零長度的檔案)。 {感謝超級用戶海報CVn解釋原因)。

您的檔案「install.wim」大於 4 GiB,因此無法寫入 FAT32 裝置。遺憾的是,微軟不斷在 Windows 安裝程式中投入越來越多的內容,而且它的大小已經超出了 FAT32 所允許的範圍。

解決方案:使用允許檔案 >4 GiB 的 NTFS 格式化 USB您建立了 LiveUSB。插入USB後右鍵單擊,選擇格式化,然後在類型欄位中選擇 NTFS

當 USB 隨身碟格式化後,打開 WoeUSB,它將允許您建立一個 LiveUSB帶有巨大的 Windows .WIM 文件

相關內容