View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000174 | WoR Imager | Raspberry Pi 4 (ARM64) | public | 2021-12-08 23:37 | 2022-02-16 18:50 |
Reporter | PA3ADN | Assigned To | Mario | ||
Priority | high | Severity | major | Reproducibility | always |
Status | closed | Resolution | unable to reproduce | ||
Product Version | 2.2.2 | ||||
Summary | 0000174: WoR stuck on Creating the partitions | ||||
Description | As mentioned before (https://www.worproject.ml/bugtracker/view.php?id=171) but closed for the wrong reason as firewall cant be the cause as i don't have one ! I have exactly the same problem "WoR stuck on Creating the partitions" when i start building the installation on a SSD Card from Western Digital 1TB (WD Blue) A month or more ago i installed it on a 500 GB SSD Card from Western Digital (WD Blue) without a problem. (The one i am on now!). Note. Install with WoR-flasher gives no problem with the 1TB SSD connected on the Raspberry Pi. | ||||
Additional Information | |||||
Tags | No tags attached. | ||||
I said "anti-virus", not "firewall". Can you try running those diskpart commands manually and see if it hangs? |
|
Yes i could if i know which diskpart commands it is executing ? :) |
|
Ooh and i neither have anti-virus software running on that PC, mainly use the win10 environment for WoR otherwise its on WIn8 because about 2 years ago win10 could not run the older Adobe software anymore ! |
|
You can find them in the logs (starting from the clean command).
Windows 10 has Defender installed. It shouldn't cause such issues, but you could try disabling it just in case. |
|
Windows Defender was off :) Before i try some things this is the wnd part of the log: ------ start log Microsoft DiskPart version 10.0.19041.964 Copyright (C) Microsoft Corporation. Disk 4 is now the selected disk. Partition 1 is now the selected partition. DiskPart successfully deleted the selected partition. Leaving DiskPart... 2021-12-07 20:15:19.3761 [debug] Exit code: 0 But i noticed it saying a few lines above " 2021-12-07 22:04:56.5053 [error] The process cannot access the file 'diskpart.script' because it is being used by another process." |
|
Okay noticed now that the file in use error comes after i close the window ! Then at 22:04:55 i closed the window ! Just re-run WoR v2.2.2 and last is : debug] Launch diskpart.exe with the following arguments: /s "C:\WoR_Release_2.2.2\temp\diskpart.script" |
|
Yeah, you can ignore that error. |
|
select disk 5 DISKPART> select disk 5 ... i thought it was stuck here though after a few minutes ... 100 percent completed So all steps performed well when i typed them ! drive P:WindowsA created. |
|
Try running all the commands:
...and then the format ones. In the log you've posted, the imager attempted to partition disk 4, but in diskpart you've specified disk 5. Is it the same drive? |
|
Yes disk 4 is the same as the disk 5 the 1TB Western Digital WD Blue. |
|
Microsoft DiskPart version 10.0.19041.964 Copyright (C) Microsoft Corporation. DISKPART> select disk 5 Disk 5 is now the selected disk. DISKPART> clean DiskPart succeeded in cleaning the disk. DISKPART> convert gpt DiskPart successfully converted the selected disk to GPT format. DISKPART> select disk 5 Disk 5 is now the selected disk. DISKPART> create partition primary size=128 DiskPart succeeded in creating the specified partition. DISKPART> format fs=fat32 quick label=BOOT 100 percent completed DiskPart successfully formatted the volume. DISKPART> assign letter=Q DiskPart successfully assigned the drive letter or mount point. DISKPART> create partition msr size=16 DiskPart succeeded in creating the specified partition. DISKPART> create partition primary DiskPart succeeded in creating the specified partition. DISKPART> format fs=ntfs quick label=Windows 100 percent completed DiskPart successfully formatted the volume. DISKPART> assign letter=P DiskPart successfully assigned the drive letter or mount point. DISKPART> The "DISKPART> convert gpt" line creates an extra 1st partition , so at the end are 4 partitions created. But it does step for step all the instructions correct ! The format of the Windows partitioon (1TB) takes about 2 1/2 minute . |
|
So the imager works fine on your SanDisk drive but not on the WD one? |
|
Yes indeed , on the SanDisk it finished okay but on the Western Digital it halts at "Creating the partitions". |
|
Can you also try putting the commands in a .txt file and then running
(To delete that additional partition).
No. |
|
Okay did the following
==== Results ==== C:\wor-test>diskpart /s "wor-drivetest.txt" Microsoft DiskPart version 10.0.19041.964 Copyright (C) Microsoft Corporation. Disk 5 is now the selected disk. DiskPart succeeded in cleaning the disk. DiskPart successfully converted the selected disk to GPT format. The specified partition is not valid. There is no partition selected. ====== MANUAL C:\wor-test>diskpart Microsoft DiskPart version 10.0.19041.964 Copyright (C) Microsoft Corporation. DISKPART> select disk 5 Disk 5 is now the selected disk. DISKPART> clean DiskPart succeeded in cleaning the disk. DISKPART> convert gpt DiskPart successfully converted the selected disk to GPT format. DISKPART> select partition 1 Partition 1 is now the selected partition. DISKPART> delete partition override DiskPart successfully deleted the selected partition. DISKPART> exit Leaving DiskPart... C:\wor-test> ===== broken into running 2 files C:\wor-test>diskpart /s "wor-drivetest1.txt" Microsoft DiskPart version 10.0.19041.964 Copyright (C) Microsoft Corporation. Disk 5 is now the selected disk. DiskPart succeeded in cleaning the disk. DiskPart successfully converted the selected disk to GPT format. Leaving DiskPart... C:\wor-test>diskpart /s "wor-drivetest2.txt" Microsoft DiskPart version 10.0.19041.964 Copyright (C) Microsoft Corporation. Disk 5 is now the selected disk. Partition 1 is now the selected partition. DiskPart successfully deleted the selected partition. DiskPart succeeded in creating the specified partition. 100 percent completed DiskPart successfully formatted the volume. DiskPart successfully assigned the drive letter or mount point. DiskPart succeeded in creating the specified partition. DiskPart succeeded in creating the specified partition. 100 percent completed DiskPart successfully formatted the volume. DiskPart successfully assigned the drive letter or mount point. Leaving DiskPart... C:\wor-test> ===== added 2nd line select drive 5 before selecting partition C:\wor-test>diskpart /s "wor-drivetest3.txt" Microsoft DiskPart version 10.0.19041.964 Copyright (C) Microsoft Corporation. Disk 5 is now the selected disk. DiskPart succeeded in cleaning the disk. DiskPart successfully converted the selected disk to GPT format. Disk 5 is now the selected disk. Partition 1 is now the selected partition. DiskPart successfully deleted the selected partition. DiskPart succeeded in creating the specified partition. 100 percent completed DiskPart successfully formatted the volume. DiskPart successfully assigned the drive letter or mount point. DiskPart succeeded in creating the specified partition. DiskPart succeeded in creating the specified partition. 100 percent completed DiskPart successfully formatted the volume. DiskPart successfully assigned the drive letter or mount point. Leaving DiskPart... C:\wor-test> ========= FILES === wor-drivetest.txt select disk 5 === wor-drivetest1.txt select disk 5 === wor-drivetest2.txt select disk 5 === wor-drivetest3.txt select disk 5 |
|
ooh i saw a version 2.2.3 so gave it go right away... but still the same !! |
|
Please let me know if you resolve this. I'm having the same issue. Worked great on my MicroSD, but fails creating partitions on my JOIOT 250GB Portable External SSD (appears as JMicron Tech SCSI disk) |
|
Ooh correction it now works with imager version 2.2.3 ! |
|
Well then. I'm already on 2.2.3. I don't think I have a USB 3.0 port though. Shouldn't it just go slower? |
|
No it should go faster :) |
|
There was no change in 2.2.3 to potentially fix / workaround this issue. So if it works fine now, it was likely a hardware or software issue on your side. |
|
Date Modified | Username | Field | Change |
---|---|---|---|
2021-12-08 23:37 | PA3ADN | New Issue | |
2021-12-10 20:57 | Mario | Note Added: 0000307 | |
2021-12-10 20:57 | Mario | Note Edited: 0000307 | |
2021-12-11 09:18 | PA3ADN | Note Added: 0000308 | |
2021-12-11 09:26 | PA3ADN | Note Added: 0000309 | |
2021-12-11 13:19 | Mario | Note Added: 0000310 | |
2021-12-11 13:21 | Mario | Note Edited: 0000310 | |
2021-12-11 17:27 | PA3ADN | Note Added: 0000311 | |
2021-12-11 18:32 | PA3ADN | Note Added: 0000312 | |
2021-12-11 19:34 | Mario | Note Added: 0000313 | |
2021-12-12 01:49 | PA3ADN | Note Added: 0000314 | |
2021-12-12 20:48 | Mario | Note Added: 0000315 | |
2021-12-12 20:50 | Mario | Note Edited: 0000315 | |
2021-12-12 20:50 | Mario | Note Edited: 0000315 | |
2021-12-13 18:39 | PA3ADN | Note Added: 0000316 | |
2021-12-13 21:21 | PA3ADN | Note Added: 0000317 | |
2021-12-13 21:21 | PA3ADN | File Added: drives 4 and 5.jpg | |
2021-12-14 14:45 | Mario | Note Added: 0000318 | |
2021-12-14 15:18 | PA3ADN | Note Added: 0000319 | |
2021-12-14 15:59 | Mario | Note Added: 0000320 | |
2021-12-14 15:59 | Mario | Note Edited: 0000320 | |
2021-12-14 15:59 | Mario | Note Edited: 0000320 | |
2021-12-14 16:00 | Mario | Note Edited: 0000320 | |
2021-12-14 16:00 | Mario | Note Edited: 0000320 | |
2021-12-14 17:07 | PA3ADN | Note Added: 0000321 | |
2022-01-17 22:00 | PA3ADN | Note Added: 0000326 | |
2022-01-24 17:01 | ryny24 | Note Added: 0000327 | |
2022-01-24 19:42 | PA3ADN | Note Added: 0000328 | |
2022-01-24 22:17 | ryny24 | Note Added: 0000329 | |
2022-01-25 14:35 | PA3ADN | Note Added: 0000330 | |
2022-01-26 15:48 | Mario | Note Added: 0000331 | |
2022-02-16 18:50 | Mario | Assigned To | => Mario |
2022-02-16 18:50 | Mario | Status | new => closed |
2022-02-16 18:50 | Mario | Resolution | open => unable to reproduce |