三星i9000权限获取

使用SuperOneClick工具
点击root按钮,运行root

 Killing ADB Server...
* server not running *
OK
Starting ADB Server...
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
OK
Waiting for device...
OK
Pushing rageagainstthecage...
290 KB/s (0 bytes in 585731.001s)
OK
chmod rageagainstthecage...
OK
Running rageagainstthecage...
ROOTED
Getting mount path...
/dev/stl12
OK
Remounting system with read-write access...
OK
Pushing su...
failed to copy 'su' to '/system/bin/su': No space left on device
OK
Pushing superuser.apk...
failed to copy 'superuser.apk' to '/system/app/superuser.apk': No space left on device
OK
chmod su...
Unable to chmod /system/bin/su: No such file or directory
OK
Remounting system with read-only access...
OK

结果:test su的时候failed 原因是: No space left on device 

1)运行SuperOneClick程序,点ROOT,等待结束,出现
“No space left on device”这个问题(注意这时不要重启机子或拨掉数据线(如果动了,还按原来步骤做到这))。关闭SuperOneClick程序。
2)使用cmd命令,进入SuperOneClick下的adb文件夹,执行adb命令,运行结果如下
Android Debug Bridge version xxx
        ...        
         devices                       - list all connected devices
         connect <host>:<port>         - connect to a device via TCP/IP
         disconnect <host>:<port>      - disconnect from a TCP/IP device
        
        device commands:
          adb push <local> <remote>    - copy file/dir to device
          adb pull <remote> [<local>]  - copy file/dir from device
          adb sync [ <directory> ]     - copy host->device only if changed
                                         (see 'adb help all')
          adb shell                    - run remote shell interactively
          adb shell <command>          - run remote shell command
          adb emu <command>            - run emulator console command
          adb logcat [ <filter-spec> ] - View device log
3)D:\xxx\adb shell
#
这个#号很关键,它决定你是不是已经有ROOT权限,如果没有这个#号,或是别的$,等,要重新按照上面的步骤做,这里有人好像不明白, 我给大家解释一下,其实我们用SuperOneClick程序ROOT后,有一个提示:
Running rageagainstthecage...
ROOTED
这个已经说明 我们已经有ROOT权限了,而不成功的原因是"SU"无法写入,No space left on device,系统没有多余的空间,已经满了。导致ROOT失败。
4)下面我们紧接着#号后输入:
# mount -o remount rw /system
# cd /system/app
#ls (显示当前目录下的子目录或者是文件)
# rm xxx.apk(xxx.apk就是你要删除的程序)(注:这里做的这几步的原因就是释放一些空间,给SU写入)
5)做完以后,重启SuperOneClick.exe,点ROOT,等待。。。弹出成功对话框,OK!到此为止,ROOT成功!
重启,手机应用会多一个授权管理,你在装一个R.E管理器或者系统程序卸载器,打开程序,手机会提示你是否授予ROOT权限,那你就可以为所欲为……

猜你喜欢

转载自firedragonpzy.iteye.com/blog/1436768