adb Read only及刪除資料夾相關問題

2021-07-14 22:05:57 字數 510 閱讀 9001

解決方案

首先adb remount

adb shell後,

將system 和lib資料夾的讀寫模式改掉, chmod 777/system

再試一次就可以了

刪除檔案相關操作

tools>adb remount   //重新磁碟掛載

tools>adb shell      //進入shell

#su                        //超級使用者

#cd system/sd/data //進入系統內指定資料夾 

#ls //列表顯示當前資料夾內容 

#rm -rf *** //刪除名字為***的資料夾及其裡面的所有檔案

補充:-r遞迴刪除   -f不在提示

#rm *** //刪除檔案*** 

#rmdir *** //刪除***的資料夾

Windows forfiles 刪除歷史檔案

forfiles是windows自帶的乙個批量刪除命令,對於時間的判斷是通過檔案自身的修改日期屬性進行判斷,使用它來對歷史檔案進行判斷刪除是個不錯的選擇。forfiles p path m searchmask s c command d p path 指定路徑,當然目錄可以用 m searchma...

windows 刪除 iml idea等配置檔案

使用windows 命令 del idea s f q del iml f s 刪除 idea 資料夾 刪除iml 附錄 del命令使用 d code demo help del 刪除乙個或數個檔案。del p f s q a attributes names erase p f s q a att...

oracle oralce刪除表及恢復刪除的表

在oracle中,也有乙個 站,即通過普通的drop table table name命令並不會將表徹底的刪除,只會將表的所有資訊遷移到 站進行儲存,沒有真正的刪除釋放空間。刪除帶約束的表 drop table table name cascade constraints 如果想徹底的刪除表釋放空間...