linux:
adb shell ps |grep netease
杀进程:
adb shell kill [PID] //杀死进程
C:Userschenquan>adb shell ps
USER PID PPID VSIZE RSS WCHAN PC NAME
root 1 0 428 240 c01c0a90 08054ac6 S /init
root 2 0 0 0 c013a8a6 00000000 S kthreadd
root 3 2 0 0 c0128d84 00000000 S ksoftirqd/0
root 5 2 0 0 c0136fc0 00000000 S kworker/u:0
adb server重启失败解决:
adb kill-server //停止adb服务
netstat -ano | findstr "5037" // 查找占用端口号5037的连接
杀掉所有占用 5307port 的19608进程:
taskkill /F /PID 19608
再重启adb server
adb start-server //开启adb服务