Wednesday 18 April 2012

Unlock free samsung galaxy tab /no flash /no patch /no freeze /no bricked /solution

SAMSUNG P1 - P1000 - P1000L - GALAXY TAB


Currently there are 2 ways to free the Galaxy tab:
- With a hex editor, a complicated
- And adb shell, easier and safer

We will do the simplest way by adb shell
- Have root privileges
- Download and install busybox
- Go to market and download any file explorer (star, explorer, etc)
- SD Memory Card inserted (formatted in fat 32 from the same phone)
- Before you begin to unlock the computer with the file browser to do a full backup of the folder / EFS in SD and PC
- Enable debug mode (setting or adjustment => Applications => Development => USB debbugging)

Begin the process of release:
- CMD or command windows:
adb shell

- Wrote the following:
su
cd /sdcard
echo "this takes about 45 seconds"
if [ ! -f /sdcard/nv_data.bin.orig ]; then
echo "copying file to /sdcard"
cp /efs/nv_data.bin /sdcard/nv_data.bin.orig
fi
echo -en \\x00 > out0
dd if=nv_data.bin.orig of=out1 bs=1 count=1578089
dd if=nv_data.bin.orig of=out2 bs=1 skip=1578090 count=163
dd if=nv_data.bin.orig of=out3 bs=1 skip=1578254
cat out1 out0 out2 out0 out3 > nv_data.bin.unlocked
rm out0 out1 out2 out3
rm /efs/nv_data.bin
cp nv_data.bin.unlocked /efs/nv_data.bin
rm /efs/nv_data.bin.md5
reboot

- Wait a few seconds, the phone will reboot and go
- Phone Unlocked

---------------------------------------
Note:
- If there is an error when unlocking the phone, copy the backup of the / EFS to its original state via file browser, restart!
- Also available for download from the market this solution as an application, one click one unlock galaxy tab!...hehe!!





No comments:

Post a Comment