Not working here for me either.I tried but it isn't working for me on windows 8 64 bit. I don't remember the error now but it was like recovery.tar not found
bin\tar --group=1 -H ustar -c recovery.img > recovery.tar
How do you do this excatly? Sorry such a noob question.I had the same error that several others had when trying this out (out of gid_t range). I fixed it by editing Runme.bat and adding --group=1 to the tar line so that it looks like this:
Great tool, once editing this it did exactly what I needed! Thanks!Code:bin\tar --group=1 -H ustar -c recovery.img > recovery.tar
bin\tar -H ustar -c recovery.img > recovery.tar
bin\tar -cf recovery.tar recovery.img
Edit Runme.bat file and change tar command ustar to gnu, like thisI got error:
bin/tar: value 4294967295 out of gid_t range 0..2097151
bin/tar: Exiting with failure status due to previous errors
Any solution?
C:\Users\Shadi\Desktop\root\create odin tar>Runme.bat
bin/tar: value 4294967295 out of gid_t range 0..2097151
bin/tar: Exiting with failure status due to previous errors
Thank me at xda [user=4514188]@cabloomi[/user]
Thank me at xda [user=4514188]@cabloomi[/user]
Thank me at xda [user=4514188]@cabloomi[/user]
Thank me at xda [user=4514188]@cabloomi[/user]
Thank me at xda [user=4514188]@cabloomi[/user]
Thank me at xda [user=4514188]@cabloomi[/user]
Press any key to continue . . .
Here I have updated the package that @cabloomi so nicely put together for us.Ok so i made this tool for personal use, but i saw a lot of people wanted this, so here it is
Step 1. Download it from ATTACHMENTS
Step 2. Decompress it to a folder
Step 3. Download your recovery for your SAMSUNG device from here
http://www.clockworkmod.com/rommanager/
Step 4. Rename it to "recovery.img" then move it to the folder you decompressed the tool at earlier
Step 5. Open the "Runme" file and theres your recovery.tar.md5 File ready to flash with odin
please if you used my tool give me some credit and relink to this page as the tool you used to make the file
Rate this thread and press the thanks button
Script is invalid due to `tar` command
FIX :
1-right click "Runme.bat" and choose "edit" from menu.
2-convert second line which istoCode:bin\tar -H ustar -c recovery.img > recovery.tar3-save file and close notepad.Code:bin\tar -cf recovery.tar recovery.img
4-put recovery.img file in the folder and run "Runme.bat"
make sure to first remove the existent recovery.tar.md5 from the folder (I don't think it matters but prompt wouldn't come up for overwrite).
@cabloomi good effort and nice tool, saved me personally the trouble of rebooting every time I have to create a .tar.md5 from a .img, I don't know why you used the tar command in this way though, `man tar` clearly states command `tar -cf archive.tar foo` to create .tar files. Please clear that up for me. Same thing with `md5sum`, if you look up man for it, the command is different.
EDIT: I attached a file with the script fixed.
Edit Runme.bat file and change tar command ustar to gnu, like this
change it toCode:bin\tar -H ustar -c recovery.img > recovery.tar
save file and run it.Code:bin\tar -H gnu -c recovery.img > recovery.tar
It worked for me and installed CWM img file like a charm....
Thank you sir you made my dayI had the same error that several others had when trying this out (out of gid_t range). I fixed it by editing Runme.bat and adding --group=1 to the tar line so that it looks like this:
Great tool, once editing this it did exactly what I needed! Thanks!Code:bin\tar --group=1 -H ustar -c recovery.img > recovery.tar
Changing the .bat file to reflect the following allowed it to work for me on Windows 7 x64Even me with the same problem, exiting with failure due to previous errors in windows 8 x64