From 08c5623a1c7885ad54221af7f8ebd881c7d57023 Mon Sep 17 00:00:00 2001 From: Tk-Glitch Date: Thu, 11 Mar 2021 15:28:01 +0100 Subject: [PATCH] readme: anbox-support: Make sure /dev/binderfs exists through /etc/tmpfiles.d Thanks to Saancreed for pointing it out! --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18d87cd..7de5696 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,11 @@ sudo mkdir /dev/binderfs sudo mount -t binder binder /dev/binderfs ``` -To make this persistent, you can add the following to your `/etc/fstab` : +To make this persistent, you can create `/etc/tmpfiles.d/anbox.conf` with the following content : +``` +d! /dev/binderfs 0755 root root +``` +After which you can add the following to your `/etc/fstab` : ``` binder /dev/binderfs binder nofail 0 0 ```