Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. [SOLVED] Qt on Slackware Linux

[SOLVED] Qt on Slackware Linux

Scheduled Pinned Locked Moved General and Desktop
32 Posts 2 Posters 15.1k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Sleicreider
    wrote on 19 Mar 2014, 07:47 last edited by
    #18

    It still appears in the application output :
    Starting /home/user/QT C++/myproject/myproject...
    libGL error: failed to load driver: i965
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.

    Application still works fine.

    I have no idea, but it's working so doesn't matter i think xD

    1 Reply Last reply
    0
    • A Offline
      A Offline
      andreyc
      wrote on 19 Mar 2014, 17:40 last edited by
      #19

      What if you will run your app with LIBGL_DEBUG=verbose
      something like
      @
      export LIBGL_DEBUG=verbose
      /home/user/QT C++/myproject/myproject…
      @

      If it does not bother you then you can run your app and redirect all output to /dev/null
      @
      /home/user/QT C++/myproject/myproject… > /dev/null 2>&1
      @

      1 Reply Last reply
      0
      • S Offline
        S Offline
        Sleicreider
        wrote on 20 Mar 2014, 07:58 last edited by
        #20

        first one without root:

        libGL: OpenDriver: trying /usr/lib64/xorg/modules/dri/i965_dri.so
        libGL error: failed to open drm device: Permission denied
        libGL error: failed to load driver: i965
        libGL: OpenDriver: trying /usr/lib64/xorg/modules/dri/swrast_dri.so

        with root:
        Qt: Session management error: Authentication Rejected, reason : None of the authentication protocols specified are supported and host-based authentication failed
        libGL: OpenDriver: trying /usr/lib64/xorg/modules/dri/i965_dri.so
        libGL: Can't open configuration file /root/.drirc: No such file or directory.

        I also tried the second one.
        Whats the reason, to redirect the output to /dev/null ^^

        1 Reply Last reply
        0
        • A Offline
          A Offline
          andreyc
          wrote on 20 Mar 2014, 16:43 last edited by
          #21

          About /dev/null.
          It will hide your error messages and you will not worry about it. :-)

          Some GNU/Linuxes have a "video" group and only members of that group are allowed to use opengl.
          Could you check if Slackware has such restriction. If so then add your self to that video group re-login and try to run your app again.

          1 Reply Last reply
          0
          • S Offline
            S Offline
            Sleicreider
            wrote on 21 Mar 2014, 08:01 last edited by
            #22

            i just added my self with $usermod -aG video <username>
            -> in /etc/group its says video:x:18:

            but same error still appears.

            1 Reply Last reply
            0
            • A Offline
              A Offline
              andreyc
              wrote on 21 Mar 2014, 13:54 last edited by
              #23

              do you see the same error if you run "glxinfo":http://dri.freedesktop.org/wiki/glxinfo/ or glxgears
              @
              glxinfo
              glxgears
              @

              1 Reply Last reply
              0
              • S Offline
                S Offline
                Sleicreider
                wrote on 21 Mar 2014, 14:41 last edited by
                #24

                under normal user: for both
                libGL error: failed to load driver: i965
                libGL error: Try again with LIBGL_DEBUG=verbose for more details.

                under root:

                its seems to run without errors.

                1 Reply Last reply
                0
                • A Offline
                  A Offline
                  andreyc
                  wrote on 21 Mar 2014, 14:52 last edited by
                  #25

                  what does the following commands show
                  @
                  id
                  ls -l /dev/dri
                  @

                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    Sleicreider
                    wrote on 21 Mar 2014, 15:56 last edited by
                    #26

                    I'll try it on monday when i'm on my workstation pc again :)

                    1 Reply Last reply
                    0
                    • S Offline
                      S Offline
                      Sleicreider
                      wrote on 24 Mar 2014, 07:40 last edited by
                      #27

                      bash-4.2$ id
                      uid=1000(username) gid=100(users) groups=100(users),18(video)

                      bash-4.2$ ls -l /dev/dri
                      total 0
                      crw-rw---- 1 root video 226, 0 Mar 24 08:32 card0
                      crw-rw---- 1 root video 226, 64 Mar 24 08:32 controlD64

                      1 Reply Last reply
                      0
                      • A Offline
                        A Offline
                        andreyc
                        wrote on 24 Mar 2014, 16:12 last edited by
                        #28

                        I'm running out of ideas :-)
                        Maybe this last one

                        Do you have Mesa libraries installed?
                        What ldd on your app shows?
                        @
                        ldd yourapp | grep libGL
                        @

                        And one more.
                        When you start qtcreator does it show the same error as your app?
                        If you build any Qt examples and start them do they show the same error?

                        1 Reply Last reply
                        0
                        • S Offline
                          S Offline
                          Sleicreider
                          wrote on 25 Mar 2014, 08:50 last edited by
                          #29

                          bash-4.2$ ldd myapp | grep libGL
                          libGL.so.1 => /usr/lib64/libGL.so.1 (0x00007f79fab6b000)

                          somehow i get no error anymore, lol.
                          (i started the same project)

                          I also started an OpenGL example. no errors.
                          :)

                          idk what happened.

                          1 Reply Last reply
                          0
                          • A Offline
                            A Offline
                            andreyc
                            wrote on 25 Mar 2014, 14:19 last edited by
                            #30

                            Glad to hear that issue is resolved.

                            1 Reply Last reply
                            0
                            • S Offline
                              S Offline
                              Sleicreider
                              wrote on 25 Mar 2014, 15:27 last edited by
                              #31

                              thank you ! :)

                              1 Reply Last reply
                              0
                              • A Offline
                                A Offline
                                andreyc
                                wrote on 25 Mar 2014, 15:46 last edited by
                                #32

                                Could you put [SOLVED] in front of the title of your initial post.

                                1 Reply Last reply
                                0

                                27/32

                                24 Mar 2014, 07:40

                                • Login

                                • Login or register to search.
                                27 out of 32
                                • First post
                                  27/32
                                  Last post
                                0
                                • Categories
                                • Recent
                                • Tags
                                • Popular
                                • Users
                                • Groups
                                • Search
                                • Get Qt Extensions
                                • Unsolved