CODE
mkdir /mnt/harddisk
mkdir /mnt/stick
Now we will connect the filestructure of these devices with the directories we made, and that way we can access them
CODE
mount /dev/hda1 /mnt/harddisk
mount /dev/sda /mnt/stick
Ok now we can copy stuff from the harddrive to the USB stick. Before you start up Xebian, you should actually copy the savegames to a folder in the root of your C: drive while you are in windows. Pick a simple name for the directory, like save. Don't copy the RAR file, but unpack it
Ok next step, we will go to the directory we created before, using the command CD, change directory, and we will look what is in that directy, using the ls command
CODE
cd /mnt/save
ls
Ok, now you should see on of two things. 1 directory named UDATA, or 1 or 2 directories with a name consisting mainly of numbers. If you only see the UDATA directory, you have to change directoy once more
CODE
cd/UDATA
ls
We're nearly there. Next step is to copy the directory or directories to the USB stick. Write down the names of the directory(or directories). I'll be using the names 21585554 and 5553000c from Splintercell. As far as I know that's the only one using two savegames. If you use another one, just do one copy(cp) command, and replace the name with the one you just wrote down.
CODE
cp -R 21585554 /mnt/stick
cp -R 5553000c /mnt/stick
Now give the computer some time. It might start spewing some lines after about 30 seconds, but that's a good thing.
Now there's just one more step: Unmounting the USB device, before we can remove it and stick it in the XBOX
CODE
umount /mnt/stick
Hope this helps out...