- Osstatus Error 1 Disk Utility
- Disk Utility Could Not Validate Source - Invalid Argument
- Could Not Validate Source 254
It turns out that Disk Utility employs Apple’s ASR utility, stored at /usr/sbin/asr. To learn more you can run ‘asr’ by itself in Terminal. Shows a lot more, I’ll save you from reading that (this man page has even got a History section). Simply restore without an image scan: $ sudo asr -noverify -source source-target target. Disk Utility was unable to create the disk image, so I proceeded to the next option. Copy via a network connection I thought perhaps the user directory could simply be copied over, bypassing the. Could not validate source – corrupt image, it is one of the most critical error issue which is often encountered when Disk Utility is corrupted on Mac. Disk Utility is one of the most amazing feature of Mac machine which is used to repair all kind disk corruption issue on Mac. Launch Disk Utility, select the image, and scan for restore. Too late, but you should have verified you could do the restore before wiping the HD. In the future, I suggest making a bootable backup/clone and verifying it before deleting the original, then restoration is simply restoring the backup/clone. But Disk Utility failed to burn and give me an error: 'Restore Failure Could not validate source - invalid Argument'. After googling the issue, I found that the error is caused by incompatible image file formats.
Fix 'Could not validate source' error when trying to burn ISO file to USB stick.
1. Issue
Osstatus Error 1 Disk Utility
I was trying to burn an ISO image file to my USB stick by Mac OS Disk Utility. But Disk Utility failed to burn and give me an error: 'Restore Failure Could not validate source - invalid Argument'.
After googling the issue, I found that the error is caused by incompatible image file formats. Disk Utility expects Apple Disk Image, including the Universal Disk Image Format (UDIF)
and the New Disk Image Format (NDIF)
, while the format of ISO image file is ISO9660
.
Following is a list of Apple disk image formats, according to man page of hdiutil
command:
Disk Utility Could Not Validate Source - Invalid Argument
Firstly I attempted to convert the ISO file to a UDRW
image file, a kind of UDIF
format.
The result of above line is a dest.img.dmg
file. (My Mac OS X appends .dmg
ending to the output file automatically.)
Then I tried to burn the .img
file using Disk Utility, but the burning still failed with 'Could not validate source' error.
2. Solution
The solution is using Linux dd
command instead of Disk Utility GUI.
Checking the mounted point of USB stick:
The output was something like this:
I assume that the device node of USB stick is: /dev/disk2
.
Unmount it before burning, otherwise dd
command will complain the stick is busy.
Then burn the image file to USB stick using dd
:
Unmount the USB stick after finishing:
Could Not Validate Source 254
I followed the instructions provided by FreeNAS and succeeded in extracting the .xz file using Keka and everything worked in Terminal according to the instructions except when I go to operate the dd command--it just sits there and nothing ever finishes. I tried using Disk Utility to restore the flash drive with the .img file, but Disk Utility says 'Restore Failure Could not validate source - invalid argument' If I try to mount the .img the mounter says it can't be mounted, no mountable file systems. I've tried using a 4 GB flash drive and a 16 GB flash drive with one GUID partition.
Since that method wouldn't work, I decided to try a CD. I downloaded the .iso file and checked the hash to confirm it, everything appears to be fine. Disk Utility will burn the .iso to a CD, but when I put it in my Mac Mini to boot it doesn't work. System Preferences doesn't list it as a bootable CD in the Startup Disk settings. If I try to mount the .iso file to my Mac mini it does mount.
I have tried following FreeNAS's instructions multiple times both on my MacMini and my MacBook Pro (which is x64, but gives me the same issues, even if I try using the x64 version on the MacBook pro to install FreeNAS on it).
In summary, neither the .img or .iso for x86 or x64 will work for me on my MacBook Pro or Macmini using a 4 GB flash drive or a 16 GB flash drive--I've tried every combination more than once. And yes, I've checked the hash on everything to make sure it's uncorrupted.
I've read a couple of posts where people had similar issues, but none of the solutions seemed relevant to my situation. I also tried the IRC, but no one seemed able to help me.
Any help would be extremely appreciated!