我一直在尝试为 android 制作一个 shell 脚本,该脚本会删除某些文件以稍微强化设备以抵御攻击。我认为该脚本已在运行 froyo 的 ubuntu 上的 android 模拟器上运行。当我尝试在运行 4.2 的 Windows 机器上运行它时,它会在底部显示错误。我检查了所有目录并且它们存在。我正在使用 adb 运行它。
echo ANDROID
echo HARDENING STARTED
#removing files in the /system/xbin directory
mount -o rw,remount /dev/block/mdblock0 /system
rm /system/xbin/tcpdump
rm /system/xbin/su
#removing files in the /system/bin directory
rm /system/bin/bootanimation
rm /system/bin/dumpstate
rm /system/bin/ping
rm /system/bin/ping6
mount -o ro,remount /dev/block/mdblock0 /system
echo ANDROID
echo HARDENING COMPLETE
带回这个错误..我不知道发生了什么。
ANDROID
HARDENING STARTED
mount:No such file or directory
, No such file or directorytcpdump
, No such file or directorysu
, No such file or directoryootanimation
, No such file or directoryumpstate
, No such file or directorying
, No such file or directorying6
mount:No such file or directory
ANDROID
HARDENING COMPLETE
请帮忙
瑞安