Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

start the first continer instance

./robox -v start 1

./robox -v start 1

       1 is the id, used by session manager and docker container

...

[sys.boot_completed]: [1]  //1 which means start successfully

Step1: You can copy the binaryFiles in the robox code to the some place, then run robox

start the first continer instance

./robox -v start 1

./robox -v start 1

       1 is the id, used by session manager and docker container

Step2: Check the docker instance process and session manager process.

sudo docker ps | grep instance

ps -aux | grep session

step3: Log in the container and confirm whether the robox instance started successfully.

docker exec -it instance2 sh
step5: get android property sys.boot_completed

getprop | grep sys.boot.completed

sys.boot_completed: 1  //1 which means start successfully

...