Burning Xbox 360 Games Xgd2
admin 6/7/2019
well ive written this script to help burning xbox 360 backups but am having trouble
Question (I've just ordered the stuff to mod my Xbox 360 two days ago and I'm still finding all the information I need): do you often find you have to reburn games, or are games fine burned once?
#!/bin/sh -f
echo 'This script will help you burn Xbox 360 games with no hassle'
echo 'This script requires growisofs to as a prerequisite'
echo ' 1 = XGD2 and 2 = XGD3'
echo 'Usage: burning.sh <1/2> <gameisoname> <dvddrive> <speed> '
if $0 -eq 1
then
growisofs -use-the-force-luke=dao -use-the-force-luke=break:1913760 -dvd-compat -speed=$3 -Z /dev/$2=$1
fi
if $0 -eq 2
then
truncate --size=8547991552 $1
growisofs -use-the-force-luke=dao -use-the-force-luke=break:2086912 -dvd-compat -speed=$3 -Z /dev/$2=$2
fi
echo 'Burning Complete'
echo 'This script will help you burn Xbox 360 games with no hassle'
echo 'This script requires growisofs to as a prerequisite'
echo ' 1 = XGD2 and 2 = XGD3'
echo 'Usage: burning.sh <1/2> <gameisoname> <dvddrive> <speed> '
if $0 -eq 1
then
growisofs -use-the-force-luke=dao -use-the-force-luke=break:1913760 -dvd-compat -speed=$3 -Z /dev/$2=$1
fi
if $0 -eq 2
then
truncate --size=8547991552 $1
growisofs -use-the-force-luke=dao -use-the-force-luke=break:2086912 -dvd-compat -speed=$3 -Z /dev/$2=$2
fi
echo 'Burning Complete'