Custom Anbox installation files & patches, including patched Android OS image file.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

128 lines
5.4 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. # Anbox installation
  2. This repository contains recommended Anbox configuration to run the program as securely as possible.
  3. Many users misconfigure Anbox to run in privileged mode which permits real root access for Android system processes to a Linux system. Configuration in this repository contains proper settings to run Anbox in _unprivileged mode_, thus better protecting your Linux system from possibly malicious Android processes.
  4. Additionally, this repository provides feature-patched Android OS image file for Anbox, and several other improvements.
  5. `PKGBUILD` file is Arch Linux specific file. Otherwise, you can use rest of the files on any Linux distribution.
  6. ## Anbox installation
  7. Anbox installation steps are roughly described in [Installation Steps](installation-steps.md).
  8. ## Anbox files
  9. Many files have originally been provided by [anbox-git AUR package](https://aur.archlinux.org/packages/anbox-git/). However, small changes have been made.
  10. ### Changes and additions
  11. #### # [anbox-bridge.network](anbox_files/anbox-bridge.network) (systemd-networkd file)
  12. - Added `[Network]` entry `ConfigureWithoutCarrier=yes`
  13. - Added IPv4 broadcast address `192.168.250.255` into `[Address]` section
  14. - Removed `IPMasquerade=yes` entry from `[Address]` section. Depending on your network topology, you may want to keep this option. I don't need or use it.
  15. #### # [anbox-container-manager.service](anbox_files/anbox-container-manager.service) (Systemd service file)
  16. - Changed `[Service]` entry `ExecStart=...` from
  17. ```
  18. ExecStart=/usr/bin/anbox container-manager --daemon --privileged --data-path=/var/lib/anbox
  19. ```
  20. to
  21. ```
  22. ExecStart=/usr/bin/anbox container-manager --daemon --data-path=/var/lib/anbox
  23. ```
  24. - Multiple security-related additions
  25. - Added `[Unit]` entries
  26. ```
  27. Wants=lxc.service
  28. After=lxc.service
  29. ```
  30. #### # [anbox-session-manager.service](anbox_files/anbox-session-manager.service) (Systemd service file)
  31. - Added `[Service]` entry `Environment=ANBOX_FORCE_SERVER_SIDE_DECORATION=true`
  32. #### # [subuid](anbox_files/subuid) & [subgid](anbox_files/subgid)
  33. LXC container user and group mapping files `/etc/subuid` and `/etc/subgid` for Android OS container.
  34. #### # anbox-session-manager (shell script)
  35. Simple wrapper script to be added into desktop startup program configuration. This is a simple work around script. If `anbox-session-manager` Systemd service is launched _before_ X11 session, launching the X11 session fails for unknown reasons. This script ensures that X11 session is launched _before_ `anbox-session-manager` Systemd service.
  36. Place into `/usr/local/bin/` folder.
  37. ----------
  38. #### Patch files
  39. - [patch_audio01_timing.patch](anbox_files/patch_audio01_timing.patch) & [patch_audio02_pass-messenger.patch](anbox_files/patch_audio02_pass-messenger.patch)
  40. - Details: [GitHub: Anbox PR #1034 - Implement audio timing](https://github.com/anbox/anbox/pull/1034)
  41. - [patch_bytesize-to-bytesizelong.patch](anbox_files/patch_bytesize-to-bytesizelong.patch)
  42. - Details: [GitHub: Anbox PR #1480 - rpc: use ByteSizeLong from protobuf](https://github.com/anbox/anbox/pull/1480)
  43. - [patch_cm-helpmenu-unhidden.patch](anbox_files/patch_cm-helpmenu-unhidden.patch)
  44. - Details: personal patch to unhide `container-manager` options in Anbox executable help menu
  45. - [patch_cm-privileged-warn.patch](anbox_files/patch_cm-privileged-warn.patch)
  46. - Details: personal patch to add `not recommended` note into `--privileged` parameter description
  47. - [patch_python3.patch](anbox_files/patch_python3.patch)
  48. - Details: [GitHub: Anbox issue - Python 2 is EOL: comment by karuboniru](https://github.com/anbox/anbox/issues/1478#issuecomment-638055086)
  49. - [patch_remove-unknown-opt.patch](anbox_files/patch_remove-unknown-opt.patch)
  50. - Details: personal patch to remove unknown compilation time G++ option
  51. ## Android OS files
  52. Contains Android OS image file with additional patches. Base Android version is `7.1.1_r13`. The compiled image source code is purely based on [Android Open Source Project codebase](https://android.googlesource.com/).
  53. On Arch Linux, you can use [anbox-image AUR package](https://aur.archlinux.org/packages/anbox-image/) as reference to install this custom Android image. Or just simply copy the image into `/var/lib/anbox/`, overriding the original Android OS image file `android.img`.
  54. ### Additional features:
  55. - Server-side decoration support
  56. - Audio timing fix for stream videos
  57. - Default Gallery app no longer pauses video playback when changing focus to another Android application
  58. - Avoid unnecessary Linux kernel warnings by removing unused Android-native features
  59. ----------
  60. ### Patch files
  61. Compiled Android OS image file `android.img` with the following patches applied:
  62. - [patch_audio01_timing.patch](androidOS_files/patch_audio01_timing.patch) & [patch_audio02_pass-messenger.patch](androidOS_files/patch_audio02_pass-messenger.patch)
  63. - Details: as above
  64. - [patch_gallery2_no-activity-checks.patch](androidOS_files/patch_gallery2_no-activity-checks.patch)
  65. - Details: remove video & audio pause functionality from default Android OS system application `com.android.gallery3d` as the pause functionality does not fit into Linux desktop environment when running multiple Android applications simultaneosly.
  66. - [patch_initcgroups.patch](androidOS_files/patch_initcgroups.patch)
  67. - Remove unnecessary cgroups and related mount points from containerized Android OS system. Remove cpusets.
  68. - Both options generate unnecessary Linux main system kernel `dmesg` output and both options fail.