当前位置:网站首页>No EGL Display 报错解决
No EGL Display 报错解决
2022-07-26 05:25:00 【AI视觉网奇】
版本情况如下
CUDA版本:10.2
tensorrt版本:8.0.1.6
JetPack版本:32.6.1
deepstream版本:6.0
官网的系统版本适配图如下:
通过对比发现:我的版本是没有问题的。于是开始细细地检查报错。
第一种类别报错
报错如下
nvbuf_utils: Could not get EGL display connection
No EGL Display
nvbufsurftransform: Could not get EGL display connection
No EGL Display
解决方法,在命令行执行:
unset DISPLAY
rm ${HOME}/.cache/gstreamer-1.0/registry.*
输入上面的命令的目的是:将DISPLAY的值设为:0。
可以输入以下的命令查看:
echo $DISPLAY
# 输出为 :0
如果上述的命令并没有将DISPLAY的值设为0,请使用下面这种方法:
export DISPLAY=:0
然后再次输入命令查看:
echo $DISPLAY
# 输出为 :0
其实第一类报错算是已经解决了。
再次输入:
gst-inspect-1.0
发现报错减少了,但是还有4个:
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.622: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_udp.so': librivermax.so.0: cannot open shared object file: No such file or directory
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.628: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_inferserver.so': libtritonserver.so: cannot open shared object file: No such file or directory
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.634: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libcustom2d_preprocess.so': /usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libcustom2d_preprocess.so: undefined symbol: NvBufSurfTransformAsync
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.650: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_preprocess.so': /usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_preprocess.so: undefined symbol: NvBufSurfTransformAsync
说明第一类的报错已经解决了。
第二类报错
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.622: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_udp.so': librivermax.so.0: cannot open shared object file: No such file or directory
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.628: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_inferserver.so': libtritonserver.so: cannot open shared object file: No such file or directory
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.634: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libcustom2d_preprocess.so': /usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libcustom2d_preprocess.so: undefined symbol: NvBufSurfTransformAsync
(gst-plugin-scanner:32277): GStreamer-WARNING **: 15:05:17.650: Failed to load plugin '/usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_preprocess.so': /usr/lib/aarch64-linux-gnu/gstreamer-1.0/deepstream/libnvdsgst_preprocess.so: undefined symbol: NvBufSurfTransformAsync
参考
https://blog.csdn.net/zong596568821xp/article/details/121231336
通过这篇文章发现,这些问题是Deepstream6.0所为解决的问题,可以忽略。
重新推理,得到正确的结果了。
————————————————
版权声明:本文为CSDN博主「零碎@流年絮语」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_44824148/article/details/122841870
边栏推荐
- 动态内存管理及柔性数组
- Chinese character style transfer --- learn the conversion and generation of one to many programmed Chinese characters through generation confrontation network
- Getaverse,走向Web3的远方桥梁
- Embedded development notes, practical knowledge sharing
- no networks found in /etc/cni/net.d
- Shell process control (emphasis), if judgment, case statement, let usage, for ((initial value; loop control condition; variable change)) and for variable in value 1 value 2 value 3..., while loop
- 元宇宙为服装设计展示提供数字化社交平台
- Simulation of future air pollution changes
- STL常用模板库
- Recommend 12 academic websites for free literature search, and suggest to like and collect!
猜你喜欢
随机推荐
SAP报表开发步骤
ThreadLocal transfer between parent and child threads in asynchronous
Teach you how to use code to realize SSO single sign on
flex布局原理及常见的父项元素
Okaleido上线聚变Mining模式,OKA通证当下产出的唯一方式
Circular structure practice
Reason for pilot importerror: cannot import name 'pilot_ Version 'from' PIL ', how to install pilot < 7.0.0
Embedded sharing collection 21
Practical technology of SWAT Model in simulation of hydrology, water resources and non-point source pollution
Attack and defense world -- easy_ web
Shell read read console input, use of read
DOM事件流 事件冒泡-事件捕获-事件委托
TZC 1283: simple sort - select sort
Day011 一维数组
TZC 1283: simple sort - Comparative sort
SQL injection
DOM event flow event bubble event capture event delegate
Common modules in ansible
Migrate the server and reconfigure the database (the database has no monitoring, and the monitoring starts with tns-12545, tns-12560, tns-00515 errors)
C语言-指针进阶








