Adb shell进入目标设备的Linux Shell环境
$ ps 列出所有进程
$ ps|grep xxx 刷选xxx相关进程
杀死进程
kill -s 9 PID
Kill -9 PID @link
Kill进程
重新挂载:
mount -o remount,rw rootfs /system/
复制/删除:
复制 cp /system/xbin/sudo /system/xbin/su 格式:cp 源文件 目标文件
删除 rm -f /system/xbin/su 或 rm /system/xbin/su
S1、删除文件夹以及文件夹中的所有文件命令:
rm -rf 目录名字
其中:
-r:向下递归删除
-f:直接强行删除,且没有任何提示
S2、删除文件命令
rm -f 文件名
将会强行删除文件,且无提示@link
移动 mv /sbin/su /sbin/aa @link
mv /system/xbin/daemonsu /system/xbin/usonmead
cp /system/xbin/usonmead /system/xbin/daemonsu
Am/pm:
am kill com.kingroot.RushRoot @link link2
pm uninstall com.kingroot.RushRoot 卸载
pm install –f filePath 安装
pm uninstall eu.chainfire.supersu @link
pm block com.xxx.xxx(包名) 冻结 ← 适用于 Android 4.4.x
pm hide com.xxx.xxx(包名) 隐藏 ← 适用于 Android 5.0 以上版本
权限/属性:
表达式 chmod 权限 目标文件
例子:
chmod 0777 /system/bin/.ext
chmod 06755 /system/bin/.ext/.su
chmod 06755 /system/xbin/su
chmod 0755 /system/xbin/daemonsu
chmod 0755 /system/etc/install-recovery.sh
chmod 0755 /system/etc/init.d/99SuperSUDaemon
chmod 0644 /system/etc/.installed_su_daemon
chmod 0644 /system/app/Superuser.apk
打印:
echo "\"It is a test\"" @link