Qxcbconnection xcb error 8 badmatch

{linux 3.19 QT5.6}... I using OpenCV3 OpenGL SQLITE3 .... and at lauch of my app appear : QXcbConnection: XCB error: 8 (BadMatch), sequence: 1587, resource id: 65011835, major code: 130 (Unknown), minor code: 3 QXcbConnection: XCB error: 8 (BadMatch), se...

This topic has been deleted. Only users with topic management privileges can see it.

  • {linux 3.19 QT5.6}…

    I using OpenCV3 OpenGL SQLITE3 …. and at lauch of my app appear :

    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1587, resource id: 65011835, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1635, resource id: 65011835, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1647, resource id: 65011835, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1659, resource id: 65011835, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1671, resource id: 65011835, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1724, resource id: 65011835, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1828, resource id: 65011922, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1900, resource id: 65011922, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 1901, resource id: 65011922, major code: 130 (Unknown), minor code: 3
    

    the error appear after I add on my app Qlabel with opengl texure for show my cam….
    I ‘ve any Ideas of these … on google I fingd only error related xorg ….. but these isn’t xorg bug… log file is ok….

    Any suggest is well accept…

    Regards
    Giorgio

  • Hi,

    Can you explain how you set a texture on your QLabel ?

    By the way, why not use QCamera and QCameraViewfinder since you are working with a camera?

  • #include "mainwindow.h"
    #include "ui_mainwindow.h"
    
    #include "glwidg.h"
    #include <QThread>
    #include <QtConcurrent/QtConcurrent>
    #include <QtConcurrent/QtConcurrentRun>
    #include <QFuture>
    #include <QFutureWatcher>
    #include <QtWidgets>
    #include <QtWidgets/QAction>
    #include <QtWidgets/QWidget>
    #include <QtWidgets/QWidgetAction>
    #include <QtWidgetsDepends>
    #include <QtWidgetsVersion>
    #include <QTableWidget>
    #include <QTableWidgetItem>
    #include <QTableWidgetSelectionRange>
    #include <QTableView>
    #include <opencv/cv.h>
    #include <opencv/highgui.h>
    #include <iostream>
    #include <math.h>
    #include <stdio.h>
    #include <opencv2/opencv.hpp>
    #include <opencv2/imgproc/imgproc.hpp>
    #include <opencv2/highgui/highgui.hpp>
    #include <opencv2/core/core.hpp>
    #include <sstream>
    #include <string.h>
    #include <GL/glu.h>
    #include <GL/glut.h>
    #include <GL/freeglut.h>
    #include <QtOpenGL/QGLWidget>
    #include <QtOpenGL/QGLBuffer>
    #include <QtOpenGL/QtOpenGL>
    #include <QTime>
    #include <QTimer>
    #include <QDebug>
    
    
    QImage camera000;
    GLuint texture[1];
    QImage GL_formatt;
    QImage qform;
    QImage qform1;
    int cambio1 = 0;
    
    cv::Mat imma2;
    cv::Mat imma3;
    
    IplImage* frame0;
    
    
    int play = 0;
    
    
    
    
    glwidg::glwidg(QWidget *parent) :
        QGLWidget(parent)
    
    {
    
        this->setAttribute(Qt::WA_DeleteOnClose); //// SI INIZIALIZZ AIL BUFFER E LE DIMENSIONI DI CATTURA
    
        QGLWidget(QGLFormat(QGL::DirectRendering));
        setMaximumSize(480,360);//(352,288);
    
        initializeGL();
    
        paintGL();
    
    
    }
    
    
    
    
    
    
    void glwidg::resizeGL(int w, int h)
    {
    
        makeCurrent();
        glViewport(0, 0, w, h);
        glMatrixMode(GL_PROJECTION);
        glLoadIdentity();
        gluOrtho2D(0, w, 0, h); // set origin to bottom left corner
        glMatrixMode(GL_MODELVIEW);
        glLoadIdentity();
    
    }
    
    
    void glwidg::initializeGL()
    {
        makeCurrent();
        glClearDepth(2000.0);
        glDisable(GL_TEXTURE_2D);
        glDisable(GL_DEPTH_TEST);
        glDisable(GL_COLOR_MATERIAL);
        glEnable(GL_BLEND);
        glEnable(GL_POLYGON_SMOOTH);
        glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
        qglClearColor(Qt::white);
    
    }
    
    void glwidg::paintGL()
    {
        makeCurrent();
    
    
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
        qglColor(Qt::white);
    
    
        glutInitDisplayMode(GLUT_SINGLE | GLUT_RGBA);
        glMatrixMode(GL_MODELVIEW); /*+*/
        glEnable(GL_DEPTH_TEST);
    
        if (cambio1 == 0)
        {
            qform1.load("/home/kc1/Qt/KC-C/RIS/control2_106.png");
            qq1frame = qform1.scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
        }
        else
        {
            qq1frame = qform1.scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
        }
    
    
    
        qqframe = qq1frame.mirrored(false, true);
    
        if(!qqframe.isNull())
        {
            qqframe = qqframe.scaled(this->size(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
           // glDrawPixels(qqframe.width(), qqframe.height(), GL_RGBA, GL_UNSIGNED_BYTE, qqframe.bits());
    
            // or do 2D texture mapping
            glMatrixMode(GL_MODELVIEW); /**/
            glEnable(GL_DEPTH_TEST);
            glMatrixMode(GL_PROJECTION);
            glLoadIdentity();
            gluOrtho2D(0,qqframe.width(),qqframe.height(),0);
            glMatrixMode(GL_MODELVIEW);
            //glDisable(GL_DEPTH_TEST);
            glLoadIdentity();
            glEnable(GL_TEXTURE_2D);
            glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
            glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
            glTexImage2D( GL_TEXTURE_2D, 0, 4, qqframe.width(), qqframe.height(), 0, GL_BGRA, GL_UNSIGNED_BYTE, qqframe.bits() );
            glBegin(GL_QUADS);
            glTexCoord2f(0,0); glVertex2f(0,qqframe.height());
            glTexCoord2f(0,1); glVertex2f(0,0);
            glTexCoord2f(1,1); glVertex2f(qqframe.width(),0);
            glTexCoord2f(1,0); glVertex2f(qqframe.width(),qqframe.height());
            glEnd();
            glDisable(GL_TEXTURE_2D);
            // .... end
    
           // qDebug() << ("ho disegnato??");
            glDisable(GL_DEPTH_TEST);
    
    
            glFlush();
    
         }
    
        if(qqframe.isNull())
        {
            glClear(GL_COLOR_BUFFER_BIT);
            qglColor(Qt::white);
        }
    
    }
    
    
    
    void glwidg::donextcam()
    {
    
        makeCurrent();
    
    }
    
    
    void glwidg::imma_orig_r1(QImage qi1)
    {
        cambio1 = 1;
        qform1 = qi1;
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
        updateGL();
    
    }
    
    void glwidg::stopcam1(bool st1)
    {
        if (st1)
        {
            cambio1 = 0;
            glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
            updateGL();
        }
        else
        {
            cambio1 = 1;
        }
    }
    

    Because Gstream nor recognize mi BA81 camera???

    Sorry but you suggsdest me that beckground of QT camera is Gstream … And I reply you tha GStream is not supported by my system for BA81 so I must use the old method of include v4l.cpp file in my filegrabcamera.cpp and use camerabuffer for convert matrix in right rgb format ….

    By the way I not understand XBC error:8 and not find any info about it.
    Thanks for any suggst.

    Regards
    Giorgio

  • How am I supposed to relate this question to that other thread since you don’t even mention it in the first place ?

    Also, your code doesn’t use any QLabel and you seem to load your images from your hard drive so it gets a bit confusing to find the relation with your camera.

    So the question is: are you seeing this message since you added that custom QGLWidget ?

    There seems to also be OpenCV in the mix, are you using it to get images from the camera ?

    As for that XCB error 8, there’s for example this bug that mentions it and that has been fixed since then.

  • the mechanism:

    1-qthread with opencv grab from camera…+ v4l.cpp integrted in it for right converting of image….(opencv meke some logical operation on image matrix)
    2-matrix2Qimage functon
    3-Qimage send to glwidg that use paint event to refresh QImage and convertitin the right dimension (i these way you can use opengl too and you can send multiple image if you wont…)
    4-in gui qlabel show qimqge or multiple tranformation from opengl if you want…..

    I show glwidg because opencv part use noting of qt part…. only matrix2qimage funcon…… glwidg use painter event ….other part of gui is right tested without glwidg….

    Thnks for your help

    Regards Giorgio

  • Do you mean that you show the image twice ? Once with a QLabel and once with your QGLWidget ?

  • Real Real Sorry…. no QLabel exist….. GLwidg and opencv calculation is my old application vision system… now I rewamp it in my new interface … to do that I have copy and paste .ui an .h .cpp file …. I see now that not exist QLabel that now is my custom widget GLwidg…..

    I must correct these:

    the mechanism:

    1-qthread with opencv grab from camera…+ v4l.cpp integrted in it for right converting of image….(opencv meke some logical operation on image matrix)
    2-matrix2Qimage functon
    3-Qimage send to glwidg that use paint event to refresh QImage and convertitin the right dimension (i these way you can use opengl too and you can send multiple image if you wont…) and show image in gui [stop here]
    /// not exist ///4-in gui qlabel show qimqge or multiple tranformation from opengl if you want…../

    Any how …..the error is still before the thread that creates the images begin to convey to glwidgt few frames …. I have a button to activate or not the Qthread with opencv capture …. The error occurs just start my application … reading the link you gave me the error appears to be related to a window that does not open …. I put in // all the code that launches messages or popup windows …. but XBC error remains …..

    Please can someone explain to me what does QXcb ??

    Regards
    Giorgio

  • ok I understand how not works ….. my app is quite large and not can control all in any situation ….

    fortunately today I needed to launch a command from my interface …. I made a mistake and the machinery driven by the interface has returned an error to me properly …. just that the pop-up window notifying the error is not seen .. … so I could verify that the notification window is broken somewhere …but to some resources it is not available (it could be a font, an icon, an associated variable … I do not know …. )

    mystery solved … almost … now I have to see what that is hidden to the system.

    regards
    Giorgio

  • Check whether you have any path that might be relative in your code.

  • Strange these error …. Finally I found these ….

    As I said the problem is a Qdialog … these dialog is only a Waiting charge dialog with a circular progress bar …. first of insert my openCvWidget the code to start it was:

    m_dia2 = new Dia2(this);
                m_dia2->setAttribute(Qt::WA_DeleteOnClose, true);
                m_dia2->setWindowFlags(Qt::Widget | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
                m_dia2->setAttribute(Qt::WA_NoSystemBackground, true);
                m_dia2->setAttribute(Qt::WA_TranslucentBackground, true);
                m_dia2->AutoBmecdia2Value(AutoCount);
                m_dia2->Stepbmecdia2Value(WaitingStep);
                m_dia2->show();
    

    but now with «this» flag I Obtain QXcbConnection:XCB error 8 ……
    for solve the error now the code is:

    m_dia2 = new Dia2();
                m_dia2->setAttribute(Qt::WA_DeleteOnClose, true);
                m_dia2->setWindowFlags(Qt::Widget | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
                m_dia2->setAttribute(Qt::WA_NoSystemBackground, true);
                m_dia2->setAttribute(Qt::WA_TranslucentBackground, true);
                m_dia2->AutoBmecdia2Value(AutoCount);
                m_dia2->Stepbmecdia2Value(WaitingStep);
                m_dia2->show();
    

    in these way the dialog can exist when myapp is close and not found other solution to close these dialog when my app close …. Why firt to add a new code I can use:

    m_dia2 = new Dia2(this);
    

    and after only:

    m_dia2 = new Dia2();
    

    ???

    regards
    Giorgio

  • From what widget are you calling this code ?

  • from void in MainWindow …..

    regards
    Giorgio

  • void is a type, do you mean in a slot from MainWindow ?

  • I call it in c++ style some time from mainwindow slot sometime from qthread with connect signal slot but nevertimre directly every time calling it inside a mainwindows slot….

    regards
    giorgio

  • How did you connect the signal from that QThread ?

  • i have a slot in mainwindow that start qhread … inside that slot I have a list of:

    connect(mythread, SIGNAL(mysignal1(Qimage)), this, SLOT(mainwindosslot(QImage)), Qt::DirectConnection);
    

    for example….

    Ragards
    Giorgio

  • Why are you forcing a direct connection ?

    This means that the slot will be called in the context of the thread managed by QThread which is not the GUI thread thus you are doing GUI related stuff from another thread which is not allowed.

  • @SGaist … you are in right …. tanks.

    regards
    miki

  • Содержание

    1. Qxcbconnection xcb error 8 badmatch
    2. Qxcbconnection xcb error 8 badmatch
    3. Qxcbconnection xcb error 8 badmatch
    4. Qxcbconnection xcb error 8 badmatch

    Qxcbconnection xcb error 8 badmatch

    i have compiled my project on a machine running Debian Stretch and out of a sudden get many of these errors:

    What is this? (it doesn’t seem to cause any problems, but still it can’t be good to ignore it)
    On Windows 7 as well as on another machine running Kubuntu they don’t appear.

    Are you running your OS on a physical machine or a virtual machine ?

    Hi,
    it’s a physical maschine

    What desktop environment are you using ?
    What window manager ?

    the desktop environment is KDE with kwin as window manager.
    KDE version is 5:92
    kwin version is 4:5.8.6-1

    Are you using the distribution provided Qt ?

    @SGaist yes its the distribution Qt version.

    i’m not sure if it has something to do with this, but i noticed, that i get some compiler warning about VTK:
    VTK version is VTK-8.1.0

    or maybe you can tell me what the error means because i have absolutely no idea where to search for

    That’s not an error, it’s just a warning that you are using a method that is considered deprecated and you should consider updating your code.

    Источник

    Qxcbconnection xcb error 8 badmatch

    I using OpenCV3 OpenGL SQLITE3 . and at lauch of my app appear :

    the error appear after I add on my app Qlabel with opengl texure for show my cam.
    I ‘ve any Ideas of these . on google I fingd only error related xorg . but these isn’t xorg bug. log file is ok.

    Any suggest is well accept.

    Can you explain how you set a texture on your QLabel ?

    By the way, why not use QCamera and QCameraViewfinder since you are working with a camera?

    Because Gstream nor recognize mi BA81 camera.

    Sorry but you suggsdest me that beckground of QT camera is Gstream . And I reply you tha GStream is not supported by my system for BA81 so I must use the old method of include v4l.cpp file in my filegrabcamera.cpp and use camerabuffer for convert matrix in right rgb format .

    By the way I not understand XBC error:8 and not find any info about it.
    Thanks for any suggst.

    How am I supposed to relate this question to that other thread since you don’t even mention it in the first place ?

    Also, your code doesn’t use any QLabel and you seem to load your images from your hard drive so it gets a bit confusing to find the relation with your camera.

    So the question is: are you seeing this message since you added that custom QGLWidget ?

    There seems to also be OpenCV in the mix, are you using it to get images from the camera ?

    As for that XCB error 8, there’s for example this bug that mentions it and that has been fixed since then.

    1-qthread with opencv grab from camera. + v4l.cpp integrted in it for right converting of image. (opencv meke some logical operation on image matrix)
    2-matrix2Qimage functon
    3-Qimage send to glwidg that use paint event to refresh QImage and convertitin the right dimension (i these way you can use opengl too and you can send multiple image if you wont. )
    4-in gui qlabel show qimqge or multiple tranformation from opengl if you want.

    I show glwidg because opencv part use noting of qt part. only matrix2qimage funcon. glwidg use painter event . other part of gui is right tested without glwidg.

    Thnks for your help

    Do you mean that you show the image twice ? Once with a QLabel and once with your QGLWidget ?

    Real Real Sorry. no QLabel exist. GLwidg and opencv calculation is my old application vision system. now I rewamp it in my new interface . to do that I have copy and paste .ui an .h .cpp file . I see now that not exist QLabel that now is my custom widget GLwidg.

    I must correct these:

    1-qthread with opencv grab from camera. + v4l.cpp integrted in it for right converting of image. (opencv meke some logical operation on image matrix)
    2-matrix2Qimage functon
    3-Qimage send to glwidg that use paint event to refresh QImage and convertitin the right dimension (i these way you can use opengl too and you can send multiple image if you wont. ) and show image in gui [stop here]
    /// not exist ///4-in gui qlabel show qimqge or multiple tranformation from opengl if you want. /

    Any how . the error is still before the thread that creates the images begin to convey to glwidgt few frames . I have a button to activate or not the Qthread with opencv capture . The error occurs just start my application . reading the link you gave me the error appears to be related to a window that does not open . I put in /. / all the code that launches messages or popup windows . but XBC error remains .

    Please can someone explain to me what does QXcb ??

    ok I understand how not works . my app is quite large and not can control all in any situation .

    fortunately today I needed to launch a command from my interface . I made a mistake and the machinery driven by the interface has returned an error to me properly . just that the pop-up window notifying the error is not seen .. . so I could verify that the notification window is broken somewhere . but to some resources it is not available (it could be a font, an icon, an associated variable . I do not know . )

    mystery solved . almost . now I have to see what that is hidden to the system.

    Check whether you have any path that might be relative in your code.

    Strange these error . Finally I found these .

    As I said the problem is a Qdialog . these dialog is only a Waiting charge dialog with a circular progress bar . first of insert my openCvWidget the code to start it was:

    but now with «this» flag I Obtain QXcbConnection:XCB error 8 .
    for solve the error now the code is:

    in these way the dialog can exist when myapp is close and not found other solution to close these dialog when my app close . Why firt to add a new code I can use:

    From what widget are you calling this code ?

    from void in MainWindow .

    void is a type, do you mean in a slot from MainWindow ?

    I call it in c++ style some time from mainwindow slot sometime from qthread with connect signal slot but nevertimre directly every time calling it inside a mainwindows slot.

    How did you connect the signal from that QThread ?

    i have a slot in mainwindow that start qhread . inside that slot I have a list of:

    Why are you forcing a direct connection ?

    This means that the slot will be called in the context of the thread managed by QThread which is not the GUI thread thus you are doing GUI related stuff from another thread which is not allowed.

    Источник

    Qxcbconnection xcb error 8 badmatch

    hello all :
    just i builded the qt5.8 source code on arm board with unbuntu14.04 system , when i run the hello world app , blowing log like this :

    QML debugging is enabled. Only use this in a safe environment.
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 191, resource id: 67, major code: 1 (CreateWindow), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 192, resource id: 6291460, major code: 2 (ChangeWindowAttributes), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 193, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 194, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 195, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 197, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 198, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 199, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 202, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 203, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 204, resource id: 6291460, major code: 2 (ChangeWindowAttributes), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 205, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 208, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 209, resource id: 6291460, major code: 20 (GetProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 213, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 214, resource id: 6291460, major code: 19 (DeleteProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 215, resource id: 6291460, major code: 20 (GetProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 216, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 217, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 218, resource id: 6291460, major code: 19 (DeleteProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 219, resource id: 6291460, major code: 20 (GetProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 220, resource id: 6291460, major code: 18 (ChangeProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 221, resource id: 6291460, major code: 20 (GetProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 222, resource id: 6291460, major code: 19 (DeleteProperty), minor code: 0
    QXcbConnection: XCB error: 3 (BadWindow), sequence: 223, resource id: 6291460, major code: 8 (MapWindow), minor code: 0

    Источник

    Qxcbconnection xcb error 8 badmatch

    Hi fellow Qt users,

    I have a class that is derived from QDialog in my application to create a settings dialog. I’m using a QSplitter to show stuff that can be manipulated with settings in a QTreeWidget on the left and — depending on what element in the tree is activated, the actual options in widgets on the right side of the splitter. I’ve noticed, that every time I move my splitter, I get tons of this error code on my console:

    Has anybody seen this before and knows how to get rid of it? It doesn’t seem to have any impact on the application’s functionality, everything runs smoothly. But I’d like to get rid of the problem regardless so the log files won’t be flooded with those messages.

    Which version of Qt ? With which distribution ? Can you reproduce that with a minimal sample application ?

    I’m using Qt 5.5.1 which came with my OpenSuse Leap 42.1 so it’s not the newest Qt5 version that’s available. Unfortunately, I cannot reproduce the problem with a minimal sample. However, I was able to identify what seems to be a connection between the error message and stylesheets.

    I’m using a QSS file to style my application which I can set at runtime. If this isn’t set, the error message doesn’t occur. But as soon as I set the stylesheet.qss, it starts popping up. Here’s how I set the stylesheet:

    And here’s the stylesheet file

    I can’t see anything problematic in the stylesheet file and it’s getting parsed and applied just as I’d expect it to be.

    Are you sure your ApplicationWindow font-family property is correct ?

    @SGaist you’re right, that was indeed a character swap in there. But correcting it did not remove the error/warning message. It still comes up, every time I open the QDialog with the QSplitter.

    PS: Sorry for the delayed response, I was out of office for a couple days

    One thing to clear, does that happen on your development station ?

    Yes, it does happen on my workstation where I’m doing the development (ThinkPad Laptop). I have also just executed it on a different machine at work and there the error does not come up. I’ve also noticed that none of my debug outputs are coming out there, so it might be connected to that. However, I can’t change anything on those machines since our IT is very restrictive with what we can do on these machines.

    Are you also styling the QSplitter content ?

    @SGaist the QSplitter has a QTreeWidget and a QWidget for the content which consists itself of a QLabel and a QStackedWidget (Headline and content). I do style the QTreeWidget and the items as well as the content widgets. But I don’t have any styling on the QSplitter itself.

    Источник

    This topic has been deleted. Only users with topic management privileges can see it.

  • Hello,

    i have compiled my project on a machine running Debian Stretch and out of a sudden get many of these errors:

    QXcbConnection: XCB error: 8 (BadMatch), sequence: 2409, resource id: 117440720, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 2429, resource id: 117440720, major code: 130 (Unknown), minor code: 3
    QXcbConnection: XCB error: 8 (BadMatch), sequence: 2432, resource id: 117440720, major code: 130 (Unknown), minor code: 3
    

    What is this? (it doesn’t seem to cause any problems, but still it can’t be good to ignore it)
    On Windows 7 as well as on another machine running Kubuntu they don’t appear.

  • Hi,

    Are you running your OS on a physical machine or a virtual machine ?

  • Hi,
    it’s a physical maschine

  • What desktop environment are you using ?
    What window manager ?

  • Hi,

    the desktop environment is KDE with kwin as window manager.
    KDE version is 5:92
    kwin version is 4:5.8.6-1

  • Are you using the distribution provided Qt ?

  • @SGaist yes its the distribution Qt version.

    i’m not sure if it has something to do with this, but i noticed, that i get some compiler warning about VTK:
    VTK version is VTK-8.1.0

    warning: 'QVTKWidget::QVTKWidget(QWidget*, Qt::WindowFlags)' is deprecated [-Wdeprecated-declarations]
    

    or maybe you can tell me what the error means because i have absolutely no idea where to search for

  • That’s not an error, it’s just a warning that you are using a method that is considered deprecated and you should consider updating your code.

  • Сегодня, наконец, дошли руки… За это время было несколько объявлений пакетов из среды KDE5.

    Собираю логи и информацию о поведении с разных систем.

    Система первая.

    — Teacher 7.0.5 х64 сильно замусоренный, обновленный до p8, с установленными kde5-mini и kde5-small

    Также установлен ladspa-swh-plugins (багу по нему закрыли, т.к. он не является необходимым для работы).

    $ uname -a
    Linux AltTeacher.localdomain 4.4.24-std-def-alt0.M80P.1 #1 SMP Mon Oct 10 00:20:59 UTC 2016 x86_64 GNU/Linux

    $ apt-cache show kdenlive | grep  -i version
    Version: 16.08.1-alt1.M80P.1

    При запуске в консоль не ругается.

    При открытии окна добавления клипа в проект ругается в консоль:

    We got some errors while running 'net usershare info'
    "info_fn: file /var/lib/samba/usershares/iso is not a well formed usershare file.ninfo_fn: Error was Path not allowed.n"
    При чем тут видеоплеер и шары? По указанному адресу лежит файл вот такого содержания:

    [root@AltTeacher ~]# cat /var/lib/samba/usershares/iso
    #VERSION 2
    path=/home/dmytro/ISO
    comment=
    usershare_acl=S-1-1-0:R,S-1-22-1-500:F
    guest_ok=n
    sharename=ISO
    И что ему тут не нравится? Это, вообще, его дело, нормально ли шары настроены?

    Дальше по теме. При добавлении в дерево клипов видеофайла кроме информации о нем появляется вот это:

    "Error reading audio thumbnail"
    org.kde.knotifications: Audio notification requested, but sound file from notifyrc file was not found, aborting audio notification
    Тут, как я понимаю, 2 ошибки:

    Первая ошибка

    "Error reading audio thumbnail"По сообщению можно предположить, что речь идет о тех самых звуковых дорожках, которые не отображаются. Неглубокое гугление выдает 2 бага-близнеца  в KDE:
    https://bugs.kde.org/show_bug.cgi?id=362925
    https://bugs.kde.org/show_bug.cgi?id=362926
    Баги, вроде, вылечены.
    Отписался в нашу багзилу: https://bugzilla.altlinux.org/show_bug.cgi?id=32544

    Вторая ошибка

    org.kde.knotifications: Audio notification requested, but sound file from notifyrc file was not found, aborting audio notificationЭто, как я понимаю, про отсутствие звуковых оповещений.
    На арче похожую проблему решают: https://bbs.archlinux.org/viewtopic.php?id=132307
    Попробую разобраться.

    pdubois


    Registered Member

    Posts
    10
    Karma
    0

    Error messages not explained

    Thu Sep 13, 2018 10:44 pm

    Hello,for some time now, kdenlive has been idling. The sound is hatched and I have a lot of difficulty to realize my video éditing: it bug!

    I tried to open kdenlive in a console, here are the error messages I got:

    Code: Select all
    kdenlive
    No LADSPA plugins were found!

    Check your LADSPA_PATH environment variable.
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5510, resource id: 73400610, major code: 153 (Unknown), minor code: 11
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16611, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16649, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16669, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16695, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16710, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16726, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16742, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16758, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 16774, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    [ac3 @ 0x7f98fa45b5c0] frame sync error
    [producer avformat] /run/media/florian/Windows/Documents and Settings/cendr/Kdenlive/proxy/3f79fede519d0097bf7fc5c2857c239e.mpg
        audio decoding error -1094995529
    [ac3 @ 0x7f98fa45b5c0] frame sync error
    [producer avformat] /run/media/florian/Windows/Documents and Settings/cendr/Kdenlive/proxy/3f79fede519d0097bf7fc5c2857c239e.mpg
        audio decoding error -1094995529
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 42122, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 42160, resource id: 73400729, major code: 130 (Unknown), minor code: 3
    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 42170, resource id: 73400729, major code: 130 (Unknown), minor code: 3

    What can I do to improve the situation?

    View previous topic :: View next topic  
    Author Message
    exeqtion
    n00b
    n00b

    Joined: 05 Jan 2020
    Posts: 15

    PostPosted: Sun Jan 05, 2020 6:21 pm    Post subject: [Solved] Obs-studio not connecting to rtmps server Reply with quote

    Hi, I am trying to stream on facebook which uses rtmps connection only. But it is giving me failed to connect to server error. I can steram on rtmp server like youtube/twitch. I compiled obs with ssl flag and have net-libs/mbedtls installed on my system.

    OBS log

    Code:
    Icon theme «Surfn» not found.

    Icon theme «Numix» not found.

    Icon theme «Numix-Circle-Light» not found.

    Icon theme «Numix-Circle» not found.

    Icon theme «gnome» not found.

    Attempted path: share/obs/obs-studio/locale/en-US.ini

    Attempted path: /usr/share/obs/obs-studio/locale/en-US.ini

    Attempted path: share/obs/obs-studio/locale.ini

    Attempted path: /usr/share/obs/obs-studio/locale.ini

    Attempted path: share/obs/obs-studio/themes/Dark.qss

    Attempted path: /usr/share/obs/obs-studio/themes/Dark.qss

    info: CPU Name: AMD Ryzen 5 1600 Six-Core Processor

    info: CPU Speed: 3251.398MHz

    info: Physical Cores: 6, Logical Cores: 12

    info: Physical Memory: 7961MB Total, 2299MB Free

    info: Kernel Version: Linux 4.19.86-gentoo

    info: Distribution: Gentoo Unknown

    info: Window System: X11.0, Vendor: The X.Org Foundation, Version: 1.20.6

    info: Portable mode: false

    Attempted path: share/obs/obs-studio/themes/Dark/no_sources.svg

    Attempted path: /usr/share/obs/obs-studio/themes/Dark/no_sources.svg

    QMetaObject::connectSlotsByName: No matching signal for on_advAudioProps_clicked()

    QMetaObject::connectSlotsByName: No matching signal for on_advAudioProps_destroyed()

    QMetaObject::connectSlotsByName: No matching signal for on_program_customContextMenuRequested(QPoint)

    info: OBS 24.0.5 (linux)

    info: ———————————

    info: ———————————

    info: audio settings reset:

            samples per sec: 44100

            speakers:        2

    info: ———————————

    info: Initializing OpenGL…

    info: Loading up OpenGL on adapter X.Org Radeon RX 580 Series (POLARIS10, DRM 3.27.0, 4.19.86-gentoo, LLVM 9.0.0)

    info: OpenGL loaded successfully, version 4.5 (Core Profile) Mesa 19.3.1, shading language 4.50

    info: ———————————

    info: video settings reset:

            base resolution:   1600×900

            output resolution: 1600×900

            downscale filter:  Bicubic

            fps:               60/1

            format:            NV12

            YUV mode:          601/Partial

    info: NV12 texture support not available

    info: Audio monitoring device:

            name: Default

            id: default

    info: ———————————

    warning: Failed to load ‘en-US’ text for module: ‘decklink-ouput-ui.so’

    libDeckLinkAPI.so: cannot open shared object file: No such file or directory

    info: No blackmagic support

    info: FFMPEG VAAPI supported

    info: ———————————

    info:   Loaded Modules:

    info:     text-freetype2.so

    info:     rtmp-services.so

    info:     obs-x264.so

    info:     obs-transitions.so

    info:     obs-outputs.so

    info:     obs-filters.so

    info:     obs-ffmpeg.so

    info:     linux-pulseaudio.so

    info:     linux-decklink.so

    info:     linux-capture.so

    info:     linux-alsa.so

    info:     image-source.so

    info:     frontend-tools.so

    info:     decklink-ouput-ui.so

    info: ———————————

    info: ==== Startup complete ===============================================

    info: All scene data cleared

    info: ————————————————

    info: pulse-input: Server name: ‘pulseaudio 13.0’

    info: pulse-input: Audio format: s16le, 44100 Hz, 2 channels

    info: pulse-input: Started recording from ‘alsa_output.pci-0000_0b_00.3.analog-stereo.monitor’

    info: pulse-input: Server name: ‘pulseaudio 13.0’

    info: pulse-input: Audio format: s16le, 48000 Hz, 2 channels

    info: pulse-input: Started recording from ‘alsa_input.pci-0000_0b_00.3.analog-stereo’

    info: xcompcap: [window-capture: ‘Window Capture (Xcomposite)’] update settings:

            title: Desktop — Plasma

            class: plasmashell

            Bit depth: 32

            Found proper GLXFBConfig (in 368): yes

    info: Switched to scene ‘Scene’

    info: ————————————————

    info: Loaded scenes:

    info: — scene ‘Scene’:

    info:     — source: ‘Window Capture (Xcomposite)’ (xcomposite_input)

    info: ————————————————

    Attempted path: share/obs/obs-studio/images/overflow.png

    Attempted path: /usr/share/obs/obs-studio/images/overflow.png

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2370, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2413, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2428, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2444, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2680, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2730, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2745, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2761, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 3036, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 3076, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 3079, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 3095, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    info: ———————————

    info: [x264 encoder: ‘simple_h264_stream’] preset: veryfast

    info: [x264 encoder: ‘simple_h264_stream’] settings:

            rate_control: CBR

            bitrate:      6000

            buffer size:  6000

            crf:          0

            fps_num:      60

            fps_den:      1

            width:        1600

            height:       900

            keyint:       250

    info: ———————————

    info: [FFmpeg aac encoder: ‘simple_aac’] bitrate: 160, channels: 2, channel_layout: 3

    info: [rtmp stream: ‘simple_stream’] Connecting to RTMP URL rtmps://edgetee-upload-bom.xx.fbcdn.net:443/rtmp/…

    info: RTMP_Connect1, TLS_Connect failed: -0x7680

    info: [rtmp stream: ‘simple_stream’] Connection to rtmps://edgetee-upload-bom.xx.fbcdn.net:443/rtmp/ failed: -2

    info: ==== Streaming Stop ================================================

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5097, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5143, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5153, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5169, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5343, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5383, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5386, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5402, resource id: 140509263, major code: 130 (Unknown), minor code: 3

    info: ==== Shutting down ==================================================

    info: Switched to scene ‘(null)’

    info: pulse-input: Stopped recording from ‘alsa_output.pci-0000_0b_00.3.analog-stereo.monitor’

    info: pulse-input: Got 1205 packets with 227043 frames

    info: pulse-input: Stopped recording from ‘alsa_input.pci-0000_0b_00.3.analog-stereo’

    info: pulse-input: Got 711 packets with 251714 frames

    info: All scene data cleared

    info: ————————————————

    [aac @ 0x55e90d0fd1b0] Qavg: -nan

    info: Freeing OBS context data

    info: == Profiler Results =============================

    info: run_program_init: 387.985 ms

    info:  ┣OBSApp::AppInit: 3.163 ms

    info:  ┃ ┗OBSApp::InitLocale: 0.758 ms

    info:  ┗OBSApp::OBSInit: 334.109 ms

    info:    ┣obs_startup: 12.492 ms

    info:    ┗OBSBasic::OBSInit: 237.531 ms

    info:      ┣OBSBasic::InitBasicConfig: 0.072 ms

    info:      ┣OBSBasic::ResetAudio: 0.141 ms

    info:      ┣OBSBasic::ResetVideo: 118.775 ms

    info:      ┣OBSBasic::InitOBSCallbacks: 0.009 ms

    info:      ┣OBSBasic::InitHotkeys: 0.04 ms

    info:      ┣obs_load_all_modules: 15.755 ms

    info:      ┃ ┣obs_init_module(decklink-ouput-ui.so): 0.787 ms

    info:      ┃ ┣obs_init_module(frontend-tools.so): 1.836 ms

    info:      ┃ ┣obs_init_module(image-source.so): 0.004 ms

    info:      ┃ ┣obs_init_module(linux-alsa.so): 0.002 ms

    info:      ┃ ┣obs_init_module(linux-capture.so): 0.231 ms

    info:      ┃ ┣obs_init_module(linux-decklink.so): 0.12 ms

    info:      ┃ ┣obs_init_module(linux-pulseaudio.so): 0.002 ms

    info:      ┃ ┣obs_init_module(obs-ffmpeg.so): 0.115 ms

    info:      ┃ ┃ ┗nvenc_check: 0.084 ms

    info:      ┃ ┣obs_init_module(obs-filters.so): 0.012 ms

    info:      ┃ ┣obs_init_module(obs-outputs.so): 0.003 ms

    info:      ┃ ┣obs_init_module(obs-transitions.so): 0.005 ms

    info:      ┃ ┣obs_init_module(obs-x264.so): 0.001 ms

    info:      ┃ ┣obs_init_module(rtmp-services.so): 0.499 ms

    info:      ┃ ┗obs_init_module(text-freetype2.so): 0.006 ms

    info:      ┣OBSBasic::ResetOutputs: 0.121 ms

    info:      ┣OBSBasic::CreateHotkeys: 0.031 ms

    info:      ┣OBSBasic::InitService: 0.037 ms

    info:      ┣OBSBasic::InitPrimitives: 0.051 ms

    info:      ┗OBSBasic::Load: 29.719 ms

    info: obs_hotkey_thread(25 ms): min=0.039 ms, median=0.077 ms, max=24.559 ms, 99th percentile=10.784 ms, 100% below 25 ms

    info: audio_thread(Audio): min=0 ms, median=0.039 ms, max=0.066 ms, 99th percentile=0.064 ms

    info: obs_graphics_thread(16.6667 ms): min=0.106 ms, median=0.484 ms, max=21.757 ms, 99th percentile=18.45 ms, 98.7421% below 16.667 ms

    info:  ┣tick_sources: min=0.001 ms, median=0.205 ms, max=20.091 ms, 99th percentile=10.037 ms

    info:  ┣output_frame: min=0.083 ms, median=0.115 ms, max=8.404 ms, 99th percentile=0.263 ms

    info:  ┃ ┗gs_context(video->graphics): min=0.082 ms, median=0.114 ms, max=8.404 ms, 99th percentile=0.263 ms

    info:  ┃   ┣render_video: min=0.011 ms, median=0.044 ms, max=1.716 ms, 99th percentile=0.088 ms

    info:  ┃   ┃ ┗render_main_texture: min=0.009 ms, median=0.042 ms, max=1.712 ms, 99th percentile=0.084 ms

    info:  ┃   ┗gs_flush: min=0.043 ms, median=0.061 ms, max=7.846 ms, 99th percentile=0.136 ms

    info:  ┗render_displays: min=0.002 ms, median=0.16 ms, max=18.397 ms, 99th percentile=0.401 ms

    info: =================================================

    info: == Profiler Time Between Calls ==================

    info: obs_hotkey_thread(25 ms): min=25.074 ms, median=25.14 ms, max=49.634 ms, 97.6636% within ±2% of 25 ms (0% lower, 2.33645% higher)

    info: obs_graphics_thread(16.6667 ms): min=12.478 ms, median=16.667 ms, max=21.763 ms, 97.1609% within ±2% of 16.667 ms (1.57729% lower, 1.26183% higher)

    info: =================================================

    info: Number of memory leaks: 0

    emerge —info obs-studio

    Code:
    Portage 2.3.79 (python 3.6.9-final-0, default/linux/amd64/17.1/desktop/plasma, gcc-9.2.0, glibc-2.29-r7, 4.19.86-gentoo x86_64)

    =================================================================

                             System Settings

    =================================================================

    System uname: Linux-4.19.86-gentoo-x86_64-AMD_Ryzen_5_1600_Six-Core_Processor-with-gentoo-2.6

    KiB Mem:     8153028 total,   1971992 free

    KiB Swap:   16777212 total,  15886332 free

    Timestamp of repository gentoo: Fri, 03 Jan 2020 20:00:01 +0000

    Head commit of repository gentoo: 682af47f141f95e154b18ab76f92716455c40186

    sh bash 4.4_p23-r1

    ld GNU ld (Gentoo 2.32 p2) 2.32.0

    app-shells/bash:          4.4_p23-r1::gentoo

    dev-lang/perl:            5.30.1::gentoo

    dev-lang/python:          2.7.17::gentoo, 3.6.9::gentoo

    dev-util/cmake:           3.14.6::gentoo

    sys-apps/baselayout:      2.6-r1::gentoo

    sys-apps/openrc:          0.41.2::gentoo

    sys-apps/sandbox:         2.13::gentoo

    sys-devel/autoconf:       2.13-r1::gentoo, 2.69-r4::gentoo

    sys-devel/automake:       1.16.1-r1::gentoo

    sys-devel/binutils:       2.32-r1::gentoo

    sys-devel/gcc:            9.2.0-r2::gentoo

    sys-devel/gcc-config:     2.1::gentoo

    sys-devel/libtool:        2.4.6-r3::gentoo

    sys-devel/make:           4.2.1-r4::gentoo

    sys-kernel/linux-headers: 4.19::gentoo (virtual/os-headers)

    sys-libs/glibc:           2.29-r7::gentoo

    Repositories:

    gentoo

        location: /var/db/repos/gentoo

        sync-type: rsync

        sync-uri: rsync://rsync.gentoo.org/gentoo-portage

        priority: -1000

        sync-rsync-verify-metamanifest: yes

        sync-rsync-verify-jobs: 1

        sync-rsync-verify-max-age: 24

        sync-rsync-extra-opts:

    steam-overlay

        location: /var/lib/layman/steam-overlay

        sync-type: laymansync

        sync-uri: https://github.com/anyc/steam-overlay.git

        masters: gentoo

        priority: 50

    ACCEPT_KEYWORDS=»amd64″

    ACCEPT_LICENSE=»@FREE»

    CBUILD=»x86_64-pc-linux-gnu»

    CFLAGS=»-O2 -march=znver1″

    CHOST=»x86_64-pc-linux-gnu»

    CONFIG_PROTECT=»/etc /usr/share/config /usr/share/gnupg/qualified.txt»

    CONFIG_PROTECT_MASK=»/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d /etc/terminfo»

    CXXFLAGS=»-O2 -march=znver1″

    DISTDIR=»/var/cache/distfiles»

    ENV_UNSET=»DBUS_SESSION_BUS_ADDRESS DISPLAY GOBIN PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR»

    FCFLAGS=»-O2 -march=znver1″

    FEATURES=»assume-digests binpkg-docompress binpkg-dostrip binpkg-logs config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync multilib-strict network-sandbox news parallel-fetch pid-sandbox preserve-libs protect-owned sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr»

    FFLAGS=»-O2 -march=znver1″

    GENTOO_MIRRORS=»https://mirrors.evowise.com/gentoo/ http://mirrors.evowise.com/gentoo/ http://gentoo.aditsu.net:8000/ http://gentoo.modulix.net/gentoo/ http://mirrors.soeasyto.com/distfiles.gentoo.org/ http://mirror.netcologne.de/gentoo/ http://gentoo.mirrors.ovh.net/gentoo-distfiles/ http://ftp-stud.hs-esslingen.de/pub/Mirrors/gentoo/ http://gentoo.mirror.web4u.cz/ http://mirrors.163.com/gentoo/»

    LANG=»en_IN.UTF-8″

    LDFLAGS=»-Wl,-O1 -Wl,—as-needed»

    MAKEOPTS=»-j13″

    PKGDIR=»/var/cache/binpkgs»

    PORTAGE_CONFIGROOT=»/»

    PORTAGE_RSYNC_OPTS=»—recursive —links —safe-links —perms —times —omit-dir-times —compress —force —whole-file —delete —stats —human-readable —timeout=180 —exclude=/distfiles —exclude=/local —exclude=/packages —exclude=/.git»

    PORTAGE_TMPDIR=»/var/tmp»

    USE=»X a52 aac acl acpi activities alsa amd64 berkdb branding bzip2 cairo cdda cli crypt cups cxx declarative dri dts elogind emboss encode exif fam flac fortran gdbm gif gpm iconv icu jpeg kde kipi kwallet lcms ldap libnotify libtirpc lm-sensors mad mng mp3 mp4 mpeg multilib ncurses nls nptl ogg opengl openmp pam pango pcre pdf phonon plasma png policykit ppds pulseaudio qml qt5 readline sdl seccomp semantic-desktop spell split-usr ssl startup-notification svg tcpd tiff truetype udev udisks unicode upower usb vorbis wayland widgets wxwidgets x264 xattr xcb xcomposite xml xv xvid zlib» ABI_X86=»64″ ADA_TARGET=»gnat_2018″ ALSA_CARDS=»ali5451 als4000 atiixp atiixp-modem bt87x ca0106 cmipci emu10k1x ens1370 ens1371 es1938 es1968 fm801 hda-intel intel8x0 intel8x0m maestro3 trident usb-audio via82xx via82xx-modem ymfpci» APACHE2_MODULES=»authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_alias authn_anon authn_dbm authn_default authn_file authz_dbm authz_default authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir disk_cache env expires ext_filter file_cache filter headers include info log_config logio mem_cache mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias» CALLIGRA_FEATURES=»karbon sheets words» COLLECTD_PLUGINS=»df interface irq load memory rrdtool swap syslog» CPU_FLAGS_X86=»mmx mmxext sse sse2″ ELIBC=»glibc» GPSD_PROTOCOLS=»ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax mtk3301 nmea ntrip navcom oceanserver oldstyle oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 timing tsip tripmate tnt ublox ubx» INPUT_DEVICES=»libinput keyboard mouse» KERNEL=»linux» LCD_DEVICES=»bayrad cfontz cfontz633 glk hd44780 lb216 lcdm001 mtxorb ncurses text» LIBREOFFICE_EXTENSIONS=»presenter-console presenter-minimizer» NETBEANS_MODULES=»apisupport cnd groovy gsf harness ide identity j2ee java mobility nb php profiler soa visualweb webcommon websvccommon xml» OFFICE_IMPLEMENTATION=»libreoffice» PHP_TARGETS=»php7-2″ POSTGRES_TARGETS=»postgres10 postgres11″ PYTHON_SINGLE_TARGET=»python3_6″ PYTHON_TARGETS=»python2_7 python3_6″ RUBY_TARGETS=»ruby24 ruby25″ USERLAND=»GNU» VIDEO_CARDS=»amdgpu radeonsi» XTABLES_ADDONS=»quota2 psd pknock lscan length2 ipv4options ipset ipp2p iface geoip fuzzy condition tee tarpit sysrq steal rawnat logmark ipmark dhcpmac delude chaos account»

    Unset:  CC, CPPFLAGS, CTARGET, CXX, EMERGE_DEFAULT_OPTS, INSTALL_MASK, LC_ALL, LINGUAS, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS

    =================================================================

                            Package Settings

    =================================================================

    media-video/obs-studio-24.0.5::gentoo was built with the following:

    USE=»alsa pulseaudio ssl truetype -fdk -imagemagick -jack -luajit -nvenc -python -speex -v4l -vlc» ABI_X86=»(64)» PYTHON_SINGLE_TARGET=»python3_6 -python3_7″ PYTHON_TARGETS=»python3_6 -python3_7″

    Any help will be appriciated. Thanks!

    Last edited by exeqtion on Mon Jan 06, 2020 8:48 pm; edited 1 time in total

    Back to top

    View user's profile Send private message

    Banana
    Veteran
    Veteran

    Joined: 21 May 2004
    Posts: 1067
    Location: Germany

    PostPosted: Mon Jan 06, 2020 4:07 pm    Post subject: Reply with quote

    Hello exeqtion.

    Quote:
    info: [rtmp stream: ‘simple_stream’] Connecting to RTMP URL rtmps://edgetee-upload-bom.xx.fbcdn.net:443/rtmp/…

    info: RTMP_Connect1, TLS_Connect failed: -0x7680

    info: [rtmp stream: ‘simple_stream’] Connection to rtmps://edgetee-upload-bom.xx.fbcdn.net:443/rtmp/ failed: -2



    Thats facebook, right?

    If so try to uncheck Use a Secure Connection(SSL) option on the Facebook live page and use the non SSL url instead.
    _________________
    My personal space

    My delta-labs.org snippets do expire

    Back to top

    View user's profile Send private message

    exeqtion
    n00b
    n00b

    Joined: 05 Jan 2020
    Posts: 15

    PostPosted: Mon Jan 06, 2020 4:25 pm    Post subject: Reply with quote

    Hi, thanks for replying.

    Banana wrote:
    If so try to uncheck Use a Secure Connection(SSL) option on the Facebook live page and use the non SSL url instead.



    Facebook deprecated the support for non SSL RTMP connection, you cannot uncheck it any longer.

    Back to top

    View user's profile Send private message

    Chiitoo
    Administrator
    Administrator

    Joined: 28 Feb 2010
    Posts: 2413
    Location: Here and Away Again

    PostPosted: Mon Jan 06, 2020 6:28 pm    Post subject: ><)))°€ Reply with quote

    The TLS error seems to be referring to an issue with regards to verifying the certificate chain, or something to that effects.

    The only thing that I can think of, is making sure your machine’s date and time is correct. I’ve seen browsers going wonky due to certificates and the time being off, which is what this reminds me of.

    There’s also this, though no real fix seems to have been found there: https://obsproject.com/forum/threads/unable-to-live-stream-to-facebook-live-over-rtmps.102849/
    _________________
    Kind regards,

    Chiitoo.

    Sore wa sore, kore wa kore.

    Back to top

    View user's profile Send private message

    exeqtion
    n00b
    n00b

    Joined: 05 Jan 2020
    Posts: 15

    PostPosted: Mon Jan 06, 2020 7:39 pm    Post subject: Re: ><)))°€ Reply with quote

    Chiitoo wrote:
    The TLS error seems to be referring to an issue with regards to verifying the certificate chain, or something to that effects.

    The only thing that I can think of, is making sure your machine’s date and time is correct. I’ve seen browsers going wonky due to certificates and the time being off, which is what this reminds me of.

    There’s also this, though no real fix seems to have been found there: https://obsproject.com/forum/threads/unable-to-live-stream-to-facebook-live-over-rtmps.102849/

    Hello chiitoo,

    I checked my time, it is accurate. Regarding the obs thread, MBEDTLS_SSL_VERIFY_REQUIRED is already presented in /plugins/obs-outputs/librtmp/rtmp_sys.h on here.

    Thanks for the reply though.

    Back to top

    View user's profile Send private message

    Chiitoo
    Administrator
    Administrator

    Joined: 28 Feb 2010
    Posts: 2413
    Location: Here and Away Again

    PostPosted: Mon Jan 06, 2020 8:08 pm    Post subject: Re: ><)))°€ Reply with quote

    exeqtion wrote:
    Regarding the obs thread, MBEDTLS_SSL_VERIFY_REQUIRED is already presented in /plugins/obs-outputs/librtmp/rtmp_sys.h on here.



    Yes, it seems the user there changed MBEDTLS_SSL_VERIFY_REQUIRED to MBEDTLS_SSL_VERIFY_OPTIONAL which indeed does not sound like a fix at all, but a workaround at most, and probably not a very secure one at that.
    _________________
    Kind regards,

    Chiitoo.

    Sore wa sore, kore wa kore.

    Back to top

    View user's profile Send private message

    exeqtion
    n00b
    n00b

    Joined: 05 Jan 2020
    Posts: 15

    PostPosted: Mon Jan 06, 2020 8:41 pm    Post subject: Re: ><)))°€ Reply with quote

    Chiitoo wrote:
    exeqtion wrote:
    Regarding the obs thread, MBEDTLS_SSL_VERIFY_REQUIRED is already presented in /plugins/obs-outputs/librtmp/rtmp_sys.h on here.



    Yes, it seems the user there changed MBEDTLS_SSL_VERIFY_REQUIRED to MBEDTLS_SSL_VERIFY_OPTIONAL which indeed does not sound like a fix at all, but a workaround at most, and probably not a very secure one at that.

    Hi, chittoo

    My bad, I did not read it carefully. Now I followed it and rebuilt the package. I can finally able to stream on facebook.

    Thanks a lot mate!

    Back to top

    View user's profile Send private message

    Hu
    Moderator
    Moderator

    Joined: 06 Mar 2007
    Posts: 19775

    PostPosted: Tue Jan 07, 2020 2:16 am    Post subject: Reply with quote

    That could indicate that Facebook is using an x509 certificate that is not trusted by your system certificate store. This could be because it is issued by a non-public CA, such as Facebook’s internal IT team, or it could be that they procured the certificate from a public CA that is not on the Linux trust list. Can you dump the full x509 certificate that the server presents? If we knew more about why it was not trusted, we might be able to make it trusted, so that you could reactivate verification. What certificate trust list is OBS using? If it is a system supplied one, what version of the list do you have installed?
    Back to top

    View user's profile Send private message

    Chiitoo
    Administrator
    Administrator

    Joined: 28 Feb 2010
    Posts: 2413
    Location: Here and Away Again

    PostPosted: Tue Jan 07, 2020 3:30 am    Post subject: Reply with quote

    Hu wrote:
    What certificate trust list is OBS using?



    I believe it indeed looks under

    Code:
    /etc/ssl/certs/



    but I’m not sure about details beyond that at this time.
    _________________
    Kind regards,

    Chiitoo.

    Sore wa sore, kore wa kore.

    Back to top

    View user's profile Send private message

    exeqtion
    n00b
    n00b

    Joined: 05 Jan 2020
    Posts: 15

    PostPosted: Tue Jan 07, 2020 8:37 am    Post subject: Reply with quote

    Hu wrote:
    That could indicate that Facebook is using an x509 certificate that is not trusted by your system certificate store. This could be because it is issued by a non-public CA, such as Facebook’s internal IT team, or it could be that they procured the certificate from a public CA that is not on the Linux trust list. Can you dump the full x509 certificate that the server presents? If we knew more about why it was not trusted, we might be able to make it trusted, so that you could reactivate verification. What certificate trust list is OBS using? If it is a system supplied one, what version of the list do you have installed?



    Hi,

    I can dump the full x509 certs but I don’t know how to do that, can you tell me how to do that?

    If you need ls -al of /etc/ssl/certs/ directory here it is

    Code:
    total 772

    drwxr-xr-x 2 root root  16384 Jan  3 13:29  .

    drwxr-xr-x 5 root root   4096 Jan  3 13:29  ..

    lrwxrwxrwx 1 root root     45 Jan  3 13:29  02265526.0 -> Entrust_Root_Certification_Authority_-_G2.pem

    lrwxrwxrwx 1 root root     36 Jan  3 13:29  03179a64.0 -> Staat_der_Nederlanden_EV_Root_CA.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  062cdee6.0 -> GlobalSign_Root_CA_-_R3.pem

    lrwxrwxrwx 1 root root     25 Jan  3 13:29  064e0aa9.0 -> QuoVadis_Root_CA_2_G3.pem

    lrwxrwxrwx 1 root root     50 Jan  3 13:29  06dc52d5.0 -> SSL.com_EV_Root_Certification_Authority_RSA_R2.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  080911ac.0 -> QuoVadis_Root_CA.pem

    lrwxrwxrwx 1 root root     54 Jan  3 13:29  09789157.0 -> Starfield_Services_Root_Certificate_Authority_-_G2.pem

    lrwxrwxrwx 1 root root     15 Jan  3 13:29  0a775a30.0 -> GTS_Root_R3.pem

    lrwxrwxrwx 1 root root     16 Jan  3 13:29  0b1b94ef.0 -> CFCA_EV_ROOT.pem

    lrwxrwxrwx 1 root root     44 Jan  3 13:29  0bf05006.0 -> SSL.com_Root_Certification_Authority_ECC.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  0c4c9b6c.0 -> Global_Chambersign_Root_-_2008.pem

    lrwxrwxrwx 1 root root     32 Jan  3 13:29  0f5dc4f3.0 -> UCA_Extended_Validation_Root.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  0f6fa695.0 -> GDCA_TrustAUTH_R5_ROOT.pem

    lrwxrwxrwx 1 root root     15 Jan  3 13:29  1001acf7.0 -> GTS_Root_R1.pem

    lrwxrwxrwx 1 root root     46 Jan  3 13:29  106f3e4d.0 -> Entrust_Root_Certification_Authority_-_EC1.pem

    lrwxrwxrwx 1 root root     49 Jan  3 13:29  116bf586.0 -> GeoTrust_Primary_Certification_Authority_-_G2.pem

    lrwxrwxrwx 1 root root     35 Jan  3 13:29  128805a3.0 -> EE_Certification_Centre_Root_CA.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  14bc7599.0 -> emSign_ECC_Root_CA_-_G3.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  157753a5.0 -> AddTrust_External_Root.pem

    lrwxrwxrwx 1 root root     59 Jan  3 13:29  1636090b.0 -> Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem

    lrwxrwxrwx 1 root root     23 Jan  3 13:29  18856ac4.0 -> SecureSign_RootCA11.pem

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  1d3472b9.0 -> GlobalSign_ECC_Root_CA_-_R5.pem

    lrwxrwxrwx 1 root root     37 Jan  3 13:29  1e08bfd1.0 -> IdenTrust_Public_Sector_Root_CA_1.pem

    lrwxrwxrwx 1 root root     32 Jan  3 13:29  1e09d511.0 -> T-TeleSec_GlobalRoot_Class_2.pem

    lrwxrwxrwx 1 root root     38 Jan  3 13:29  244b5494.0 -> DigiCert_High_Assurance_EV_Root_CA.pem

    lrwxrwxrwx 1 root root     23 Jan  3 13:29  2923b3f9.0 -> emSign_Root_CA_-_G1.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  2ae6433e.0 -> CA_Disig_Root_R2.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  2b349938.0 -> AffirmTrust_Commercial.pem

    lrwxrwxrwx 1 root root     22 Jan  3 13:29  2c543cd1.0 -> GeoTrust_Global_CA.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  2e4eed3c.0 -> thawte_Primary_Root_CA.pem

    lrwxrwxrwx 1 root root     18 Jan  3 13:29  2e5ac55d.0 -> DST_Root_CA_X3.pem

    lrwxrwxrwx 1 root root     59 Jan  3 13:29  32888f65.0 -> Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem

    lrwxrwxrwx 1 root root     10 Jan  3 13:29  349f2832.0 -> EC-ACC.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  3513523f.0 -> DigiCert_Global_Root_CA.pem

    lrwxrwxrwx 1 root root     61 Jan  3 13:29  3bde41ac.0 -> Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  3e44d2f7.0 -> TrustCor_RootCert_CA-2.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  3e45d192.0 -> Hongkong_Post_Root_CA_1.pem

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  40193066.0 -> Certum_Trusted_Network_CA_2.pem

    lrwxrwxrwx 1 root root     16 Jan  3 13:29  4042bcee.0 -> ISRG_Root_X1.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  40547a79.0 -> COMODO_Certification_Authority.pem

    lrwxrwxrwx 1 root root     23 Jan  3 13:29  406c9bb1.0 -> emSign_Root_CA_-_C1.pem

    lrwxrwxrwx 1 root root     43 Jan  3 13:29  4304c5e5.0 -> Network_Solutions_Certificate_Authority.pem

    lrwxrwxrwx 1 root root     44 Jan  3 13:29  480720ec.0 -> GeoTrust_Primary_Certification_Authority.pem

    lrwxrwxrwx 1 root root     29 Jan  3 13:29  48bec511.0 -> Certum_Trusted_Network_CA.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  4a6481c9.0 -> GlobalSign_Root_CA_-_R2.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  4b718d9b.0 -> emSign_ECC_Root_CA_-_C3.pem

    lrwxrwxrwx 1 root root     45 Jan  3 13:29  4bfab552.0 -> Starfield_Root_Certificate_Authority_-_G2.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  4f316efb.0 -> SwissSign_Gold_CA_-_G2.pem

    lrwxrwxrwx 1 root root     35 Jan  3 13:29  5273a94c.0 -> E-Tugra_Certification_Authority.pem

    lrwxrwxrwx 1 root root     32 Jan  3 13:29  5443e9e3.0 -> T-TeleSec_GlobalRoot_Class_3.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  54657681.0 -> Buypass_Class_2_Root_CA.pem

    lrwxrwxrwx 1 root root     28 Jan  3 13:29  57bcb2da.0 -> SwissSign_Silver_CA_-_G2.pem

    lrwxrwxrwx 1 root root     38 Jan  3 13:29  5a4d6896.0 -> Staat_der_Nederlanden_Root_CA_-_G3.pem

    lrwxrwxrwx 1 root root     22 Jan  3 13:29  5ad8a5d6.0 -> GlobalSign_Root_CA.pem

    lrwxrwxrwx 1 root root     38 Jan  3 13:29  5c44d531.0 -> Staat_der_Nederlanden_Root_CA_-_G2.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  5cd81ad7.0 -> TeliaSonera_Root_CA_v1.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  5d3033c5.0 -> TrustCor_RootCert_CA-1.pem

    lrwxrwxrwx 1 root root     23 Jan  3 13:29  5f15c80c.0 -> TWCA_Global_Root_CA.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  607986c7.0 -> DigiCert_Global_Root_G2.pem

    lrwxrwxrwx 1 root root     15 Jan  3 13:29  626dceaf.0 -> GTS_Root_R2.pem

    lrwxrwxrwx 1 root root     15 Jan  3 13:29  6410666e.0 -> Taiwan_GRCA.pem

    lrwxrwxrwx 1 root root     29 Jan  3 13:29  653b494a.0 -> Baltimore_CyberTrust_Root.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  68dd7389.0 -> Hongkong_Post_Root_CA_3.pem

    lrwxrwxrwx 1 root root     40 Jan  3 13:29  6b99d060.0 -> Entrust_Root_Certification_Authority.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  6d41d539.0 -> Amazon_Root_CA_2.pem

    lrwxrwxrwx 1 root root     44 Jan  3 13:29  6fa5da56.0 -> SSL.com_Root_Certification_Authority_RSA.pem

    lrwxrwxrwx 1 root root     24 Jan  3 13:29  706f604c.0 -> XRamp_Global_CA_Root.pem

    lrwxrwxrwx 1 root root     25 Jan  3 13:29  749e9e03.0 -> QuoVadis_Root_CA_1_G3.pem

    lrwxrwxrwx 1 root root     28 Jan  3 13:29  75d1b2ed.0 -> DigiCert_Trusted_Root_G4.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  76cb8f92.0 -> Cybertrust_Global_Root.pem

    lrwxrwxrwx 1 root root     22 Jan  3 13:29  76faf6c0.0 -> QuoVadis_Root_CA_3.pem

    lrwxrwxrwx 1 root root     63 Jan  3 13:29  7719f463.0 -> Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem

    lrwxrwxrwx 1 root root     35 Jan  3 13:29  773e07ad.0 -> OISTE_WISeKey_Global_Root_GC_CA.pem

    lrwxrwxrwx 1 root root     18 Jan  3 13:29  7aaf71c0.0 -> TrustCor_ECA-1.pem

    lrwxrwxrwx 1 root root     64 Jan  3 13:29  7d0b38bd.0 -> VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  7f3d5d1d.0 -> DigiCert_Assured_ID_Root_G3.pem

    lrwxrwxrwx 1 root root     30 Jan  3 13:29  812e17de.0 -> Deutsche_Telekom_Root_CA_2.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  8160b96c.0 -> Microsec_e-Szigno_Root_CA_2009.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  8867006a.0 -> GeoTrust_Universal_CA_2.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  8cb5ee0f.0 -> Amazon_Root_CA_3.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  8d86cdd1.0 -> certSIGN_ROOT_CA.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  930ac5d2.0 -> Actalis_Authentication_Root_CA.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  93bc0acc.0 -> AffirmTrust_Networking.pem

    lrwxrwxrwx 1 root root     48 Jan  3 13:29  988a38cb.0 -> ‘NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem’

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  9c2e7d30.0 -> Sonera_Class_2_Root_CA.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  9c8dfbd4.0 -> AffirmTrust_Premium_ECC.pem

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  9d04f354.0 -> DigiCert_Assured_ID_Root_G2.pem

    lrwxrwxrwx 1 root root     24 Jan  3 13:29  9f0f5fd6.0 -> Certinomis_-_Root_CA.pem

    lrwxrwxrwx 1 root root     15 Jan  3 13:29  a3418fda.0 -> GTS_Root_R4.pem

    lrwxrwxrwx 1 root root     13 Jan  3 13:29  a94d09e5.0 -> ACCVRAIZ1.pem

    lrwxrwxrwx 1 root root     56 Jan  2 06:31  ACCVRAIZ1.pem -> ../../../usr/share/ca-certificates/mozilla/ACCVRAIZ1.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  AC_RAIZ_FNMT-RCM.pem -> ../../../usr/share/ca-certificates/mozilla/AC_RAIZ_FNMT-RCM.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  Actalis_Authentication_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Actalis_Authentication_Root_CA.crt

    lrwxrwxrwx 1 root root     25 Jan  3 13:29  ad088e1d.0 -> GeoTrust_Universal_CA.pem

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  AddTrust_External_Root.pem -> ../../../usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt

    lrwxrwxrwx 1 root root     45 Jan  3 13:29  aee5f10d.0 -> Entrust.net_Premium_2048_Secure_Server_CA.pem

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  AffirmTrust_Commercial.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Commercial.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  AffirmTrust_Networking.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Networking.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  AffirmTrust_Premium_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Premium_ECC.crt

    lrwxrwxrwx 1 root root     66 Jan  2 06:31  AffirmTrust_Premium.pem -> ../../../usr/share/ca-certificates/mozilla/AffirmTrust_Premium.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  Amazon_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_1.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  Amazon_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_2.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  Amazon_Root_CA_3.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_3.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  Amazon_Root_CA_4.pem -> ../../../usr/share/ca-certificates/mozilla/Amazon_Root_CA_4.crt

    lrwxrwxrwx 1 root root     68 Jan  2 06:31  Atos_TrustedRoot_2011.pem -> ../../../usr/share/ca-certificates/mozilla/Atos_TrustedRoot_2011.crt

    lrwxrwxrwx 1 root root    104 Jan  2 06:31  Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem -> ../../../usr/share/ca-certificates/mozilla/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.crt

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  b0e59380.0 -> GlobalSign_ECC_Root_CA_-_R4.pem

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  b1159c4c.0 -> DigiCert_Assured_ID_Root_CA.pem

    lrwxrwxrwx 1 root root     35 Jan  3 13:29  b1b8a7f3.0 -> OISTE_WISeKey_Global_Root_GA_CA.pem

    lrwxrwxrwx 1 root root     64 Jan  3 13:29  b204d74a.0 -> VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  b66938e9.0 -> Secure_Global_CA.pem

    lrwxrwxrwx 1 root root     23 Jan  3 13:29  b727005e.0 -> AffirmTrust_Premium.pem

    lrwxrwxrwx 1 root root     37 Jan  3 13:29  b7a5b843.0 -> TWCA_Root_Certification_Authority.pem

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  ba89ed3b.0 -> thawte_Primary_Root_CA_-_G3.pem

    lrwxrwxrwx 1 root root     72 Jan  2 06:31  Baltimore_CyberTrust_Root.pem -> ../../../usr/share/ca-certificates/mozilla/Baltimore_CyberTrust_Root.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  Buypass_Class_2_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Buypass_Class_2_Root_CA.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  Buypass_Class_3_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Buypass_Class_3_Root_CA.crt

    lrwxrwxrwx 1 root root     51 Jan  3 13:29  c01cdfa2.0 -> VeriSign_Universal_Root_Certification_Authority.pem

    lrwxrwxrwx 1 root root     22 Jan  3 13:29  c01eb047.0 -> UCA_Global_G2_Root.pem

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  c089bbbd.0 -> thawte_Primary_Root_CA_-_G2.pem

    lrwxrwxrwx 1 root root     64 Jan  3 13:29  c0ff1f52.0 -> Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  c28a8a30.0 -> D-TRUST_Root_Class_3_CA_2_2009.pem

    lrwxrwxrwx 1 root root     36 Jan  3 13:29  c47d9980.0 -> Chambers_of_Commerce_Root_-_2008.pem

    lrwxrwxrwx 1 root root     37 Jan  3 13:29  ca6e4ad9.0 -> ePKI_Root_Certification_Authority.pem

    -rw-r—r— 1 root root 217805 Jan  2 06:31  ca-certificates.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  CA_Disig_Root_R2.pem -> ../../../usr/share/ca-certificates/mozilla/CA_Disig_Root_R2.crt

    lrwxrwxrwx 1 root root     44 Jan  3 13:29  cbf06781.0 -> Go_Daddy_Root_Certificate_Authority_-_G2.pem

    lrwxrwxrwx 1 root root     14 Jan  3 13:29  cc450945.0 -> Izenpe.com.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  cd58d51e.0 -> Security_Communication_RootCA2.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  cd8c0d63.0 -> AC_RAIZ_FNMT-RCM.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  ce5e74ef.0 -> Amazon_Root_CA_1.pem

    lrwxrwxrwx 1 root root     55 Jan  2 06:31  Certigna.pem -> ../../../usr/share/ca-certificates/mozilla/Certigna.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  Certigna_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certigna_Root_CA.crt

    lrwxrwxrwx 1 root root     67 Jan  2 06:31  Certinomis_-_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certinomis_-_Root_CA.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  Certplus_Class_2_Primary_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certplus_Class_2_Primary_CA.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  certSIGN_ROOT_CA.pem -> ../../../usr/share/ca-certificates/mozilla/certSIGN_ROOT_CA.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  Certum_Trusted_Network_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA_2.crt

    lrwxrwxrwx 1 root root     72 Jan  2 06:31  Certum_Trusted_Network_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Certum_Trusted_Network_CA.crt

    lrwxrwxrwx 1 root root     59 Jan  2 06:31  CFCA_EV_ROOT.pem -> ../../../usr/share/ca-certificates/mozilla/CFCA_EV_ROOT.crt

    lrwxrwxrwx 1 root root     79 Jan  2 06:31  Chambers_of_Commerce_Root_-_2008.pem -> ../../../usr/share/ca-certificates/mozilla/Chambers_of_Commerce_Root_-_2008.crt

    lrwxrwxrwx 1 root root     71 Jan  2 06:31  Comodo_AAA_Services_root.pem -> ../../../usr/share/ca-certificates/mozilla/Comodo_AAA_Services_root.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  COMODO_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_Certification_Authority.crt

    lrwxrwxrwx 1 root root     81 Jan  2 06:31  COMODO_ECC_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_ECC_Certification_Authority.crt

    lrwxrwxrwx 1 root root     81 Jan  2 06:31  COMODO_RSA_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/COMODO_RSA_Certification_Authority.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  Cybertrust_Global_Root.pem -> ../../../usr/share/ca-certificates/mozilla/Cybertrust_Global_Root.crt

    lrwxrwxrwx 1 root root     37 Jan  3 13:29  d4dae3dd.0 -> D-TRUST_Root_Class_3_CA_2_EV_2009.pem

    lrwxrwxrwx 1 root root     38 Jan  3 13:29  d6325660.0 -> COMODO_RSA_Certification_Authority.pem

    lrwxrwxrwx 1 root root     22 Jan  3 13:29  d7e8dc79.0 -> QuoVadis_Root_CA_2.pem

    lrwxrwxrwx 1 root root     23 Jan  3 13:29  d853d49e.0 -> Trustis_FPS_Root_CA.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  dc4d6a89.0 -> GlobalSign_Root_CA_-_R6.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  dd8e9d41.0 -> DigiCert_Global_Root_G3.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  de6d66f3.0 -> Amazon_Root_CA_4.pem

    lrwxrwxrwx 1 root root     26 Jan  3 13:29  def36a68.0 -> LuxTrust_Global_Root_2.pem

    lrwxrwxrwx 1 root root     73 Jan  2 06:31  Deutsche_Telekom_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/Deutsche_Telekom_Root_CA_2.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  DigiCert_Assured_ID_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_CA.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  DigiCert_Assured_ID_Root_G2.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G2.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  DigiCert_Assured_ID_Root_G3.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Assured_ID_Root_G3.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  DigiCert_Global_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_CA.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  DigiCert_Global_Root_G2.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G2.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  DigiCert_Global_Root_G3.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Global_Root_G3.crt

    lrwxrwxrwx 1 root root     81 Jan  2 06:31  DigiCert_High_Assurance_EV_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_High_Assurance_EV_Root_CA.crt

    lrwxrwxrwx 1 root root     71 Jan  2 06:31  DigiCert_Trusted_Root_G4.pem -> ../../../usr/share/ca-certificates/mozilla/DigiCert_Trusted_Root_G4.crt

    lrwxrwxrwx 1 root root     61 Jan  2 06:31  DST_Root_CA_X3.pem -> ../../../usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  D-TRUST_Root_Class_3_CA_2_2009.pem -> ../../../usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_2009.crt

    lrwxrwxrwx 1 root root     80 Jan  2 06:31  D-TRUST_Root_Class_3_CA_2_EV_2009.pem -> ../../../usr/share/ca-certificates/mozilla/D-TRUST_Root_Class_3_CA_2_EV_2009.crt

    lrwxrwxrwx 1 root root     12 Jan  3 13:29  e113c810.0 -> Certigna.pem

    lrwxrwxrwx 1 root root     25 Jan  3 13:29  e18bfb83.0 -> QuoVadis_Root_CA_3_G3.pem

    lrwxrwxrwx 1 root root     49 Jan  3 13:29  e2799e36.0 -> GeoTrust_Primary_Certification_Authority_-_G3.pem

    lrwxrwxrwx 1 root root     25 Jan  3 13:29  e36a6752.0 -> Atos_TrustedRoot_2011.pem

    lrwxrwxrwx 1 root root     35 Jan  3 13:29  e73d606e.0 -> OISTE_WISeKey_Global_Root_GB_CA.pem

    lrwxrwxrwx 1 root root     27 Jan  3 13:29  e8de2f56.0 -> Buypass_Class_3_Root_CA.pem

    lrwxrwxrwx 1 root root     53 Jan  2 06:31  EC-ACC.pem -> ../../../usr/share/ca-certificates/mozilla/EC-ACC.crt

    lrwxrwxrwx 1 root root     28 Jan  3 13:29  ee64a828.0 -> Comodo_AAA_Services_root.pem

    lrwxrwxrwx 1 root root     78 Jan  2 06:31  EE_Certification_Centre_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/EE_Certification_Centre_Root_CA.crt

    lrwxrwxrwx 1 root root     38 Jan  3 13:29  eed8c118.0 -> COMODO_ECC_Certification_Authority.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  ef954a4e.0 -> IdenTrust_Commercial_Root_CA_1.pem

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  emSign_ECC_Root_CA_-_C3.pem -> ../../../usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_C3.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  emSign_ECC_Root_CA_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/emSign_ECC_Root_CA_-_G3.crt

    lrwxrwxrwx 1 root root     66 Jan  2 06:31  emSign_Root_CA_-_C1.pem -> ../../../usr/share/ca-certificates/mozilla/emSign_Root_CA_-_C1.crt

    lrwxrwxrwx 1 root root     66 Jan  2 06:31  emSign_Root_CA_-_G1.pem -> ../../../usr/share/ca-certificates/mozilla/emSign_Root_CA_-_G1.crt

    lrwxrwxrwx 1 root root     88 Jan  2 06:31  Entrust.net_Premium_2048_Secure_Server_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust.net_Premium_2048_Secure_Server_CA.crt

    lrwxrwxrwx 1 root root     89 Jan  2 06:31  Entrust_Root_Certification_Authority_-_EC1.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_EC1.crt

    lrwxrwxrwx 1 root root     88 Jan  2 06:31  Entrust_Root_Certification_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority_-_G2.crt

    lrwxrwxrwx 1 root root     83 Jan  2 06:31  Entrust_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/Entrust_Root_Certification_Authority.crt

    lrwxrwxrwx 1 root root     80 Jan  2 06:31  ePKI_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/ePKI_Root_Certification_Authority.crt

    lrwxrwxrwx 1 root root     78 Jan  2 06:31  E-Tugra_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/E-Tugra_Certification_Authority.crt

    lrwxrwxrwx 1 root root     31 Jan  3 13:29  f060240e.0 -> Certplus_Class_2_Primary_CA.pem

    lrwxrwxrwx 1 root root     23 Jan  3 13:29  f081611a.0 -> Go_Daddy_Class_2_CA.pem

    lrwxrwxrwx 1 root root     47 Jan  3 13:29  f0c70a8d.0 -> SSL.com_EV_Root_Certification_Authority_ECC.pem

    lrwxrwxrwx 1 root root     41 Jan  3 13:29  f30dd6ad.0 -> USERTrust_ECC_Certification_Authority.pem

    lrwxrwxrwx 1 root root     34 Jan  3 13:29  f3377b1b.0 -> Security_Communication_Root_CA.pem

    lrwxrwxrwx 1 root root     24 Jan  3 13:29  f387163d.0 -> Starfield_Class_2_CA.pem

    lrwxrwxrwx 1 root root     18 Jan  3 13:29  f39fc864.0 -> SecureTrust_CA.pem

    lrwxrwxrwx 1 root root     20 Jan  3 13:29  f51bb24c.0 -> Certigna_Root_CA.pem

    lrwxrwxrwx 1 root root     41 Jan  3 13:29  fc5a8f99.0 -> USERTrust_RSA_Certification_Authority.pem

    lrwxrwxrwx 1 root root     19 Jan  3 13:29  fe8a2cd8.0 -> SZAFIR_ROOT_CA2.pem

    lrwxrwxrwx 1 root root     49 Jan  3 13:29  ff34af3f.0 -> TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  GDCA_TrustAUTH_R5_ROOT.pem -> ../../../usr/share/ca-certificates/mozilla/GDCA_TrustAUTH_R5_ROOT.crt

    lrwxrwxrwx 1 root root     65 Jan  2 06:31  GeoTrust_Global_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Global_CA.crt

    lrwxrwxrwx 1 root root     92 Jan  2 06:31  GeoTrust_Primary_Certification_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G2.crt

    lrwxrwxrwx 1 root root     92 Jan  2 06:31  GeoTrust_Primary_Certification_Authority_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority_-_G3.crt

    lrwxrwxrwx 1 root root     87 Jan  2 06:31  GeoTrust_Primary_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Primary_Certification_Authority.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  GeoTrust_Universal_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA_2.crt

    lrwxrwxrwx 1 root root     68 Jan  2 06:31  GeoTrust_Universal_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GeoTrust_Universal_CA.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  Global_Chambersign_Root_-_2008.pem -> ../../../usr/share/ca-certificates/mozilla/Global_Chambersign_Root_-_2008.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  GlobalSign_ECC_Root_CA_-_R4.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R4.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  GlobalSign_ECC_Root_CA_-_R5.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_ECC_Root_CA_-_R5.crt

    lrwxrwxrwx 1 root root     65 Jan  2 06:31  GlobalSign_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  GlobalSign_Root_CA_-_R2.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R2.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  GlobalSign_Root_CA_-_R3.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R3.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  GlobalSign_Root_CA_-_R6.pem -> ../../../usr/share/ca-certificates/mozilla/GlobalSign_Root_CA_-_R6.crt

    lrwxrwxrwx 1 root root     66 Jan  2 06:31  Go_Daddy_Class_2_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Go_Daddy_Class_2_CA.crt

    lrwxrwxrwx 1 root root     87 Jan  2 06:31  Go_Daddy_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Go_Daddy_Root_Certificate_Authority_-_G2.crt

    lrwxrwxrwx 1 root root     58 Jan  2 06:31  GTS_Root_R1.pem -> ../../../usr/share/ca-certificates/mozilla/GTS_Root_R1.crt

    lrwxrwxrwx 1 root root     58 Jan  2 06:31  GTS_Root_R2.pem -> ../../../usr/share/ca-certificates/mozilla/GTS_Root_R2.crt

    lrwxrwxrwx 1 root root     58 Jan  2 06:31  GTS_Root_R3.pem -> ../../../usr/share/ca-certificates/mozilla/GTS_Root_R3.crt

    lrwxrwxrwx 1 root root     58 Jan  2 06:31  GTS_Root_R4.pem -> ../../../usr/share/ca-certificates/mozilla/GTS_Root_R4.crt

    lrwxrwxrwx 1 root root    106 Jan  2 06:31  Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.crt

    lrwxrwxrwx 1 root root    102 Jan  2 06:31  Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2011.crt

    lrwxrwxrwx 1 root root    102 Jan  2 06:31  Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem -> ../../../usr/share/ca-certificates/mozilla/Hellenic_Academic_and_Research_Institutions_RootCA_2015.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  Hongkong_Post_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_1.crt

    lrwxrwxrwx 1 root root     70 Jan  2 06:31  Hongkong_Post_Root_CA_3.pem -> ../../../usr/share/ca-certificates/mozilla/Hongkong_Post_Root_CA_3.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  IdenTrust_Commercial_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/IdenTrust_Commercial_Root_CA_1.crt

    lrwxrwxrwx 1 root root     80 Jan  2 06:31  IdenTrust_Public_Sector_Root_CA_1.pem -> ../../../usr/share/ca-certificates/mozilla/IdenTrust_Public_Sector_Root_CA_1.crt

    lrwxrwxrwx 1 root root     59 Jan  2 06:31  ISRG_Root_X1.pem -> ../../../usr/share/ca-certificates/mozilla/ISRG_Root_X1.crt

    lrwxrwxrwx 1 root root     57 Jan  2 06:31  Izenpe.com.pem -> ../../../usr/share/ca-certificates/mozilla/Izenpe.com.crt

    -rw-r—r— 1 root root      0 Jan  3 13:29  .keep_dev-libs_openssl-0

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  LuxTrust_Global_Root_2.pem -> ../../../usr/share/ca-certificates/mozilla/LuxTrust_Global_Root_2.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  Microsec_e-Szigno_Root_CA_2009.pem -> ../../../usr/share/ca-certificates/mozilla/Microsec_e-Szigno_Root_CA_2009.crt

    lrwxrwxrwx 1 root root     91 Jan  2 06:31 ‘NetLock_Arany_=Class_Gold=_Főtanúsítvány.pem’ -> ‘../../../usr/share/ca-certificates/mozilla/NetLock_Arany_=Class_Gold=_Főtanúsítvány.crt’

    lrwxrwxrwx 1 root root     86 Jan  2 06:31  Network_Solutions_Certificate_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/Network_Solutions_Certificate_Authority.crt

    lrwxrwxrwx 1 root root     78 Jan  2 06:31  OISTE_WISeKey_Global_Root_GA_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GA_CA.crt

    lrwxrwxrwx 1 root root     78 Jan  2 06:31  OISTE_WISeKey_Global_Root_GB_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GB_CA.crt

    lrwxrwxrwx 1 root root     78 Jan  2 06:31  OISTE_WISeKey_Global_Root_GC_CA.pem -> ../../../usr/share/ca-certificates/mozilla/OISTE_WISeKey_Global_Root_GC_CA.crt

    lrwxrwxrwx 1 root root     68 Jan  2 06:31  QuoVadis_Root_CA_1_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_1_G3.crt

    lrwxrwxrwx 1 root root     68 Jan  2 06:31  QuoVadis_Root_CA_2_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2_G3.crt

    lrwxrwxrwx 1 root root     65 Jan  2 06:31  QuoVadis_Root_CA_2.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_2.crt

    lrwxrwxrwx 1 root root     68 Jan  2 06:31  QuoVadis_Root_CA_3_G3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3_G3.crt

    lrwxrwxrwx 1 root root     65 Jan  2 06:31  QuoVadis_Root_CA_3.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA_3.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  QuoVadis_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/QuoVadis_Root_CA.crt

    lrwxrwxrwx 1 root root     63 Jan  2 06:31  Secure_Global_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Secure_Global_CA.crt

    lrwxrwxrwx 1 root root     66 Jan  2 06:31  SecureSign_RootCA11.pem -> ../../../usr/share/ca-certificates/mozilla/SecureSign_RootCA11.crt

    lrwxrwxrwx 1 root root     61 Jan  2 06:31  SecureTrust_CA.pem -> ../../../usr/share/ca-certificates/mozilla/SecureTrust_CA.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  Security_Communication_RootCA2.pem -> ../../../usr/share/ca-certificates/mozilla/Security_Communication_RootCA2.crt

    lrwxrwxrwx 1 root root     77 Jan  2 06:31  Security_Communication_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Security_Communication_Root_CA.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  Sonera_Class_2_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Sonera_Class_2_Root_CA.crt

    lrwxrwxrwx 1 root root     90 Jan  2 06:31  SSL.com_EV_Root_Certification_Authority_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_ECC.crt

    lrwxrwxrwx 1 root root     93 Jan  2 06:31  SSL.com_EV_Root_Certification_Authority_RSA_R2.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_EV_Root_Certification_Authority_RSA_R2.crt

    lrwxrwxrwx 1 root root     87 Jan  2 06:31  SSL.com_Root_Certification_Authority_ECC.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_ECC.crt

    lrwxrwxrwx 1 root root     87 Jan  2 06:31  SSL.com_Root_Certification_Authority_RSA.pem -> ../../../usr/share/ca-certificates/mozilla/SSL.com_Root_Certification_Authority_RSA.crt

    lrwxrwxrwx 1 root root     79 Jan  2 06:31  Staat_der_Nederlanden_EV_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_EV_Root_CA.crt

    lrwxrwxrwx 1 root root     81 Jan  2 06:31  Staat_der_Nederlanden_Root_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G2.crt

    lrwxrwxrwx 1 root root     81 Jan  2 06:31  Staat_der_Nederlanden_Root_CA_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/Staat_der_Nederlanden_Root_CA_-_G3.crt

    lrwxrwxrwx 1 root root     67 Jan  2 06:31  Starfield_Class_2_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Class_2_CA.crt

    lrwxrwxrwx 1 root root     88 Jan  2 06:31  Starfield_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Root_Certificate_Authority_-_G2.crt

    lrwxrwxrwx 1 root root     97 Jan  2 06:31  Starfield_Services_Root_Certificate_Authority_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/Starfield_Services_Root_Certificate_Authority_-_G2.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  SwissSign_Gold_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/SwissSign_Gold_CA_-_G2.crt

    lrwxrwxrwx 1 root root     71 Jan  2 06:31  SwissSign_Silver_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/SwissSign_Silver_CA_-_G2.crt

    lrwxrwxrwx 1 root root     62 Jan  2 06:31  SZAFIR_ROOT_CA2.pem -> ../../../usr/share/ca-certificates/mozilla/SZAFIR_ROOT_CA2.crt

    lrwxrwxrwx 1 root root     58 Jan  2 06:31  Taiwan_GRCA.pem -> ../../../usr/share/ca-certificates/mozilla/Taiwan_GRCA.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  TeliaSonera_Root_CA_v1.pem -> ../../../usr/share/ca-certificates/mozilla/TeliaSonera_Root_CA_v1.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  thawte_Primary_Root_CA_-_G2.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G2.crt

    lrwxrwxrwx 1 root root     74 Jan  2 06:31  thawte_Primary_Root_CA_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA_-_G3.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  thawte_Primary_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/thawte_Primary_Root_CA.crt

    lrwxrwxrwx 1 root root     61 Jan  2 06:31  TrustCor_ECA-1.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_ECA-1.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  TrustCor_RootCert_CA-1.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-1.crt

    lrwxrwxrwx 1 root root     69 Jan  2 06:31  TrustCor_RootCert_CA-2.pem -> ../../../usr/share/ca-certificates/mozilla/TrustCor_RootCert_CA-2.crt

    lrwxrwxrwx 1 root root     66 Jan  2 06:31  Trustis_FPS_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/Trustis_FPS_Root_CA.crt

    lrwxrwxrwx 1 root root     75 Jan  2 06:31  T-TeleSec_GlobalRoot_Class_2.pem -> ../../../usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_2.crt

    lrwxrwxrwx 1 root root     75 Jan  2 06:31  T-TeleSec_GlobalRoot_Class_3.pem -> ../../../usr/share/ca-certificates/mozilla/T-TeleSec_GlobalRoot_Class_3.crt

    lrwxrwxrwx 1 root root     92 Jan  2 06:31  TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem -> ../../../usr/share/ca-certificates/mozilla/TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.crt

    lrwxrwxrwx 1 root root     66 Jan  2 06:31  TWCA_Global_Root_CA.pem -> ../../../usr/share/ca-certificates/mozilla/TWCA_Global_Root_CA.crt

    lrwxrwxrwx 1 root root     80 Jan  2 06:31  TWCA_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/TWCA_Root_Certification_Authority.crt

    lrwxrwxrwx 1 root root     75 Jan  2 06:31  UCA_Extended_Validation_Root.pem -> ../../../usr/share/ca-certificates/mozilla/UCA_Extended_Validation_Root.crt

    lrwxrwxrwx 1 root root     65 Jan  2 06:31  UCA_Global_G2_Root.pem -> ../../../usr/share/ca-certificates/mozilla/UCA_Global_G2_Root.crt

    lrwxrwxrwx 1 root root     84 Jan  2 06:31  USERTrust_ECC_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/USERTrust_ECC_Certification_Authority.crt

    lrwxrwxrwx 1 root root     84 Jan  2 06:31  USERTrust_RSA_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/USERTrust_RSA_Certification_Authority.crt

    lrwxrwxrwx 1 root root    107 Jan  2 06:31  Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem -> ../../../usr/share/ca-certificates/mozilla/Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.crt

    lrwxrwxrwx 1 root root    107 Jan  2 06:31  VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G4.crt

    lrwxrwxrwx 1 root root    107 Jan  2 06:31  VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Class_3_Public_Primary_Certification_Authority_-_G5.crt

    lrwxrwxrwx 1 root root     94 Jan  2 06:31  VeriSign_Universal_Root_Certification_Authority.pem -> ../../../usr/share/ca-certificates/mozilla/VeriSign_Universal_Root_Certification_Authority.crt

    lrwxrwxrwx 1 root root     67 Jan  2 06:31  XRamp_Global_CA_Root.pem -> ../../../usr/share/ca-certificates/mozilla/XRamp_Global_CA_Root.crt

    Back to top

    View user's profile Send private message

    Chiitoo
    Administrator
    Administrator

    Joined: 28 Feb 2010
    Posts: 2413
    Location: Here and Away Again

    PostPosted: Mon Jan 13, 2020 11:29 am    Post subject: Reply with quote

    This may have been fixed here: https://github.com/obsproject/obs-studio/pull/2314
    _________________
    Kind regards,

    Chiitoo.

    Sore wa sore, kore wa kore.

    Back to top

    View user's profile Send private message

    exeqtion
    n00b
    n00b

    Joined: 05 Jan 2020
    Posts: 15

    PostPosted: Mon Jan 13, 2020 5:53 pm    Post subject: Reply with quote

    Chiitoo wrote:
    This may have been fixed here: https://github.com/obsproject/obs-studio/pull/2314



    Hello, mate. Yeah they fixed it; i just cloned latest git and compiled obs. Now I can stream on fb without any issues. Thanks!

    Back to top

    View user's profile Send private message

    Display posts from previous:   

    You cannot post new topics in this forum
    You cannot reply to topics in this forum
    You cannot edit your posts in this forum
    You cannot delete your posts in this forum
    You cannot vote in polls in this forum

    Hello,

    When I open KMail, Nothing is shown in the email body but the «HTML message» black box.
    On top of that, the CPU usage of Kmail gets high (constant ~25%).

    Here is the logs just after I open Kmail:
    (journalctl -r)

    mar 10 18:35:06 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4164, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:06 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4161, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:06 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4148, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:04 HP-L akonadiserver[789]: org.kde.pim.akonadiserver.search: Search  "kmail2-1509247245-SearchSession" done (without remote search)
    mar 10 18:35:04 HP-L akonadiserver[789]: org.kde.pim.akonadiserver.search: Executing search "kmail2-1509247245-SearchSession"
    mar 10 18:35:04 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f8880063cd0) identified as "MessageListTagCacheMonitor - 93863069692368"
    mar 10 18:35:04 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f8880063cd0) )
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1620, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1604, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1588, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1572, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1533, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1515, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1511, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:03 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1494, resource id: 113246286, major code: 130 (Unknown), minor code: 3
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f8880117d30) identified as "FilterManagerTagMonitor - 93863070821664"
    mar 10 18:35:03 HP-L kwin_x11[470]: qt.qpa.xcb: QXcbConnection: XCB error: 9 (BadDrawable), sequence: 21000, resource id: 16810710, major code: 14 (GetGeometry), minor code: 0
    mar 10 18:35:03 HP-L kwin_x11[470]: qt.qpa.xcb: QXcbConnection: XCB error: 3 (BadWindow), sequence: 20999, resource id: 16810710, major code: 3 (GetWindowAttributes), minor code: 0
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f8880117d30) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f888023e190) identified as "TagActionManagerMonitor - 93863071073936"
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f8880202040) identified as "MessageViewerMonitor - 93863066708640"
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f8880202040) identified as "MessageViewerMonitor - 93863066708640"
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f8880075670) identified as "MessageListTagMonitor - 93863067604144"
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f888003e760) identified as "KMail Kernel ETM - 93863065948496"
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber Akonadi::Server::NotificationSubscriber(0x7f888005b0a0) identified as "SpecialCollectionsMonitor - 93863066253984"
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f888023e190) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f8880202040) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber "" disconnected
    mar 10 18:35:03 HP-L kmail[13215]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:35:03 HP-L kmail[13215]: Error loading text-to-speech plug-in "speechd"
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f8880202040) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f8880075670) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f888005b0a0) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f888003e760) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: New notification connection (registered as Akonadi::Server::NotificationSubscriber(0x7f888003e760) )
    mar 10 18:35:03 HP-L akonadiserver[789]: org.kde.pim.akonadiserver: Subscriber "" disconnected
    mar 10 18:35:03 HP-L systemd[408]: Started KMail - Logiciel de courriel.
    mar 10 18:45:40 HP-L kmail[19170]: FolderCollectionMonitor::~FolderCollectionMonitor()   MailCommon::FolderCollectionMonitor(0x5561895df760)
    mar 10 18:44:39 HP-L kmail[19170]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:44:36 HP-L kmail[19170]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2345, resource id: 94371918, major code: 130 (Unknown), minor >
    mar 10 18:44:36 HP-L kmail[19170]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2341, resource id: 94371918, major code: 130 (Unknown), minor >
    mar 10 18:44:36 HP-L kmail[19170]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2317, resource id: 94371918, major code: 130 (Unknown), minor >
    mar 10 18:44:35 HP-L kmail[19170]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:38:46 HP-L kmail[13215]: FolderCollectionMonitor::~FolderCollectionMonitor()   MailCommon::FolderCollectionMonitor(0x555e32aebf00)
    mar 10 18:35:06 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4164, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:06 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4161, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:06 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4148, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1620, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1604, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1588, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1572, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1533, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1515, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:04 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1511, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:03 HP-L kmail[13215]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1494, resource id: 113246286, major code: 130 (Unknown), minor>
    mar 10 18:35:03 HP-L kmail[13215]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:35:03 HP-L kmail[13215]: Error loading text-to-speech plug-in "speechd"
    mar 10 18:32:13 HP-L kmail[10498]: FolderCollectionMonitor::~FolderCollectionMonitor()   MailCommon::FolderCollectionMonitor(0x561759c0f100)
    mar 10 18:30:58 HP-L kmail[10498]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 6244, resource id: 100663374, major code: 130 (Unknown), minor>
    mar 10 18:30:58 HP-L kmail[10498]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 6241, resource id: 100663374, major code: 130 (Unknown), minor>
    mar 10 18:30:58 HP-L kmail[10498]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 6232, resource id: 100663374, major code: 130 (Unknown), minor>
    mar 10 18:30:56 HP-L kmail[10498]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:30:53 HP-L kmail[10498]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:24:40 HP-L kmail[3445]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:18:42 HP-L kmail[772]: FolderCollectionMonitor::~FolderCollectionMonitor()   MailCommon::FolderCollectionMonitor(0x564992eee200)
    mar 10 18:17:49 HP-L kmail[772]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")
    mar 10 18:17:42 HP-L kmail[772]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2252, resource id: 52428878, major code: 130 (Unknown), minor co>
    mar 10 18:17:42 HP-L kmail[772]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2249, resource id: 52428878, major code: 130 (Unknown), minor co>
    mar 10 18:17:42 HP-L kmail[772]: qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2243, resource id: 52428878, major code: 130 (Unknown), minor co>
    mar 10 18:17:40 HP-L kmail[772]: Cannot initialize model with data QJsonObject() . missing: QJsonValue(string, "urls")

    System infos:

    Operating System: Arch Linux
    KDE Plasma Version: 5.21.2
    KDE Frameworks Version: 5.79.0
    Qt Version: 5.15.2
    Kernel Version: 5.10.22-2-lts
    OS Type: 64-bit
    Graphics Platform: X11
    Processors: 4 × Intel® Core™ i5-7200U CPU @ 2.50GHz
    Memory: 7.7 Gio of RAM
    Graphics Processor: Mesa Intel® HD Graphics 620

    It seems to be related to akonadi.

    Do you have any idea how to fix this ?

    Last edited by Luh (2021-03-11 07:37:51)

    Понравилась статья? Поделить с друзьями:
  • Quote command returned error фтп 1с переместить
  • Quote command returned error перевод
  • Quota exceeded error перевод
  • Quixel bridge blender export error
  • Quik ошибка 810