That's a way to do it yes. However :
| QUOTE |
| Would i have to unlock or lock the drive in order for it to work? |
Between step 2 and 3 you need to :
2.1) get eeprom from xbox (use evox or ConfigMagic)
2.2) Use liveinfo to generate passwd for new 80Gb drive
2.3) Use unlockx to lock the drive for the xbox.
Otherwise your box will not boot.
Instead of cloning the hdd would it be the same, or would it still be ok if I just copied the files to from the xbox hdd to the new hdd?
The new HD doesn't have a partition-layout and filesystem, so you can't just copy files to the new HD. Cloning it you get everything (HD header, filesystem and files) in one go.
Ok my next problem is to do with cloning.
This may sound stupid but.
The source drive is 80GB.
The destination drive is 10gb.
I want to clone the disk but not my games (as it will be more than 10gb)
can I somehow clone it but not clone the games so it will fit on the 10gb hdd.
will deleting the games on my 80gb hdd and then cloning it work?
is there an easier way?
Using linux this would be a breeze! Any linux distro would do...
Assuming you have the source drive on your primary master and the destination drive on your secondary master you would have to execute the commands :
| CODE |
dd if=/dev/hda of=/dev/hdc count=1 bs=512k dd if=/dev/hda of=/dev/hdc skip=1 count=1500 bs=512k dd if=/dev/hda of=/dev/hdc skip=1501 count=1500 bs=512k dd if=/dev/hda of=/dev/hdc skip=3001 count=1500 bs=512k dd if=/dev/hda of=/dev/hdc skip=4501 count=1000 bs=512k dd if=/dev/hda of=/dev/hdc skip=5501 count=9790 bs=512k
|
Only problem is i dont have linux.
Is there any windows program I could possibly use.?
And would I have to move my games out of my 80GB hdd or could the program somehow just exclude the F: drive or the games.
Much help would be appreciated.
Thnx.