Crashing app ubuntu desktop to ubuntu VM

I am building a Kit app based on USD Viewer template from NVIDIA-Omniverse/kit-app-template: Omniverse Kit App Template (github.com) on Ubuntu desktop. This is working as expected per the documentation and I am able to stream to the example Javascript app.

When I package the Kit app (using repoman) and deploy to an Ubuntu VM that app is crashing on startup. The error in the logs just before the crash is:

Blockquote
Error] [rtx.neuraylib.plugin] Failed to open /data/omni/ov-stream/extscache/omni.iray.libs-0.0.0+36286b8b.lx64.r/bin/iray/libneuray.so: libGLU.so.1: cannot open shared object file: No such file or directory

Is there something obvious to the team that would fix this issue?

Seems like you might be missing libGLU in your operating system. You could try:

sudo apt-get update
sudo apt-get install libglu1-mesa

Is this deployed in a container?

This solved it. Thank you!

2 Likes

Great thanks

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