=====================================
XBOX360 backup'n burn guide for linux users (uxrip360)
=====================================
first of all you need to get "
uxrip360" (http://dwl.xbox-scene.com/xbox360pc/isotools/uxrip360-0.2.tar.bz2)
after that install it by simply doin this (in a terminal)
CODE
tar xzvf uxrip360-0.2.tar.bz2
cd uxrip360-src
make
sudo make install
======================================
1) RIP the game
======================================
works only with supported drives see nfo:
http://www.xbins.org/nfo.php?file=xboxnfo1664.nfouxrip360 can create splitvid images and stores SS/DMI/PFI seperated in a folder
so for ripping a game do:
CODE
sudo uxrip360 -a rip -o /path/to/the/folder/of/the/iso/ -s
"
-s" specifies that you want to have a splitvid image
"
-o" sets the output folder (iso file will be called "final.iso", if you dont wan't it to be final.iso just give -o a name e.g.: "
-o /tmp/GAME.iso"
if your drive is not getting auto-detected (should work in most case's) use the "
-D" flag to specify the device e.g.: "
-D /dev/dvd0"
after about 13-20 minutes rip is complete :-)
======================================
2) Burn a ISO file
======================================
CODE
growisofs -use-the-force-luke=dao -use-the-force-luke=break:1913760 -dvd-compat -speed=2 -Z /dev/dvdrw=/path/to/image.iso
where as "/dev/dvdrw" maybe needs to be replaced with your burning device name (but dvdrw works in most cases if you only have one burner)
======================================
EXTRA FEATURES of UXRIP360
======================================
----------------------------
1) Dump Stealth files
----------------------------
to only Save the stealth files (SS/DMI/PFI) of a disc you can use the following command:
CODE
uxrip360 -a dump-stealth -o /path/for/my/files/
this creates SS.bin DMI.bin PFI.bin the folder specified by "-o"
if your drive is not getting auto-detected (should work in most case's) use the "
-D" flag to specify the device e.g.: "
-D /dev/dvd0"
----------------------------
2) Extract Stealth files from an ISO
----------------------------
CODE
uxrip360 -a xtract-stealth -o /path/to/IMAGE.iso
this extracts SS/DMI/PFI from the image.iso as "extracted-SS.bin", "extracted-DMI.bin", "extracted-PFI.bin"
----------------------------
3) Verify an ISO
----------------------------
CODE
uxrip360 -a verify -o /path/to/IMAGE.iso
this verifys your image agains a few common stealth-checks e.g.: is DMI valid SS valid etc.... BUT remember it does not compare against a trusted online database or so
maybe this help's some one (IMG:
style_emoticons/default/wink.gif) and probably it could be added to the tutorials sectio
This post has been edited by klewan: May 21 2008, 02:05 PM