How to run a app in Jetson nano?

Hi everyone,

I’m working with Jetson Nano and I want to run a application and how do I do that in Jetson nano.

I have done it in raspberry pi using

sudo snap set wpe-webkit-mir-kiosk url=https://google.com

Does this work in Jetson too?

Please let me know if there is any better approach for this

Thank you.

Hi,
We try it on Jetpack 4.6.1 and it looks like certain packages are missing:

$ sudo snap set wpe-webkit-mir-kiosk url=https://google.com
error: snap "wpe-webkit-mir-kiosk" not found

Hi,

That command alone won’t work we need to follow these steps

  • sudo apt install mesa-utils

  • Add dtoverlay=vc4-kms-v3d in /boot/firmware/config.txt.

  • sudo snap install ubuntu-frame

  • sudo snap set ubuntu-frame daemon=true

This will land you in a grey screen, once you land in grey screen hit the below commands.

sudo snap install wpe-webkit-mir-kiosk

sudo snap connect wpe-webkit-mir-kiosk:wayland

sudo snap set wpe-webkit-mir-kiosk daemon=true

sudo snap set wpe-webkit-mir-kiosk url=https://google.com

Hit sudo snap start wpe-webkit-mir-kiosk if you’re still on grey screen.

I have tested it in ubuntu server 20.04 LTS in Raspberry Pi 3B+

Thank you

Hi @DaneLLL,

Any update on this?

Hi,
This use-case is not tested on default releases, so it is possible it does not work properly. What is the purpose to run this use-case? We have chromium package in the release and not sure if this can be adapted to use chromium.

It is for production purpose, if I run the UI in chromium as localhost:80 it is vulnerable in production as in anyone can change the address in browser.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.