Instalar apk en segundo plano usando busybox

¿Puedo instalar apk en segundo plano usando busybox en un dispositivo rooteado?

Veo algo así pero no funciona.

process install;
CommandCapture command = new CommandCapture(0, "chmod 777 /data/app");
RootTools.getShell(true).add(command).waitForFinish(); 
CommandCapture command2 = new CommandCapture(0, "chmod 777 /system/xbin/busybox");
RootTools.getShell(true).add(command2).waitForFinish();
install = Runtime.getRuntime().exec("/system/xbin/busybox install " + Environment.getExternalStorageDirectory() + "/Download/" + "xxx.apk /data/app/xxx.apk");

Respuestas a la pregunta(3)

Su respuesta a la pregunta