我在我的设备上将tcpdump复制到/ system / xbin。
如何删除它?当我尝试:
adb shell rm /system/xbin
我明白了:
rm failed for /system/xbin/tcpdump, Read-only file system
答案 0 :(得分:1)
我不得不做
adb root
adb remount
那么rm是可能的
答案 1 :(得分:0)
有两种方法:
adb root
adb remount
adb shell rm /system/xbin/tcpdump
或
adb shell
su
mount -o remount,rw /system
adb shell rm /system/xbin/tcpdump