「Anbox」の版間の差分

提供: ArchWiki
ナビゲーションに移動 検索に移動
(→‎使用方法: === Installing apps === 以下を追加)
125行目: 125行目:
   
 
$ adb shell
 
$ adb shell
  +
  +
=== Installing apps ===
  +
  +
Unless you picked an image with Houdini, Anbox does not have support for ARM applications. So apps must have a x86_64 architecture.
  +
  +
==== Through adb ====
  +
  +
To install {{ic|''/path/to/app.apk''}}
  +
  +
$ adb install ''/path/to/app.apk''
  +
  +
To get the list of installed applications
  +
  +
$ adb shell pm list packages
  +
  +
Note that output will be similar to {{ic|''package:app.name''}}, where {{ic|''app.name''}} is different from the one displayed in the Anbox container.
  +
  +
To uninstall {{ic|''app.name''}}
  +
  +
$ adb uninstall ''app.name''
  +
  +
If {{ic|''app.name''}} is a system app
  +
  +
$ adb uninstall --user 0 ''app.name''
  +
  +
==== Through apps stores ====
  +
  +
Apps can be easily installed through apps stores. In {{AUR|anbox-image-gapps}} PlayStore is included.
  +
  +
=== Sensor data ===
  +
  +
Via dbus different sensors can be set. Documentation on that can be found at
  +
[https://github.com/anbox/anbox/blob/master/docs/dbus.md dbus.md].
  +
  +
==== Temperature data ====
  +
  +
That is the example from the author (PRs [https://github.com/anbox/anbox/pull/1522 #1522] & [https://github.com/anbox/anbox/pull/1522 #1540]):
  +
  +
$ dbus-send --session --dest=org.anbox --print-reply /org/anbox org.freedesktop.DBus.Properties.Set string:org.anbox.Sensors string:Temperature variant:double:25.1
  +
  +
==== GPS data ====
  +
  +
(introduced by PR [https://github.com/anbox/anbox/pull/1606 #1606])
  +
  +
GPS sensor data can also be manipulated.
  +
  +
If your PC has a WWAN card, you can use {{Pkg|gpsd}} and the code from the PR to feed Anbox with GPS data. You do not need to have a SIM-Card for GPS.
  +
  +
Otherwise, you can also look at the PR to learn how to feed it fake data with the help of [https://www.nmeagen.org].
  +
  +
=== Root shell ===
  +
  +
With this [https://github.com/anbox/anbox/blob/master/scripts/anbox-shell.sh script] from the Anbox project one can get a root shell inside the Android container.
  +
  +
It is not part of the {{AUR|anbox-git}} package, and it also does not use [[adb]].
  +
  +
== Tips and tricks ==
  +
  +
=== Android developer options ===
  +
  +
Some extra steps need to be done besides unlocking them the same way you do on an android phone.
  +
When installing the [[#Install Android Image|android image]], some modifications to {{ic|products/anbox.xml}} are required:
  +
  +
* {{ic|1=<unavailable-feature name="android.hardware.usb.host" />}} is the reason why they are not available.
  +
* {{ic|1=<feature name="android.software.backup" />}} will be needed too, to avoid a NullPointerException.
  +
  +
(reference: [https://github.com/anbox/anbox/issues/444 Github issue #444])
  +
  +
=== Getting debugging information ===
  +
  +
Obviously, it is helpful to have debugging symbols in the Anbox build. For that, when [[#Install Anbox|compiling Anbox]], add {{ic|1=options=('!strip')}} to the PKGBUILD, as by default they are removed. And, use either {{ic|1=-DCMAKE_BUILD_TYPE=RelWithDebInfo}} or {{ic|1=-DCMAKE_BUILD_TYPE=Debug}} in the cmake call.
  +
  +
But there is more to it! Anbox uses [https://github.com/anbox/anbox/tree/master/external/backward-cpp backward-cpp]. If you do not delete the build files for Anbox, it will print pretty stack traces when crashing, which point out the places in the source code.
  +
  +
Also see the remarks in [[#Install Anbox|Install Anbox]].
  +
  +
== Troubleshooting ==
  +
  +
If you run into issues, take a look at the official Issue Tracker: [https://github.com/anbox/anbox/issues]
  +
  +
=== Old CPUs ===
  +
  +
Anbox requires support for SSE 4.1/4.2 and SSSE 3, because Android wants that too.
  +
Some older CPUs do not provide that, so you probably cannot use Anbox, see:
  +
[https://github.com/anbox/anbox/issues/499#issuecomment-399118684 Anbox Github Issue 499].
  +
  +
=== Old kernels ===
  +
  +
Before the kernel modules were mainlined, they were out of tree modules, which needed to be installed seperately from the kernel (Like it is the case for the nvidia kernel modules). They are not compatible with kernel 5.7 or newer.
  +
  +
It is still possible to use that approach with the {{Pkg|linux-lts}} or other old kernels. The package to install the modules via [[DKMS]] is not available in the AUR anymore, but can be retrieved with {{ic|<nowiki>git clone https://aur.archlinux.org/anbox-modules-dkms</nowiki>}}, or resurected from [https://aur.archlinux.org/cgit/aur.git/commit/?h=anbox-git&id=0c9a9385694e680f5b277ca6f9326ad5d5df7dd3].
  +
  +
=== Secure Boot error ===
  +
  +
If you get this error message:
  +
  +
modprobe: ERROR: could not insert 'ashmem_linux': Operation not permitted
  +
  +
[[Secure Boot]] is likely blocking the module.
  +
You can either disable Secure Boot or sign the ashmem module yourself.
  +
  +
More info can be found in the [https://github.com/anbox/anbox/blob/master/docs/install.md#on-ubuntu-1904-and-later Anbox Github Docs].
  +
  +
== See also ==
  +
  +
* [https://github.com/anbox/anbox Official Anbox Github Repo]
  +
* [https://anbox.io/ Anbox Website]
  +
* [https://mm.gravedo.de/blog/posts/2020-01-21-taking-the-anbox-journey-to-the-next-level Posting by the main Anbox developer]
  +
* [https://brauner.github.io/2019/01/09/android-binderfs.html Explanation about binderfs]

2021年7月6日 (火) 10:50時点における版

関連記事

Anbox は GNU/Linux ディストリビューションで Android を実行するための コンテナベース のソフトウェアです。

Prerequisite

ノート: The dkms modules do not work on kernels ≥5.7 anymore. Follow the instructions below instead. For older kernels see Old kernels.

​ You need to run a kernel which comes with the ashmem and binder modules. They are not part of Arch Linux's default kernel (linux), thus you need to install a kernel which ships these modules. ​ You might also need to configure your bootloader to use a different kernel. ​ You have multiple options: ​

Using Linux-Zen

​ The linux-zen kernel includes the necessary modules. This might be the most comfortable way, as you do not have to compile the kernel (which takes a long time) and will receive updated versions regularly. ​

Building a kernel

​ Alternatively, you can recompile the linux kernel — or other kernel packages (>=5.7) — with the necessary options. Please read Kernel#Compilation and Necessary config options below. ​ You can also build a kernel package that already includes the specific patches from AUR, see AUR search "linux+anbox". ​

Necessary config options

​ Modules can either be compiled into the kernel (y), into modules (m), or not at all (n). Also, not all combinations in the config are possible, and some options will require other options. ​ The config options below will compile ashmem and binder as modules, while the last option specifies that there will be three devices created in the /dev/ directory, when the binder module is loaded. ​

CONFIG_ASHMEM=m 
CONFIG_ANDROID=y
CONFIG_ANDROID_BINDER_IPC=m
CONFIG_ANDROID_BINDERFS=n
CONFIG_ANDROID_BINDER_DEVICES="binder,hwbinder,vndbinder"

​ When building a kernel from the AUR, one can do it with these steps: ​

  1. run makepkg --nobuild, which will download the sources, verify and extract them and run the prepare() function.
  2. edit the .config file (with the dot in the filename), which is located at the base of the kernel directory.
  3. at the end of the prepare() function was probably a command which regenerates the makefiles with information from the config, possibly make olddefconfig. Move that to the build() function, or execute it yourself.
  4. run makepkg --noextract, which will continue from the place where makepkg --nobuild stopped.

config using binderfs

​ Not everybody was happy with the binder module in Linux. To address the issues, binderfs was created. One has to choose between the old and the new way when compiling the kernel. With the options below one will use binderfs instead. ​ With the kernel sources comes also a simple script to set config options. It will not do dependency checks, just like when editing the config by hand. When being in the same directory where the .config file lies, one can execute the following commands: ​

scripts/config --module  CONFIG_ASHMEM
scripts/config --enable  CONFIG_ANDROID
scripts/config --enable  CONFIG_ANDROID_BINDER_IPC
scripts/config --enable  CONFIG_ANDROID_BINDERFS
scripts/config --set-str CONFIG_ANDROID_BINDER_DEVICES ""

​ This script is handy when building a kernel from the AUR, as it is enough to insert these lines at the right place in the PKGBUILD. ​

Booting the new kernel

​ Please refer to the wiki page of your bootloader, to find out, how to boot with the new kernel. Booting into a newer kernel (version) is one of the few occasions when you have to reboot a Linux system. You should do that before starting Anbox.

インストール

anbox-gitAUR, anbox-imageAUR (もしくは Google のアプリや houdini も使いたい場合は anbox-image-gappsAUR), anbox-modules-dkms-gitAUR[リンク切れ: パッケージが存在しません], anbox-bridgeAUR[リンク切れ: パッケージが存在しません] をインストールしてください。

最新の 5.1 カーネルでは anbox-modules-dkms-gitAUR[リンク切れ: パッケージが存在しません] の PKGBUILD にパッチ [1] を適用しないと必要な binder モジュールがコンパイルできません。

以下のサービスを起動有効化してください:

  • anbox-container-manager.service

DKMS モジュールを使うのにコンピュータを再起動したくない場合、手動でロードすることができます:

# modprobe ashmem_linux
# modprobe binder_linux

Network

Via NetworkManager

If you are using NetworkManager you can use it to configure the networking. ​ Execute the following command to create the bridge connection: ​

$ nmcli con add type bridge ifname anbox0 -- connection.id anbox-net ipv4.method shared ipv4.addresses 192.168.250.1/24

  • ifname anbox0 specifies the bridge interface name, in this case anbox0. Do not change this as Anbox will only detect the bridge interface if it is named anbox0.
  • connection.id anbox-net specifies the name of the connection to be anbox-net when it appears in NetworkManager. You can change this if you wish.
  • ipv4.method shared instructs NetworkManager to create a NAT network and route outgoing packets according to the system routing rules. For that, the dnsmasq package is required. dnsmasq does not needs to be configured or be started as systemd service, it will be used behind the scenes by NetworkManager — if it is not available, this step will fail silently. You can leave this and the ipv4.addresses parameter out if you wish to attach the Anbox container directly to a specific network, see Network bridge#With NetworkManager. If you choose this option, you must also change the network configuration of the container in anbox-container-manager.service, see the next bullet point.
  • ipv4.addresses 192.168.250.1/24 specifies the default gateway and subnet of the NAT network. If you wish to change this (e.g. to 192.168.42.1/24) you must also indicate the new subnet to anbox in the anbox-container-manager.service using: --container-network-address=192.168.42.2/24 --container-network-gateway=192.168.42.1

NetworkManager will automatically setup the bridge every reboot so you only need to execute the command once. ​

Via systemd-networkd

​ The package anbox-gitAUR provides configuration files for systemd-networkd in /usr/lib/systemd/network/ to enable networking in anbox. ​ Therefore, you can start/enable systemd-networkd before starting anbox-container-manager.service. ​

Via anbox-bridge script

​ Alternatively you can use the anbox-bridge script used by the project. ​ You must execute anbox-bridge every time before starting anbox-container-manager.service in order to get network working in Anbox. The easiest solution for that is to create a drop-in file for the service. ​

/etc/systemd/system/anbox-container-manager.service.d/enable-anbox-bridge.conf
[Service]
ExecStartPre=/usr/bin/anbox-bridge start
ExecStopPost=/usr/bin/anbox-bridge stop

使用方法

anbox 内でネットワークを使えるようにするため anbox を起動する前に毎回 anbox-bridge を実行してください。

それから、デスクトップランチャーの Other カテゴリから android アプリケーションを実行できます。

adb を使ってデバッグしたい場合、android-tools をインストールしてください。

$ adb shell

Installing apps

Unless you picked an image with Houdini, Anbox does not have support for ARM applications. So apps must have a x86_64 architecture.

Through adb

To install /path/to/app.apk

$ adb install /path/to/app.apk

To get the list of installed applications

$ adb shell pm list packages

Note that output will be similar to package:app.name, where app.name is different from the one displayed in the Anbox container.

To uninstall app.name

$ adb uninstall app.name

If app.name is a system app

$ adb uninstall --user 0 app.name

Through apps stores

Apps can be easily installed through apps stores. In anbox-image-gappsAUR PlayStore is included.

Sensor data

Via dbus different sensors can be set. Documentation on that can be found at dbus.md.

Temperature data

That is the example from the author (PRs #1522 & #1540):

$ dbus-send --session --dest=org.anbox --print-reply /org/anbox org.freedesktop.DBus.Properties.Set string:org.anbox.Sensors string:Temperature variant:double:25.1

GPS data

(introduced by PR #1606)

GPS sensor data can also be manipulated.

If your PC has a WWAN card, you can use gpsd and the code from the PR to feed Anbox with GPS data. You do not need to have a SIM-Card for GPS.

Otherwise, you can also look at the PR to learn how to feed it fake data with the help of [2].

Root shell

With this script from the Anbox project one can get a root shell inside the Android container.

It is not part of the anbox-gitAUR package, and it also does not use adb.

Tips and tricks

Android developer options

Some extra steps need to be done besides unlocking them the same way you do on an android phone. When installing the android image, some modifications to products/anbox.xml are required:

  • <unavailable-feature name="android.hardware.usb.host" /> is the reason why they are not available.
  • <feature name="android.software.backup" /> will be needed too, to avoid a NullPointerException.

(reference: Github issue #444)

Getting debugging information

Obviously, it is helpful to have debugging symbols in the Anbox build. For that, when compiling Anbox, add options=('!strip') to the PKGBUILD, as by default they are removed. And, use either -DCMAKE_BUILD_TYPE=RelWithDebInfo or -DCMAKE_BUILD_TYPE=Debug in the cmake call.

But there is more to it! Anbox uses backward-cpp. If you do not delete the build files for Anbox, it will print pretty stack traces when crashing, which point out the places in the source code.

Also see the remarks in Install Anbox.

Troubleshooting

If you run into issues, take a look at the official Issue Tracker: [3]

Old CPUs

Anbox requires support for SSE 4.1/4.2 and SSSE 3, because Android wants that too. Some older CPUs do not provide that, so you probably cannot use Anbox, see: Anbox Github Issue 499.

Old kernels

Before the kernel modules were mainlined, they were out of tree modules, which needed to be installed seperately from the kernel (Like it is the case for the nvidia kernel modules). They are not compatible with kernel 5.7 or newer.

It is still possible to use that approach with the linux-lts or other old kernels. The package to install the modules via DKMS is not available in the AUR anymore, but can be retrieved with git clone https://aur.archlinux.org/anbox-modules-dkms, or resurected from [4].

Secure Boot error

If you get this error message:

modprobe: ERROR: could not insert 'ashmem_linux': Operation not permitted

Secure Boot is likely blocking the module. You can either disable Secure Boot or sign the ashmem module yourself.

More info can be found in the Anbox Github Docs.

See also