電話からアプリをインストールするコマンド?


14

電話にSSHで接続し、APKをダウンロードして、リモートでインストールしたいのですが。電話で使用できるコマンドがありますか?

例えば:

wget localhost/file.apk 
android_install file.apk

インストールを自動化する必要があります。SDカードとそのすべてを誤って消去してしまったためです。:(


回答:


12

adbシェルまたはターミナルエミュレーター(およびおそらくSSH経由)では、pmユーティリティを使用してアプリをインストールできます。コマンドは次のとおりです。

pm install /sdcard/app1.apk

のスイッチは次のとおりです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

たとえば、アプリを強制的に外部ストレージ(Froyo / Gingerbreadスタイル)に直接インストールできます。

PS wgetユーティリティはCM7のBusyBoxを介して利用可能である必要があります。そうでない場合は、Android Marketからいつでもインストールできます。


これはまさに私が探しているものです。pmに存在します/system/bin/pmが、残念ながらSSH経由で(ルートとしても)何もしません。pmコマンドを実行しても出力は生成されません。私が間違っていることはありますか?ターミナルエミュレータで動作しますが、何らかの理由でSSH経由ではありません。(
Naftuli Kay

CM6のadbからrootとしてPMを動作させました。それを超えて、私は確信していません。
ブラム

1
ADBシェルよりもSSHを好む理由は何ですか?
チャク

1
@Chahk:adbUSBケーブル経由でのみ動作しますか?また、SSHはワイヤレスネットワーク経由でも可能です。また、sshどこにでもありますが、adbインストールする必要があります。
imz-イヴァンザカリヤシェフ

エラー:java.lang.SecurityException:許可の拒否:pmコマンドからのrunInstallCreateは、ユーザー-1として実行するように要求しますが、ユーザー11から呼び出しています。これにはandroid.permission.INTERACT_ACROSS_USERS_FULL

6

sdk(または少なくともadb)がインストールされ、デバッグモードのPCに電話を接続することをお勧めします。この後、アプリを通過し、adbを介してインストールするスクリプトを作成します(例:)adb install x:\path\to\app1.apk


これを行うための電話にはネイティブユーティリティはありませんか?
ナフトゥリケイ

1
いいえ、ほとんどのアプリは.apkファイルを/ data / appにコピーするだけです。すべてのapkをそこにコピーしてから再起動してみてください(これにはrootが必要ですが、yanogenmodタグからはrootであると想定しています)。
オニック

、それは私がSSHでできることですcp * /data/app && reboot
Naftuli Kay

1
cpコマンドは標準のAndroid(つまり非カスタムROM)では利用できないため、Cyanogenを使用していない場合は、catコマンドを(ab)使用する必要がある場合があります。
ライライアン

2
実際、電話にはそのようなコマンドがあります。 pm install /sdcard/app1.apkadb install、adbシェル、ターミナルエミュレータ、およびおそらくSSH経由で実行されます。pmその他のオプションについては、出力をご覧ください。アプリを外部ストレージ(Gingerbreadスタイル)に直接インストールするように強制するスイッチもあります。
チャク

2

私は同じ方法を使用していますが、はいSSHは素晴らしいです!しかし、AndroidにSSHで接続するとshとは異なるシェルが取得されるため、shshをコマンドの前に置くと動作するはずです。

以下に例を示します。 sh /system/bin/pm install app1.apk

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.