How to use crontab in Android?

后端 未结 4 803
你的背包
你的背包 2020-12-13 06:59

I can\'t find answer to my question: Is it possible to run crontab to reboot Android using busybox (or other means)

Tried to run crontab, a

4条回答
  •  死守一世寂寞
    2020-12-13 07:45

    if you get error "read only file system", you need to remount the /system as read-write:

    mount -o rw,remount /dev/stl12 /system
    

    When done, remount it as read-only:

    mount -o ro,remount /dev/stl12 /system
    

提交回复
热议问题