-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Write image to usb with dd #435
Comments
I think it might be necessary to write to the physical rather than logical drive. That would be However, writing to either sort of device on Windows seems to require rather different settings than I'll continue to tinker with it, but don't expect a rapid fix. Or any fix at all. |
@rmyorston |
I tried the suggestion but: dd if=Dos6.22.img of=\.\PHYSICALDRIVE2 So if i understood you right i have to wait if there (maybe) will be a solution. Thank you for your help. P.S.: dd for windows from http://www.chrysocome.net/dd works but i hoped i could use busybox because it is better supported |
A common use of 'dd' is to copy boot images to removable media. This didn't work on Windows because opening a physical drive failed with the default flags used by 'dd'. If the output file is a physical drive remove incompatible flags. Writing to a physical drive requires elevated privileges and the drive must be offline. Adds 80 bytes. (GitHub issue #435)
I've made a minimal fix to
The
The default block size is 512 bytes, which is far too small. I used Note, the path for the physical drive starts with two backslashes. Prerelease binaries are available (PRE-5444 or above). |
I can't get dd to write a image file (ex. Dos6.22.img) to a usb stick (f:) I am using Win11. Any ideas?
I tried:
dd if=Dos6.22.img of=f:
dd: can't open 'f:': No such file or directory
or
dd if=Dos6.22.img of=\.\f:
dd: can't open '\.\f:': Permission denied
dd if=Dos6.22.img of=f:
dd: can't open 'f:': Is a directory
Regards
The text was updated successfully, but these errors were encountered: