You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 10, 2021. It is now read-only.
For example, on the Raspberry Pi, you'll need the kiosk user to be part of the video and input groups. You may also need to update the permissions and group ownership on /dev/vchiq if running on Nerves since it doesn't yet do that by default.
about this description, how can I set permissions for /dev/vchiq
The text was updated successfully, but these errors were encountered:
That depends on how you actually start the kiosk app and if your elixir application runs as root (that is the case when running under Nerves) or not.
Basically you should create user and group for your kiosk process - let's assume these would be user kiosk and groupkiosk (user kiosk has group kiosk as it's primary group)
Than you need to do chgrp kiosk /dev/vchiq and chmod 770 /dev/vchiq
If your elixir app is running as root, you can do it in the start method of your Application using :os.cmd
like:
about this description, how can I set permissions for
/dev/vchiq
The text was updated successfully, but these errors were encountered: