14 votos

¿Comando para instalar la aplicación desde el teléfono?

Me gustaría SSH en mi teléfono, descargar un APK, e instalarlo de forma remota. Hay algún comando disponible en el teléfono que me permita hacer esto?

EG:

wget localhost/file.apk 
android_install file.apk

Necesito automatizar una instalación, ya que acabo de borrar accidentalmente mi tarjeta SD y todo lo que había en ella :(

12voto

Chahk Puntos 15796

En el shell adb o en el emulador de terminal (y muy probablemente a través de SSH) puedes utilizar el pm para instalar aplicaciones. El comando es:

pm install /sdcard/app1.apk

Los siguientes son los interruptores de pm :

usage: pm [list|path|install|uninstall]
       pm list packages [-f] [-d] [-e] [-u] [FILTER]
       pm list permission-groups
       pm list permissions [-g] [-f] [-d] [-u] [GROUP]
       pm list instrumentation [-f] [TARGET-PACKAGE]
       pm list features
       pm list libraries
       pm path PACKAGE
       pm install [-l] [-r] [-t] [-i INSTALLER_PACKAGE_NAME] [-s] [-f] PATH
       pm uninstall [-k] PACKAGE
       pm clear PACKAGE
       pm enable PACKAGE_OR_COMPONENT
       pm disable PACKAGE_OR_COMPONENT
       pm setInstallLocation [0/auto] [1/internal] [2/external]

The list packages command prints all packages, optionally only
those whose package name contains the text in FILTER.  Options:
  -f: see their associated file.
  -d: filter to include disbled packages.
  -e: filter to include enabled packages.
  -u: also include uninstalled packages.

The list permission-groups command prints all known
permission groups.

The list permissions command prints all known
permissions, optionally only those in GROUP.  Options:
  -g: organize by group.
  -f: print all information.
  -s: short summary.
  -d: only list dangerous permissions.
  -u: list only the permissions users will see.

The list instrumentation command prints all instrumentations,
or only those that target a specified package.  Options:
  -f: see their associated file.

The list features command prints all features of the system.

The path command prints the path to the .apk of a package.

The install command installs a package to the system.  Options:
  -l: install the package with FORWARD_LOCK.
  -r: reinstall an exisiting app, keeping its data.
  -t: allow test .apks to be installed.
  -i: specify the installer package name.
  -s: install package on sdcard.
  -f: install package on internal flash.

The uninstall command removes a package from the system. Options:
  -k: keep the data and cache directories around.
after the package removal.

The clear command deletes all data associated with a package.

The enable and disable commands change the enabled state of
a given package or component (written as "package/class").

The getInstallLocation command gets the current install location
  0 [auto]: Let system decide the best location
  1 [internal]: Install on internal device storage
  2 [external]: Install on external media

The setInstallLocation command changes the default install location
  0 [auto]: Let system decide the best location
  1 [internal]: Install on internal device storage
  2 [external]: Install on external media

Por ejemplo, puedes forzar que la aplicación se instale directamente en el almacenamiento externo (estilo Froyo/Gingerbread).

P.D. El wget debería estar disponible a través de BusyBox en CM7. Si no es así, siempre se puede instalar a través de Android Market .

6voto

Chris Roberts Puntos 7543

Te sugiero que conectes el teléfono a un pc con el sdk (o al menos adb) instalado y en modo de depuración. Después de esto, escribe un script que recorra tus apps y las instale vía adb, por ejemplo adb install x:\path\to\app1.apk .

2voto

mehellra Puntos 11

¡Estoy utilizando el mismo método y sí SSH es genial! Pero parece que cuando SSH a Android se obtiene un shell diferente de sh por lo que si se pone sh delante del comando debe trabajar.

He aquí un ejemplo: sh /system/bin/pm install app1.apk

PreguntAndroid.com

PreguntAndroid es una comunidad de usuarios de Android en la que puedes resolver tus problemas y dudas.
Puedes consultar las preguntas de otros usuarios, hacer tus propias preguntas o resolver las de los demás.

Powered by:

X