如何从/ system / xbin Android中删除文件

时间:2014-04-29 15:51:01

标签: android system adb

我在我的设备上将tcpdump复制到/ system / xbin。

如何删除它?当我尝试:

adb shell rm /system/xbin

我明白了:

rm failed for /system/xbin/tcpdump, Read-only file system

2 个答案:

答案 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