2016-05-31 195 views

回答

0

如果系統文件夾設備沒有固定,您不能將任何內容複製到系統或數據分區。

隨着根都在命令提示或Linux殼下面的命令和所有要細:

adb push fileName /data/local/tmp 
    adb shell 
    su 
    mount -o remount, rw /system 
    cp /data/local/tmp/fileName /system/folderOfYourChoise 
    chmod 644 (if its an apk and you want the system to use it as a system app) 
    exit (exits the su shell) 
    exit (exits the adb shell) 
    adb reboot (to apply and see changes on the device) 
+0

Mike,我們在文章之前說過/ system文件夾是隻讀文件系統。 – Master

+0

嘗試過的東西有問題。我發送的列表中的命令是否表示系統是隻讀的?你可以發佈輸出嗎?另外,您正在嘗試使用真實設備還是模擬器,例如Genymotion? –