Concatination of matrix element

hi!
i have a problem. how to implement this code in l.v?
r1= 1 2 3 
       4 5 6
r1( : = 1
          4
          2
          5
          3
          6
how can it possible in l.v?
thnx

alexderjuengere wrote:
indeed, very much possible.
don't wire the constant which I called columns* !
... or slightly more elegant:
(works equally well for arrays with 2 or more dimensions without any other changes! )
LabVIEW Champion . Do more with less code and in less time .
Attachments:
SlightlyMoreElegant.png ‏1 KB

Similar Messages

  • Incorrect embedded if test result on matrix element set to -0.0

    For a matrix declared with:
    public enum RotAxis
    ALPHA,
    BETA,
    GAMMA;
    float GetVectorElement(Vector3f v3fIn)
    {return (this==ALPHA?v3fIn.z:(this==BETA?v3fIn.y:v3fIn.z));}
    private Matrix3d axisM3d[] = new Matrix3d[RotAxis.values().length];
    and set via:
    private void SetAlphaRotationMatrix()
    int amIndex = RotAxis.ALPHA.ordinal();
    axisM3d[amIndex] = new Matrix3d();
    axisM3d[amIndex].setRow(0, new Vector3d(1.0, 0.0, 0.0));
    double radians = PIO180*aRotAngle[amIndex];
    axisM3d[amIndex].setRow(1, new Vector3d(0.0, Math.cos(radians), -Math.sin(radians)));
    axisM3d[amIndex].setRow(2, new Vector3d(0.0, Math.sin(radians), Math.cos(radians)));
    private void SetBetaRotationMatrix()
    int amIndex = RotAxis.BETA.ordinal();
    axisM3d[amIndex] = new Matrix3d();
    double radians = PIO180*aRotAngle[amIndex];
    axisM3d[amIndex].setRow(0, new Vector3d( Math.cos(radians), 0.0, Math.sin(radians)));
    axisM3d[amIndex].setRow(1, new Vector3d( 0.0, 1.0, 0.0));
    axisM3d[amIndex].setRow(2, new Vector3d(-Math.sin(radians), 0.0, Math.cos(radians)));
    private void SetGammaRotationMatrix()
    int amIndex = RotAxis.GAMMA.ordinal();
    axisM3d[amIndex] = new Matrix3d();
    double radians = PIO180*aRotAngle[amIndex];
    axisM3d[amIndex].setRow(0, new Vector3d(Math.cos(radians), -Math.sin(radians), 0.0));
    axisM3d[amIndex].setRow(1, new Vector3d(Math.sin(radians), Math.cos(radians), 0.0));
    axisM3d[amIndex].setRow(2, new Vector3d(0.0, 0.0, 1.0));
    The following statements:
    System.out.println("Rotation axis: "+raIn.name());
    int amIndex = raIn.ordinal();
    System.out.println("m12 = "+axisM3d[amIndex].m12);
    System.out.println("m12 < 0.0 is "+(axisM3d[amIndex].m12<0.0?"true":"false"));
    resulted in the following output:
    Rotation axis: ALPHA
    m12 = -0.0
    m12 < 0.0 is false
    Rotation axis: BETA
    m12 = 0.0
    m12 < 0.0 is false
    Rotation axis: GAMMA
    m12 = 0.0
    m12 < 0.0 is false
    The question is why did the embedded if statement fail for the ALPHA m12 element set to -0.0; yet, generate a -0.0 string for display? This behavior makes it hard to align values when testing for a minus sign.

    Hi Eugene,
    i suggest you raise an SMP ticket for these.
    Looks like a bug at first glance.
    regards
    Phil

  • Composite Element in Tableview Iterator

    I want to use a <phtmlb:matrix> element in a tableview iterator to arrange the content of a cell.
    I tried to follow Brians Weblog on composite elements.
    In my test example, I just want to combine two fields of t000 into one cell. Of course I know, that concatenation would be more easy here, but that would not answer my questions.
    Thought it could look like this:
    METHOD render_cell_start.
      DATA:
        l_o_matrix             TYPE REF TO cl_phtmlb_matrix,
        l_o_bsp_element        TYPE REF TO cl_bsp_element,
        l_string               TYPE STRING.
      CASE p_tableview_id.
        WHEN 'TABLE_T000'.
        l_o_matrix = cl_phtmlb_matrix=>factory( ).
        WHILE o_page_context->element_process( element = l_o_matrix )
          = cl_bsp_element=>co_element_continue.
    Cell 1
          CLEAR: l_o_matrix->mc_backgrounddesign,
                 l_o_matrix->mc_design,
                 l_o_matrix->mc_separation.
          l_o_matrix->do_set_data( element_name = 'matrixCell' ).
          l_string = me->t000-mandt.
          l_o_bsp_element = cl_htmlb_textview=>factory( text = l_string ).
          WHILE o_page_context->element_process( element = l_o_bsp_element )
           = cl_bsp_element=>co_element_continue.
          ENDWHILE.
    Cell 2
          CLEAR: l_o_matrix->mc_backgrounddesign,
                 l_o_matrix->mc_design,
                 l_o_matrix->mc_separation.
          l_o_matrix->mc_halign = 'LEFT'.
          l_o_matrix->mc_valign = 'TOP'.
          l_o_matrix->do_set_data( element_name = 'matrixCell' ).
          l_string = me->t000-mtext.
          l_o_bsp_element = cl_htmlb_textview=>factory( text = l_string ).
          WHILE o_page_context->element_process( element = l_o_bsp_element )
           = cl_bsp_element=>co_element_continue.
          ENDWHILE.
        ENDWHILE.
        p_replacement_bee = l_o_matrix.
      ENDCASE.
    ENDMETHOD.
    However, that does not work.
    First, the list of T000-MANDT fields is rendered twice:
    into the tableview and into a list before the tableview.
    Second:  T000-MTEXT does not show up at all.
    What do I do wrong?
    I feel that I do not completely understand how the rendering is processed.
    Thanks for our help.
    Juergen

    The following is the example from Brian's weblog, updated for design2003.  It doesn't use the Matrix however.  Perhaps it will help.
    It still doesn't render quite like it did under design2002.  I'm not sure if there is a good way to combine multiple input fields into one cell any longer.  I know others have had a problem with this as well.  I will have to look closer at your matrix attempt.
    when 'SEATS'.
          if p_edit_mode is initial.
            data: max type string, occ type string,
                  value type string.
            max = m_row_ref->seatsmax + m_row_ref->seatsmax_b
                + m_row_ref->seatsmax_f.
            occ = m_row_ref->seatsocc + m_row_ref->seatsocc_b
                + m_row_ref->seatsocc_f.
            condense: max, occ.
            concatenate occ ` / ` max into value.
            p_replacement_bee = cl_htmlb_textview=>factory(
                text = value ).
          else.
            data: icon_plane2 type string.
            icon_plane2 = cl_bsp_mimes=>sap_icon(
                 id = 'ICON_WS_PLANE' ).
            data: image type ref to cl_htmlb_image.
            image = cl_htmlb_image=>factory(
                 id = p_cell_id
                 src = icon_plane2 ).
            data: if_first type ref to cl_htmlb_inputfield.
            if_first = cl_htmlb_inputfield=>factory( id = p_cell_id
                id_postfix = '_first'
                type = 'INTEGER' size = '4' ).
            if_first->value = m_row_ref->seatsocc_f.
            data: if_bus   type ref to cl_htmlb_inputfield.
            if_bus   = cl_htmlb_inputfield=>factory( id = p_cell_id
                id_postfix = '_bus'
                type = 'INTEGER' size = '4' ).
            if_bus->value = m_row_ref->seatsocc_b.
            data: if_econ  type ref to cl_htmlb_inputfield.
            if_econ = cl_htmlb_inputfield=>factory( id = p_cell_id
                id_postfix = '_econ'
                type = 'INTEGER' size = '4'  ).
            if_econ->value = m_row_ref->seatsocc.
            data: tag_gl       type ref to cl_htmlb_gridlayout,
                  tag_glc_if1  type ref to cl_htmlb_gridlayoutcell,
                  tag_glc_if2  type ref to cl_htmlb_gridlayoutcell,
                  tag_glc_if3  type ref to cl_htmlb_gridlayoutcell.
            tag_gl       = cl_htmlb_gridlayout=>factory(
                        columnsize  = '3' rowsize  = '1' ).
            tag_glc_if1 = cl_htmlb_gridlayoutcell=>factory(
                        columnindex = '1' rowindex = '1' ).
            tag_glc_if2  = cl_htmlb_gridlayoutcell=>factory(
                        columnindex = '2' rowindex = '1' ).
            tag_glc_if3  = cl_htmlb_gridlayoutcell=>factory(
                        columnindex = '3' rowindex = '1' ).
            data: seats_bee type ref to cl_bsp_bee_table.
            create object seats_bee.
            seats_bee->add( level = 1 element = tag_gl ).
            seats_bee->add( level = 2 element = tag_glc_if1 ).
            seats_bee->add( level = 3 element = if_first ).
            seats_bee->add( level = 2 element = tag_glc_if2 ).
            seats_bee->add( level = 3 element = if_bus ).
            seats_bee->add( level = 2 element = tag_glc_if3 ).
            seats_bee->add( level = 3 element = if_econ ).
            p_replacement_bee = seats_bee.
          endif.
    Message was edited by: Thomas Jung

  • Help with sparse matrix

    I need to create a sparse matrix implementation. Only allocate space for non-zero matrix elements. Implement methods for addition, subtraction, multiplication and determinant. Here is how I want to implement it:
    Matrix is an array of linked lists.
    Each linked list represents a row.
    Each entry in the linked list has a value and a column associated with it.
    I need help with the setEntry method and creating the array of linked lists.
    Here is what I have so far:
    import java.io.*;
    import java.util.*;
    public class Matrix
      private int numberOfRows;
      int numberOfColumns;
      private IntegerNode[][] entries;
      private IntegerNode head = null;
      private static BufferedReader stdin = new BufferedReader(
                 new InputStreamReader( System.in ) );
      // Constructor
      public Matrix(int numberOfRows, int numberOfColumns)
        if (numberOfRows <= 0)
          throw new IllegalArgumentException("Cannot construct Matrix with " +
            numberOfRows + " rows.  Number of rows must be positive.");
        if (numberOfColumns <= 0)
          throw new IllegalArgumentException("Cannot construct Matrix with " +
            numberOfColumns + " columns.  Number of columns must be positive.");
        entries = new IntegerNode[numberOfRows][numberOfColumns];
        this.numberOfRows = numberOfRows;
        this.numberOfColumns = numberOfColumns;
      public static void main (String [] args) throws IOException {
           File myFile1 = getFileName();
           Matrix myMatrix1 = Matrix.readMatrixFromFile(myFile1, "Matrix 1");
           File myFile2 = getFileName();
           Matrix myMatrix2 = Matrix.readMatrixFromFile(myFile2, "Matrix 2");
           System.out.println();
           System.out.println("Printing out Matrix 1");
           System.out.println("---------------------");
           myMatrix1.print();
           System.out.println("Printing out Matrix 2");
           System.out.println("---------------------");      
           myMatrix2.print();
           String myOperation = getAction();
           Matrix.performActionOnMatrices(myMatrix1, myMatrix2, myOperation);        
       public static Matrix readMatrixFromFile(File file, String fname)
        throws IOException
        BufferedReader reader =
          new BufferedReader(new FileReader(file));
        // first line should be number of rows followed by number of columns
        String line = reader.readLine();
        if (line == null)
          throw new IOException("File \"" + file + "\" is empty.");
        int[] dimensions = readInts(line, 2);
        System.out.println("The dimensions of " + fname + " are " + dimensions[0] + " by " +
          dimensions[1] + ".");
        Matrix matrix = new Matrix(dimensions[0], dimensions[1]);
           for (int row = 0; row < dimensions[0]; ++row) {           
                line = reader.readLine();
                if (line == null)
                     throw new IOException("Matrix in file should have " + dimensions[0] + " rows.");
                int[] rowValues = readInts(line, dimensions[1]);
                for (int column = 0; column < dimensions[1]; ++column)
                     matrix.setEntry(row, column, rowValues[column]);
        return matrix;
      public static String getAction() throws IOException {
           System.out.println("What operation would you like to perform on these matrices? (add, subtract, multiply, or determinant) ... ");
           String actionToTake = stdin.readLine();
           return actionToTake;
      public static File getFileName() throws IOException {
           System.out.println( "Please enter the full path and name of a file that contains a valid matrix ... " );
           String fname = stdin.readLine();
           File someFile = new File(fname);
           return someFile;      
      public static void performActionOnMatrices(Matrix matrix1, Matrix matrix2, String action) {
           if ((!action.equals("add")) && (!action.equals("subtract")) && (!action.equals("multiply")) && (!action.equals("determinant"))) {
               throw new IllegalArgumentException("The only valid actions are add, subtract, multiply or determinant.");           
           if (action.equals("add")) {
                if ((matrix1.numberOfRows != matrix2.numberOfRows) || (matrix1.numberOfColumns != matrix2.numberOfColumns)) {
                    throw new IllegalArgumentException("The matrices must contain the same number of rows and columns in order to perform addition on them.");           
                System.out.println("Performing addition on the two matrices...");
                Matrix addMatrix = Matrix.add(matrix1, matrix2);
                System.out.println("Here is the sum of the two matrices:");
                System.out.println("------------------------------------------");
                addMatrix.print();
           } else if (action.equals("subtract")) {
                if ((matrix1.numberOfRows != matrix2.numberOfRows) || (matrix1.numberOfColumns != matrix2.numberOfColumns)) {
                    throw new IllegalArgumentException("The matrices must contain the same number of rows and columns in order to perform subtraction on them.");           
                System.out.println("Performing subtraction on the two matrices...");
                Matrix subtractMatrix = Matrix.subtract(matrix1, matrix2);
                System.out.println("Here is the result of the subtraction:");
                System.out.println("---------------------------------------------");
                subtractMatrix.print();           
           } else if (action.equals("multiply")) {
                if ((matrix1.numberOfRows != matrix2.numberOfRows) || (matrix1.numberOfColumns != matrix2.numberOfColumns)) {
                    throw new IllegalArgumentException("The matrices must contain the same number of rows and columns in order to perform multiplication on them.");           
                if (matrix1.numberOfRows != matrix2.numberOfColumns) {
                    throw new IllegalArgumentException("The number of rows in the first Matrix must equal the number of columns in the second for multiplying.");                       
                System.out.println("Performing multiplication on the two matrices...");
                Matrix multMatrix = Matrix.multiply(matrix1, matrix2);
                System.out.println("Here is the product of the two matrices:");
                System.out.println("------------------------------------------");
                multMatrix.print();
           }     else if (action.equals("determinant")) {
                int det1 = matrix1.determinant();
                System.out.println("Determinant of Matrix 1");
                System.out.println("-----------------------");     
                System.out.println(det1);
                System.out.println();
                int det2 = matrix2.determinant();
                System.out.println("Determinant of Matrix 2");
                System.out.println("-----------------------");     
                System.out.println(det2);
                System.out.println();           
      //  Sets the entry in the matrix at the given row & column to
      //    the given value.
      public void setEntry(int row, int column, int value)
        if ((row < 0) || (row >= numberOfRows))
          throw new IllegalArgumentException("Illegal row index " + row +
            ".  Index should be between 0 and " + (numberOfRows-1));
        if ((column < 0) || (column >= numberOfColumns))
          throw new IllegalArgumentException("Illegal column index " + column +
            ".  Index should be between 0 and " + (numberOfColumns-1));
        //if (value != 0) {
             IntegerNode newNode = new IntegerNode();
             newNode.setItem(value);
             entries[row][column] = newNode;
      //  Returns the matrix entry at the given row & column
      public IntegerNode getEntry(int row, int column)
        if ((row < 0) || (row >= numberOfRows))
          throw new IllegalArgumentException("Illegal row index " + row +
            ".  Index should be between 0 and " + (numberOfRows-1));
        if ((column < 0) || (column >= numberOfColumns))
          throw new IllegalArgumentException("Illegal column index " + column +
            ".  Index should be between 0 and " + (numberOfColumns-1));
        return entries[row][column];
      //  A primitive routine to print the matrix.  It doesn't do
      //    anything smart or nice about spacing.
      public void print()
        for (int row = 0; row < numberOfRows; ++row)
          for (int column = 0; column < numberOfColumns; ++column)
               if (getEntry(row,column) != null) {
                    System.out.print(getEntry(row, column).getItem() + " ");
          System.out.println();
        System.out.println();
      public void linkNodesInEachRow()
           int counter;
           for (int row = 0; row < numberOfRows; ++row)
             counter = 0;
             for (int column = 0; column < numberOfColumns; ++column)
                  if (getEntry(row,column) != null) {
                       counter++;
                       if (counter == 1) {
                            head = new IntegerNode();
                            head.setItem(getEntry(row, column).getItem());
                       } else {
                       //System.out.print("ITEM NUMBER " + counter + " = ");
                       //System.out.println(getEntry(row, column).getItem() + " ");
             System.out.println();
        System.out.println();
           /*for (IntegerNode curr = head; curr != null; curr = curr.getNext()) {
                System.out.println(curr.getItem());
      //  Returns the determinant of the matrix.
      //  This method checks that the matrix is square and throws
      //    an exception if not.
      public int determinant()
         int determinantValue = 0;
         int counter;
         int plusminus = 1; // start with positive value
         // Make sure the matrix is square before proceeding with
        //   determinant calculation
        if (numberOfRows != numberOfColumns)
          // should really create a MatrixException type
          throw new IllegalArgumentException(
            "Cannot compute determinant of non-square (" + numberOfRows +
            " by " + numberOfColumns + ") matrix.");
        } else {
             // the matrix has the same number of rows and columns 
             if (numberOfColumns == 1)
                  // the matrix is 1x1 - the determinant is just it's value
                  return entries[0][0].getItem();
             else if (numberOfColumns == 2)
                  // the matrix is 2x2 - return ad - bc
                  return entries[0][0].getItem() * entries[1][1].getItem() - entries[0][1].getItem() * entries[1][0].getItem();
             else
                  // the matrix is larger than 2x2
                  // loop through the columns in the matrix
                  for (counter = 0; counter < numberOfColumns; counter++)
                       determinantValue += plusminus * entries[0][counter].getItem() * minor(0, counter).determinant(); // The determinant is the sum of all the n possible signed products formed from the matrix using each row and each column only once for each product.  Notice the recursive call using the submatrix.
                       plusminus *= -1;  // switch the plus/minus sign of the multiplier on each iteration through the loop
             return determinantValue;
    // returns a matrix representing the minor of the matrix
    // for the specified row and column
    public Matrix minor(int row, int column)
        int rowsA;
        int rowsB;
        int colsA;
        int colsB;
        // decrease the size of the resultant matrix by 1 row and 1 column
        Matrix smallerMatrix = new Matrix (numberOfRows - 1, numberOfColumns - 1);
        // scroll through the rows and columns in the original Matrix
        // copy all of the values from the original Matrix except the one row and column that were passed in
        for (rowsA=0, rowsB=0; rowsA < numberOfRows; rowsA++)
           if (rowsA != row)
              for (colsA=0, colsB=0; colsA < numberOfColumns; colsA++)
                 if (colsA != column)
                     // the current row and column do not match the row and column we wish to remove
                     // set the values in the appropriate positions of the sub matrix
                    smallerMatrix.setEntry(rowsB, colsB, entries[rowsA][colsA].getItem());
                    colsB++;
              rowsB++;
        return smallerMatrix;     
      //  Used to parse the row of ints provided in the file input to
      //    this program.  Given a string containing at least numberToRead
      //    ints, it creates and returns an int array contaning those
      //    ints.
      private static int[] readInts(String someInts, int numberToRead)
        StringTokenizer tokenizer = new StringTokenizer(someInts);
        if (numberToRead < 0)
          throw new IllegalArgumentException("Cannot read " + numberToRead
            + " ints.  numberToRead must be nonnegative.");
        int[] toReturn = new int[numberToRead];
        for (int i = 0; i < numberToRead; ++i)
          if (!tokenizer.hasMoreTokens())
            throw new IllegalArgumentException("Cannot read " + numberToRead +
              " ints from string \"" + someInts + "\".");
          String token = tokenizer.nextToken();
          toReturn[i] = Integer.parseInt(token);
        return toReturn;
      public static Matrix add (Matrix a, Matrix b)
           Matrix result = new Matrix(a.numberOfRows, a.numberOfColumns);
          for(int i = 0; i < a.numberOfRows; i++)
             for(int j = 0; j < a.numberOfColumns; j++)
                 int value = a.getEntry(i, j).getItem() + b.getEntry(i, j).getItem();
                 result.setEntry(i, j, value);
          System.out.println("Addition complete.");
          return result;
      public static Matrix subtract (Matrix a, Matrix b)
           Matrix result = new Matrix(a.numberOfRows, a.numberOfColumns);
           for(int i = 0; i < a.numberOfRows; i++)
             for(int j = 0; j < a.numberOfColumns; j++)
                 int value = a.getEntry(i, j).getItem() - b.getEntry(i, j).getItem();
                 result.setEntry(i, j, value);
          System.out.println("Subtraction complete.");
          return result;
      public static Matrix multiply (Matrix a, Matrix b)
          Matrix result = new Matrix(a.numberOfRows, b.numberOfColumns);
          int colSum = 0;
          for(int i = 0; i < a.numberOfRows; i++)
              for(int j = 0; j < b.numberOfColumns; j++)
                  colSum = 0;
                  for(int k = 0; k < a.numberOfColumns; k++)
                     colSum += a.getEntry(i,k).getItem() * b.getEntry(k,j).getItem();
                  result.setEntry(i, j, colSum);
          System.out.println("Multiplication complete.");
          return result;
      public class IntegerNode {
              private int item;
              private IntegerNode next;
              public void setItem(int newItem) {
                   item = newItem;
              public int getItem() {
                   return item;
              public void setNext(IntegerNode nextNode) {
                   next = nextNode;
              public IntegerNode getNext() {
                   return next;
    }

    Please help. The code runs just fine. The only thing is I need to link the nodes together (for each row) into a linked list and then put each linked list into an array. I need help with setEntry. The details of creating a node, attaching it to the list representing a row, etc. need to be in setEntry. Please help.
    For the following matrix:
    1 4 5
    4 2 5
    2 1 2
    There is an array of three linked lists.
    LinkedListsArray[0] = Entry(value=1, column=0)->Entry(value=4, column=1)->Entry(value=5, column=2)
    LinkedListsArray[1] = Entry(value=4, column=0)->Entry(value=2, column=1)->Entry(value=5, column=2)
    LinkedListsArray[2] = .....
    Each entry is a node in the linked list.
    The last twist is that if any values are zero, they shouldn't have nodes associated with them. Don't allocate nodes for zero valued entries.

  • Problems with Steam - Dota2 and ETS2

    Hello
    I had never problems with Arch + xfce but last time I made fresh install of Arch with KDE and problems begins. Strange logs in steam running Dota 2 and Euro Truck Simulator 2. Dota 2 freezing, jumping even 60+ fps, both games can freeze for 1 min with sound.
    Lenovo Y580 - GTX660M
    After running Dota 2 with launch options (optirun -b primus %command% -console) output from console:
    Game update: AppID 570 "Dota 2", ProcID 1441, IP 0.0.0.0:0
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    pid 1455 != 1454, skipping destruction (fork without exec?)
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
    Installing breakpad exception handler for appid(gameoverlayui)/version(20140715181500_client)
    Installing breakpad exception handler for appid(gameoverlayui)/version(1.0_client)
    Installing breakpad exception handler for appid(gameoverlayui)/version(1.0_client)
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    [0725/222647:ERROR:object_proxy.cc(239)] Failed to call method: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files
    [0725/222647:WARNING:proxy_service.cc(958)] PAC support disabled because there is no system implementation
    Installing breakpad exception handler for appid(gameoverlayui)/version(1.0_client)
    Using breakpad crash handler
    Setting breakpad minidump AppID = 570
    Forcing breakpad minidump interfaces to load
    Looking up breakpad interfaces from steamclient
    Calling BreakpadMiniDumpSystemInit
    Looking up breakpad interfaces from steamclient
    Calling BreakpadMiniDumpSystemInit
    Steam_SetMinidumpSteamID: Caching Steam ID: 76561198074650116 [API loaded yes]
    Steam_SetMinidumpSteamID: Setting Steam ID: 76561198074650116
    SDL video target is 'x11'
    SDL failed to create GL compatibility profile (whichProfile=0!
    This system supports the OpenGL extension GL_EXT_framebuffer_object.
    This system supports the OpenGL extension GL_EXT_framebuffer_blit.
    This system supports the OpenGL extension GL_EXT_framebuffer_multisample.
    This system DOES NOT support the OpenGL extension GL_APPLE_fence.
    This system supports the OpenGL extension GL_NV_fence.
    This system supports the OpenGL extension GL_ARB_sync.
    This system supports the OpenGL extension GL_EXT_draw_buffers2.
    This system supports the OpenGL extension GL_EXT_bindable_uniform.
    This system DOES NOT support the OpenGL extension GL_APPLE_flush_buffer_range.
    This system supports the OpenGL extension GL_ARB_map_buffer_range.
    This system supports the OpenGL extension GL_ARB_vertex_buffer_object.
    This system supports the OpenGL extension GL_ARB_occlusion_query.
    This system DOES NOT support the OpenGL extension GL_APPLE_texture_range.
    This system DOES NOT support the OpenGL extension GL_APPLE_client_storage.
    This system DOES NOT support the OpenGL extension GL_ARB_uniform_buffer.
    This system supports the OpenGL extension GL_ARB_vertex_array_bgra.
    This system supports the OpenGL extension GL_EXT_vertex_array_bgra.
    This system supports the OpenGL extension GL_ARB_framebuffer_object.
    This system DOES NOT support the OpenGL extension GL_GREMEDY_string_marker.
    This system supports the OpenGL extension GL_ARB_debug_output.
    This system supports the OpenGL extension GL_EXT_direct_state_access.
    This system supports the OpenGL extension GL_NV_bindless_texture.
    This system DOES NOT support the OpenGL extension GL_AMD_pinned_memory.
    This system supports the OpenGL extension GL_EXT_framebuffer_multisample_blit_scaled.
    This system supports the OpenGL extension GL_EXT_texture_sRGB_decode.
    This system supports the OpenGL extension GL_NVX_gpu_memory_info.
    This system DOES NOT support the OpenGL extension GL_ATI_meminfo.
    This system supports the OpenGL extension GL_EXT_texture_compression_s3tc.
    This system supports the OpenGL extension GL_EXT_texture_compression_dxt1.
    This system DOES NOT support the OpenGL extension GL_ANGLE_texture_compression_dxt3.
    This system DOES NOT support the OpenGL extension GL_ANGLE_texture_compression_dxt5.
    This system DOES NOT support the OpenGL extension GLX_EXT_swap_control_tear.
    GL_NV_bindless_texture: DISABLED
    GL_AMD_pinned_memory: DISABLED
    GL_EXT_texture_sRGB_decode: AVAILABLE
    GL_NVX_gpu_memory_info: AVAILABLE
    GL_ATI_meminfo: UNAVAILABLE
    GL_NVX_gpu_memory_info: Total Dedicated: 2097152, Total Avail: 2097152, Current Avail: 2076116
    GL_MAX_SAMPLES_EXT: 32
    Adding VPK file: /home/akikyo/.local/share/Steam/SteamApps/common/dota 2 beta/dota/sound_vo_english
    Adding VPK file: /home/akikyo/.local/share/Steam/SteamApps/common/dota 2 beta/dota/pak01
    Adding VPK file: /home/akikyo/.local/share/Steam/SteamApps/common/dota 2 beta/platform/pak01
    Did not detect any valid joysticks.
    WARNING: unable to link Test_StartScript and Test_StartScript because one or more is a ConCommand.
    WARNING: unable to link Test_RandomChance and Test_RandomChance because one or more is a ConCommand.
    WARNING: unable to link Test_LoopForNumSeconds and Test_LoopForNumSeconds because one or more is a ConCommand.
    WARNING: unable to link Test_Loop and Test_Loop because one or more is a ConCommand.
    WARNING: unable to link Test_LoopCount and Test_LoopCount because one or more is a ConCommand.
    WARNING: unable to link Test_StartLoop and Test_StartLoop because one or more is a ConCommand.
    WARNING: unable to link log_flags and log_flags because one or more is a ConCommand.
    WARNING: unable to link log_color and log_color because one or more is a ConCommand.
    WARNING: unable to link log_verbosity and log_verbosity because one or more is a ConCommand.
    WARNING: unable to link log_level and log_level because one or more is a ConCommand.
    WARNING: unable to link log_dumpchannels and log_dumpchannels because one or more is a ConCommand.
    Load a scaleform font provider?
    Creating D3D9 device with D3DCREATE_MULTITHREADED
    IDirect3DDevice9::Create: BackBufWidth: 1366, BackBufHeight: 768, D3DFMT: 3, BackBufCount: 1, MultisampleType: 0, MultisampleQuality: 0
    GL sampler object usage: DISABLED
    ##### swap interval = 0 swap limit = 1 #####
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    !! Controller config file passed by steamworks game 570 did not exist at /home/akikyo/.local/share/Steam/SteamApps/common/dota 2 beta/dota/cfg/controller.vdf
    Installing breakpad exception handler for appid(steam)/version(1405474565_client)
    [0725/222707:ERROR:object_proxy.cc(239)] Failed to call method: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files
    [0725/222707:WARNING:proxy_service.cc(958)] PAC support disabled because there is no system implementation
    Im not able to run ETS 2 it's going to change resolution to 1024x768 in whole desktop and then crash. (Launch option: optirun -b primus %command%) output:
    Game update: AppID 227300 "Euro Truck Simulator 2", ProcID 1554, IP 0.0.0.0:0
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:1358): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    ERROR: ld.so: object '/home/akikyo/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    Setting breakpad minidump AppID = 227300
    Steam_SetMinidumpSteamID: Caching Steam ID: 76561198074650116 [API loaded no]
    Registered appid 227300 to use native controller config at /home/akikyo/.local/share/Steam/SteamApps/common/Euro Truck Simulator 2/controller.vdf
    X Error of failed request: GLXUnsupportedPrivateRequest
    Major opcode of failed request: 155 (GLX)
    Minor opcode of failed request: 16 (X_GLXVendorPrivate)
    Serial number of failed request: 80
    Current serial number in output stream: 82
    Game removed: AppID 227300 "Euro Truck Simulator 2", ProcID 1567
    sudo journalctl
    Jul 25 22:35:15 lenovo bumblebeed[396]: [ 891.508930] [WARN][XORG] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    Jul 25 22:35:15 lenovo bumblebeed[396]: [ 891.508943] [WARN][XORG] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    Jul 25 22:35:15 lenovo bumblebeed[396]: [ 891.508969] [WARN][XORG] (WW) Unresolved symbol: fbGetGCPrivateKey
    Jul 25 22:35:15 lenovo bumblebeed[396]: [ 891.508984] [WARN][XORG] (WW) NVIDIA(0): Unable to get display device for DPI computation.
    Jul 25 22:35:16 lenovo kernel: eurotrucks2[1567]: segfault at 17 ip 00007f40f1e30433 sp 00007fff05479db0 error 6 in steamclient.so[7f40f1b66000+f7b000]
    Jul 25 22:35:16 lenovo kernel: [drm] Module unloaded
    Jul 25 22:35:16 lenovo kernel: bbswitch: disabling discrete graphics
    Jul 25 22:35:16 lenovo kernel: ACPI Warning: \_SB_.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20140214/nsarguments-95)
    Jul 25 22:35:16 lenovo kernel: pci 0000:01:00.0: Refused to change power state, currently in D0
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838215] [ERROR][XORG] (EE) Server terminated successfully (0). Closing log file.
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838233] [ERROR][XORG] (EE)
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838238] [ERROR][XORG] (EE) Backtrace:
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838242] [ERROR][XORG] (EE) 0: Xorg (xorg_backtrace+0x56) [0x58f186]
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838245] [ERROR][XORG] (EE) 1: Xorg (0x400000+0x192fc9) [0x592fc9]
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838249] [ERROR][XORG] (EE) 2: /usr/lib/libpthread.so.0 (0x7fd21c5c8000+0xf4b0) [0x7fd21c5d74b0]
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838256] [ERROR][XORG] (EE) 3: /usr/lib/libc.so.6 (malloc_usable_size+0x25) [0x7fd21b290d25]
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838272] [ERROR][XORG] (EE) 4: /usr/lib/nvidia/libGL.so.1 (0x7fd21818b000+0xb61d9) [0x7fd2182411d9]
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838286] [ERROR][XORG] (EE)
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838298] [ERROR][XORG] (EE) Segmentation fault at address 0x0
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838306] [ERROR][XORG] (EE)
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838317] [ERROR][XORG] (EE) Caught signal 11 (Segmentation fault). Server aborting
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838320] [ERROR][XORG] (EE)
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838323] [ERROR][XORG] (EE)
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838329] [ERROR][XORG] (EE) Please also check the log file at "/var/log/Xorg.8.log" for additional information.
    Jul 25 22:35:17 lenovo bumblebeed[396]: [ 892.838334] [ERROR][XORG] (EE)
    sudo nano /var/log/Xorg.8.log
    X.Org X Server 1.15.2
    Release Date: 2014-06-27
    [ 887.399] X Protocol Version 11, Revision 0
    [ 887.399] Build Operating System: Linux 3.15.1-1-ARCH x86_64
    [ 887.399] Current Operating System: Linux lenovo 3.15.5-2-ARCH #1 SMP PREEMPT Fri Jul 11 07:56:02 CEST 2014 x86_64
    [ 887.399] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=a89135f9-ef1e-4b90-a073-ee78d492b58a rw rcutree.rcu_idle_gp_delay=1 quiet
    [ 887.399] Build Date: 27 June 2014 07:32:26PM
    [ 887.399]
    [ 887.399] Current version of pixman: 0.32.6
    [ 887.399] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 887.399] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 887.399] (==) Log file: "/var/log/Xorg.8.log", Time: Fri Jul 25 22:35:11 2014
    [ 887.400] (++) Using config file: "/etc/bumblebee/xorg.conf.nvidia"
    [ 887.400] (++) Using config directory: "/etc/bumblebee/xorg.conf.d"
    [ 887.400] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 887.400] (==) ServerLayout "Layout0"
    [ 887.400] (==) No screen section available. Using defaults.
    [ 887.400] (**) |-->Screen "Default Screen Section" (0)
    [ 887.400] (**) | |-->Monitor "<default monitor>"
    [ 887.400] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 887.400] (**) | |-->Device "DiscreteNvidia"
    [ 887.400] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 887.400] (**) Option "AutoAddDevices" "false"
    [ 887.400] (**) Option "AutoAddGPU" "false"
    [ 887.400] (**) Not automatically adding devices
    [ 887.400] (==) Automatically enabling devices
    [ 887.400] (**) Not automatically adding GPU devices
    [ 887.401] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 887.401] Entry deleted from font path.
    [ 887.401] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 887.401] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 887.401] Entry deleted from font path.
    [ 887.401] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 887.401] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
    [ 887.401] (++) ModulePath set to "/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules"
    [ 887.401] (==) |-->Input Device "<default pointer>"
    [ 887.401] (==) |-->Input Device "<default keyboard>"
    [ 887.401] (==) The core pointer device wasn't specified explicitly in the layout.
    Using the default mouse configuration.
    [ 887.401] (==) The core keyboard device wasn't specified explicitly in the layout.
    Using the default keyboard configuration.
    [ 887.401] (II) Loader magic: 0x811cc0
    [ 887.401] (II) Module ABI versions:
    [ 887.401] X.Org ANSI C Emulation: 0.4
    [ 887.401] X.Org Video Driver: 15.0
    [ 887.401] X.Org XInput driver : 20.0
    [ 887.401] X.Org Server Extension : 8.0
    [ 887.401] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 887.401] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 887.401] setversion 1.4 failed: Permission denied
    [ 887.403] (--) PCI:*(0:1:0:0) 10de:0fd4:17aa:3977 rev 161, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00003000/128
    [ 887.403] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 887.403] Initializing built-in extension Generic Event Extension
    [ 887.404] Initializing built-in extension SHAPE
    [ 887.404] Initializing built-in extension MIT-SHM
    [ 887.404] Initializing built-in extension XInputExtension
    [ 887.404] Initializing built-in extension XTEST
    [ 887.404] Initializing built-in extension BIG-REQUESTS
    [ 887.404] Initializing built-in extension SYNC
    [ 887.404] Initializing built-in extension XKEYBOARD
    [ 887.404] Initializing built-in extension XC-MISC
    [ 887.404] Initializing built-in extension SECURITY
    [ 887.404] Initializing built-in extension XINERAMA
    [ 887.404] Initializing built-in extension XFIXES
    [ 887.404] Initializing built-in extension RENDER
    [ 887.404] Initializing built-in extension RANDR
    [ 887.404] Initializing built-in extension COMPOSITE
    [ 887.404] Initializing built-in extension DAMAGE
    [ 887.404] Initializing built-in extension MIT-SCREEN-SAVER
    [ 887.404] Initializing built-in extension DOUBLE-BUFFER
    [ 887.404] Initializing built-in extension RECORD
    [ 887.404] Initializing built-in extension DPMS
    [ 887.404] Initializing built-in extension Present
    [ 887.404] Initializing built-in extension DRI3
    [ 887.404] Initializing built-in extension X-Resource
    [ 887.404] Initializing built-in extension XVideo
    [ 887.404] Initializing built-in extension XVideo-MotionCompensation
    [ 887.404] Initializing built-in extension XFree86-VidModeExtension
    [ 887.404] Initializing built-in extension XFree86-DGA
    [ 887.404] Initializing built-in extension XFree86-DRI
    [ 887.404] Initializing built-in extension DRI2
    [ 887.404] (II) "glx" will be loaded by default.
    [ 887.404] (II) LoadModule: "dri2"
    [ 887.404] (II) Module "dri2" already built-in
    [ 887.404] (II) LoadModule: "glamoregl"
    [ 887.404] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 887.454] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 887.454] compiled for 1.15.0, module version = 0.6.0
    [ 887.454] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 887.454] (II) LoadModule: "glx"
    [ 887.454] (II) Loading /usr/lib/nvidia/xorg/modules/extensions/libglx.so
    [ 887.495] (II) Module glx: vendor="NVIDIA Corporation"
    [ 887.495] compiled for 4.0.2, module version = 1.0.0
    [ 887.495] Module class: X.Org Server Extension
    [ 887.495] (II) NVIDIA GLX Module 340.24 Wed Jul 2 15:04:31 PDT 2014
    [ 887.495] Loading extension GLX
    [ 887.495] (II) LoadModule: "nvidia"
    [ 887.495] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 887.500] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 887.500] compiled for 4.0.2, module version = 1.0.0
    [ 887.500] Module class: X.Org Video Driver
    [ 887.500] (II) LoadModule: "mouse"
    [ 887.500] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    [ 887.502] (II) Module mouse: vendor="X.Org Foundation"
    [ 887.502] compiled for 1.15.0, module version = 1.9.0
    [ 887.502] Module class: X.Org XInput Driver
    [ 887.502] ABI class: X.Org XInput driver, version 20.0
    [ 887.502] (II) LoadModule: "kbd"
    [ 887.502] (WW) Warning, couldn't open module kbd
    [ 887.502] (II) UnloadModule: "kbd"
    [ 887.502] (II) Unloading kbd
    [ 887.502] (EE) Failed to load module "kbd" (module does not exist, 0)
    [ 887.502] (II) NVIDIA dlloader X Driver 340.24 Wed Jul 2 14:42:23 PDT 2014
    [ 887.502] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 887.502] (--) using VT number 1
    [ 887.502] (II) Loading sub module "fb"
    [ 887.502] (II) LoadModule: "fb"
    [ 887.502] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 887.504] (II) Module fb: vendor="X.Org Foundation"
    [ 887.504] compiled for 1.15.2, module version = 1.0.0
    [ 887.504] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 887.504] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 887.504] (II) Loading sub module "wfb"
    [ 887.504] (II) LoadModule: "wfb"
    [ 887.504] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 887.506] (II) Module wfb: vendor="X.Org Foundation"
    [ 887.506] compiled for 1.15.2, module version = 1.0.0
    [ 887.506] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 887.506] (II) Loading sub module "ramdac"
    [ 887.506] (II) LoadModule: "ramdac"
    [ 887.506] (II) Module "ramdac" already built-in
    [ 887.506] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 887.506] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 887.506] (==) NVIDIA(0): RGB weight 888
    [ 887.506] (==) NVIDIA(0): Default visual is TrueColor
    [ 887.506] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 887.506] (**) NVIDIA(0): Option "NoLogo" "true"
    [ 887.506] (**) NVIDIA(0): Option "ProbeAllGpus" "false"
    [ 887.507] (**) NVIDIA(0): Option "UseEDID" "false"
    [ 887.507] (**) NVIDIA(0): Option "UseDisplayDevice" "none"
    [ 887.507] (**) NVIDIA(0): Enabling 2D acceleration
    [ 887.507] (**) NVIDIA(0): Ignoring EDIDs
    [ 887.507] (**) NVIDIA(0): Option "UseDisplayDevice" set to "none"; enabling NoScanout
    [ 887.507] (**) NVIDIA(0): mode
    [ 891.006] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 891.008] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 660M (GK107) at PCI:1:0:0 (GPU-0)
    [ 891.008] (--) NVIDIA(0): Memory: 2097152 kBytes
    [ 891.008] (--) NVIDIA(0): VideoBIOS: 80.07.3c.00.16
    [ 891.008] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 891.008] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 660M at PCI:1:0:0
    [ 891.008] (--) NVIDIA(0): none
    [ 891.008] (II) NVIDIA(0): Validated MetaModes:
    [ 891.008] (II) NVIDIA(0): "NULL"
    [ 891.008] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
    [ 891.008] (WW) NVIDIA(0): Unable to get display device for DPI computation.
    [ 891.008] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
    [ 891.008] (--) Depth 24 pixmap format is 32 bpp
    [ 891.008] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 891.008] (II) NVIDIA: access.
    [ 891.013] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 891.013] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 891.013] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 891.013] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 891.013] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 891.013] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 891.013] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 891.013] (II) NVIDIA(0): Config Options in the README.
    [ 891.013] (II) NVIDIA(0): Setting mode "NULL"
    [ 891.028] Loading extension NV-GLX
    [ 891.035] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 891.035] (==) NVIDIA(0): Backing store enabled
    [ 891.035] (==) NVIDIA(0): Silken mouse enabled
    [ 891.035] (==) NVIDIA(0): DPMS enabled
    [ 891.035] Loading extension NV-CONTROL
    [ 891.036] (II) Loading sub module "dri2"
    [ 891.036] (II) LoadModule: "dri2"
    [ 891.036] (II) Module "dri2" already built-in
    [ 891.036] (II) NVIDIA(0): [DRI2] Setup complete
    [ 891.036] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 891.036] (--) RandR disabled
    [ 891.044] (II) Initializing extension GLX
    [ 891.100] (II) Using input driver 'mouse' for '<default pointer>'
    [ 891.100] (**) Option "CorePointer" "on"
    [ 891.100] (**) <default pointer>: always reports core events
    [ 891.100] (WW) <default pointer>: No Device specified, looking for one...
    [ 891.146] (II) <default pointer>: Setting Device option to "/dev/input/mice"
    [ 891.146] (--) <default pointer>: Device: "/dev/input/mice"
    [ 891.146] (==) <default pointer>: Protocol: "Auto"
    [ 891.146] (**) <default pointer>: always reports core events
    [ 891.146] (**) Option "Device" "/dev/input/mice"
    [ 891.200] (==) <default pointer>: Emulate3Buttons, Emulate3Timeout: 50
    [ 891.200] (**) <default pointer>: ZAxisMapping: buttons 4 and 5
    [ 891.200] (**) <default pointer>: Buttons: 9
    [ 891.200] (II) XINPUT: Adding extended input device "<default pointer>" (type: MOUSE, id 6)
    [ 891.200] (**) <default pointer>: (accel) keeping acceleration scheme 1
    [ 891.200] (**) <default pointer>: (accel) acceleration profile 0
    [ 891.200] (**) <default pointer>: (accel) acceleration factor: 2.000
    [ 891.200] (**) <default pointer>: (accel) acceleration threshold: 4
    [ 891.200] (II) <default pointer>: Setting mouse protocol to "ExplorerPS/2"
    [ 891.493] (II) <default pointer>: ps2EnableDataReporting: succeeded
    [ 891.493] (II) LoadModule: "kbd"
    [ 891.494] (WW) Warning, couldn't open module kbd
    [ 891.494] (II) UnloadModule: "kbd"
    [ 891.494] (II) Unloading kbd
    [ 891.494] (EE) Failed to load module "kbd" (module does not exist, 0)
    [ 891.494] (EE) No input driver matching `kbd'
    [ 891.497] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 891.497] (II) AutoAddDevices is off - not adding device.
    [ 891.497] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 891.497] (II) AutoAddDevices is off - not adding device.
    [ 891.497] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 891.497] (II) AutoAddDevices is off - not adding device.
    [ 891.498] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 891.498] (II) AutoAddDevices is off - not adding device.
    [ 891.498] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
    [ 891.498] (II) AutoAddDevices is off - not adding device.
    [ 891.498] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 891.498] (II) AutoAddDevices is off - not adding device.
    [ 891.499] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 891.499] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 891.499] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 891.499] setversion 1.4 failed: Permission denied
    [ 891.499] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event7)
    [ 891.499] (II) AutoAddDevices is off - not adding device.
    [ 891.500] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
    [ 891.500] (II) AutoAddDevices is off - not adding device.
    [ 891.500] (II) config/udev: Adding input device CHESEN USB Keyboard (/dev/input/event8)
    [ 891.500] (II) AutoAddDevices is off - not adding device.
    [ 891.501] (II) config/udev: Adding input device CHESEN USB Keyboard (/dev/input/event9)
    [ 891.501] (II) AutoAddDevices is off - not adding device.
    [ 891.501] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event12)
    [ 891.501] (II) AutoAddDevices is off - not adding device.
    [ 891.501] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event13)
    [ 891.501] (II) AutoAddDevices is off - not adding device.
    [ 891.502] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event14)
    [ 891.502] (II) AutoAddDevices is off - not adding device.
    [ 891.502] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event15)
    [ 891.502] (II) AutoAddDevices is off - not adding device.
    [ 891.502] (II) config/udev: Adding input device Lenovo EasyCamera (/dev/input/event16)
    [ 891.502] (II) AutoAddDevices is off - not adding device.
    [ 891.503] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event10)
    [ 891.503] (II) AutoAddDevices is off - not adding device.
    [ 891.503] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event6)
    [ 891.503] (II) AutoAddDevices is off - not adding device.
    [ 891.503] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event17)
    [ 891.504] (II) AutoAddDevices is off - not adding device.
    [ 891.504] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 891.504] (II) AutoAddDevices is off - not adding device.
    [ 891.504] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
    [ 891.504] (II) AutoAddDevices is off - not adding device.
    [ 892.695] (II) UnloadModule: "mouse"
    [ 892.720] (II) NVIDIA(GPU-0): Deleting GPU-0
    [ 892.723] (EE) Server terminated successfully (0). Closing log file.
    Last edited by Akikyo (2014-07-24 21:04:45)

    I can't be sure but most of the dota2 output looks "normal" to me (I get the same yet it works fine).
    eurotrucks is clearly crashing. You could try to force the resolution it uses in its config files?
    Or maybe it's missing a lib (you may need to install 32bit versions):
    ldd /path/to/eurotrucks
    to see if that's the case. If not, you might have to take it up with the eurotrucks developers.
    And you could try using fluxbox/openbox just to see what happens. A lot lighter than KDE.
    Have a good look though: https://wiki.archlinux.org/index.php/Steam
    and remember to check for missing 32bit libs.

  • Error while adding new record

    I have created an user defined table for storing city details.When I add record in it,it returns -4002 and the record is not saved.The code is as follows ,
    Private Sub AddCity()
            Dim objCity As SAPbobsCOM.UserTable
            Dim intCode As Integer
            Dim txtCity As SAPbouiCOM.EditText
            Dim lngStatus As Long
            Dim btnSave As SAPbouiCOM.Button
            Try
                objCity = objCompany.UserTables.Item("U_City")
                intCode = GetPK("[@U_City]", "New")
                txtCity = objForm.Items.Item("txtCity").Specific
                objCity.Code = intCode
                objCity.Name = intCode
                objCity.UserFields.Fields.Item("U_City_Code").Value = intCode
                objCity.UserFields.Fields.Item("U_City_Name").Value = txtCity.Value.Trim
                objCity.UserFields.Fields.Item("U_Active").Value = "Y"
                lngStatus = objCity.Add()
                If lngStatus = 0 Then
                    SBO_Application.StatusBar.SetText("Operation Completed Successfully", SAPbouiCOM.BoMessageTime.bmt_Short, SAPbouiCOM.BoStatusBarMessageType.smt_Success)
                    btnSave = SBO_Application.Forms.ActiveForm.Items.Item("btnSave").Specific
                    btnSave.Caption = "OK"
                End If
            Catch ex As Exception
                SBO_Application.MessageBox("Tour Reporter:AddCity()=" & ex.Message)
            End Try
        End Sub
    The function GetPK returns primary key of the table.

    Hello
    It it is an UDO, not a UDT, you may use GeneralService to insert record into the table, ot build and UDO type form to get binded automatically.
    You may use a similar code to save an data to UDO table
    Dim oGeneralService As SAPbobsCOM.GeneralService
    Dim oGeneralData As SAPbobsCOM.GeneralData
    Dim oGeneralParams As SAPbobsCOM.GeneralDataParams
    Dim sCmp As SAPbobsCOM.CompanyService = oCompany.GetCompanyService
    oGeneralService = sCmp.GetGeneralService("U_City")
    oGeneralData = oGeneralService.GetDataInterface(GeneralServiceDataInterfaces.gsGeneralData)
    SQL = "select AutoKey from ONNM where ObjectCode = 'U_City'"
    oRs.DoQuery(SQL)
    oGeneralData.SetProperty("Code", oRs.Fields.Item(0).Value.ToString())
    oGeneralData.SetProperty("U_COL1", COL1Data)
    oGeneralService.Add(oGeneralData)
    Return True
    This code inserts records into UDO master Data type object, called U_City
    You may clone the rows                 oGeneralData.SetProperty("U_COL1", COL1Data) and replace "U_COL1" with the UDF name inside, and "COL1Data" with the data of the field
    Edited by: János Nagy on Jun 23, 2011 12:16 PM - removed the matrix elements,

  • [SOLVED] High CPU usage on running any graphical program

    Hi!
    When I run any program like steam and java games which should use lot gpu but they don't. Instead of that programs use 70%-100% of cpu power and almost none gpu. I have newest nvidia drivers but I can't install nvidia-libgl because it doesn't work with bumblebee and whitout bumblebee I can't open steam. I'm running xfce desktop  with xorg11. This bug doesn't appear on flashplayer. Even when I set my graphics to lowest it still uses tons cpu and fps won't make any change (5-10fps).
    Here is log from steam:
    /home/campus/.local/share/Steam/steam.sh: rivi 161: VERSION_ID: sitomaton muuttuja
    /home/campus/.local/share/Steam/steam.sh: rivi 161: VERSION_ID: sitomaton muuttuja
    Running Steam on arch 64-bit
    /home/campus/.local/share/Steam/steam.sh: rivi 161: VERSION_ID: sitomaton muuttuja
    STEAM_RUNTIME is enabled automatically
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/180852:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Unable to read VR Path Registry from /home/campus/.openvr/openvrpaths.vrpath
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    FillInMachineIDInfo took a total of 0 milliseconds
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    PulseAudio connect failed (used only for Mic Volume Control) with error: Access denied
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    ** (steam:5344): WARNING **: Could not initialize NMClient /org/freedesktop/NetworkManager: Unit dbus-org.freedesktop.NetworkManager.service failed to load: No such file or directory.
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Generating new string page texture 2: 48x256, total string texture memory is 49,15 KB
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    (steam:5344): Gtk-WARNING **: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Adding licenses for the following package(s): 0, 216, 1679, 1680, 4303, 4772, 11795, 12328, 13054, 13437, 16139, 16222, 16750, 17569, 17641, 17982, 18485, 27035, 27101, 28497, 28987, 29776, 30286, 30879, 31937, 32037, 32889, 44226, 45440, 45705, 54451, 54974, 55143, 55144, 56320, 57406, 58580, 58582, 58584, 58590, 59811, 61119, 61131, 61363, 62024, 64229, 64700, 64701
    roaming config store loaded successfully - 1939 bytes.
    migrating temporary roaming config store
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/180906:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    Failed to init SteamVR because it isn't installed
    ExecCommandLine: ""/home/campus/.local/share/Steam/ubuntu12_32/steam" "nice" "-n" "19" "wine" "-no-dwrite" "
    System startup time: 13,70 seconds
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    /usr/bin/env: python: Tiedostoa tai hakemistoa ei ole
    Generating new string page texture 69: 256x256, total string texture memory is 311,30 KB
    Generating new string page texture 70: 64x256, total string texture memory is 376,83 KB
    Generating new string page texture 71: 48x256, total string texture memory is 49,15 KB
    Generating new string page texture 72: 128x256, total string texture memory is 507,90 KB
    Generating new string page texture 73: 8x256, total string texture memory is 516,10 KB
    Generating new string page texture 74: 32x256, total string texture memory is 548,86 KB
    [0420/180906:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    [0420/180907:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Generating new string page texture 91: 64x256, total string texture memory is 114,69 KB
    Generating new string page texture 92: 128x256, total string texture memory is 245,76 KB
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Generating new string page texture 93: 24x256, total string texture memory is 573,44 KB
    Generating new string page texture 103: 384x256, total string texture memory is 966,66 KB
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Fontconfig warning: "/home/campus/.local/share/Steam/bin/panorama/etc/fonts/conf.d/41-repl-os-win.conf", line 148: Having multiple values in <test> isn't supported and may not work as expected
    Fontconfig warning: "/home/campus/.local/share/Steam/bin/panorama/etc/fonts/conf.d/41-repl-os-win.conf", line 160: Having multiple values in <test> isn't supported and may not work as expected
    AL lib: pulseaudio.c:612: Context did not connect: Access denied
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/181047:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Compiled against SDL version 2.0.4 and linked against SDL version 2.0.4
    COpenGLSurface::BInitialize: Current session is
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    DeleteFBOFreeList: Removing 7 FBO objects, total 1
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Warning, someone is using SetHTTPRequestRequiresVerifiedCertificate on Linux, where it doesn't work, and we won't actually verifyAdding activate event to a panel(CommunityMenu) without a tab or selection index, the gamepad and keyboard can't get here.
    Adding activate event to a panel(CommunityGameHub) without a tab or selection index, the gamepad and keyboard can't get here.
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181048:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181049:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    HTTP Response for http://store.steampowered.com/api/featuredcategories/?extra=controller,&trailer=1&f=l: 200, 34744
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Fontconfig warning: line 37: unknown element "fontpattern"
    Fontconfig warning: line 38: unknown element "fontpattern"
    Fontconfig warning: line 39: unknown element "fontpattern"
    Fontconfig warning: line 40: unknown element "fontpattern"
    HTTP Response for https://store.steampowered.com/api/featured/?cc=FI&l=english&f=l: 200, 34515
    [0420/181054:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    **** Panel FavoritePages has fill-parent-flow for height, but isn't in a flowing down layout
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/181115:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    DeleteFBOFreeList: Removing 41 FBO objects, total 0
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:5344): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428938218)
    [0420/181118:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20150413151658)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1428965940)
    Compiled against SDL version 2.0.4 and linked against SDL version 2.0.4
    COpenGLSurface::BInitialize: Current session is
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:browser_main_loop.cc(240)] Gtk: Teemamoottorin moduulia ei löytynyt module_path:sta: ”xfce”,
    [0420/181119:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Warning, someone is using SetHTTPRequestRequiresVerifiedCertificate on Linux, where it doesn't work, and we won't actually verifyAdding activate event to a panel(CommunityMenu) without a tab or selection index, the gamepad and keyboard can't get here.
    Adding activate event to a panel(CommunityGameHub) without a tab or selection index, the gamepad and keyboard can't get here.
    sh: /usr/bin/alienware_wmi_control.sh: Tiedostoa tai hakemistoa ei ole
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    HTTP Response for http://store.steampowered.com/api/featuredcategories/?extra=controller,&trailer=1&f=l: 200, 34744
    Fontconfig warning: line 37: unknown element "fontpattern"
    Fontconfig warning: line 38: unknown element "fontpattern"
    Fontconfig warning: line 39: unknown element "fontpattern"
    Fontconfig warning: line 40: unknown element "fontpattern"
    HTTP Response for https://store.steampowered.com/api/featured/?cc=FI&l=english&f=l: 200, 34515
    [0420/181123:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Adding activate event to a panel(ButtonBody) without a tab or selection index, the gamepad and keyboard can't get here.
    HTTP Response for http://cdn.steamcommunity.com/news/newsforapp/v0001/?appid=252490&count=5&maxlength=300&format=json: 200, 3370
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Launching appid 252490
    Starting for app: Rust
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Installing breakpad exception handler for appid(steam)/version(1428965940)
    Moving back to: ShowLibraryMostRecent (focus: MostRecentCarousel)
    Removing from backstack: LibraryShowApp (focus: ButtonBody)
    lspci:
    00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor DRAM Controller (rev 09)
    00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09)
    00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
    00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
    00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
    00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
    00:1c.5 PCI bridge: Intel Corporation 82801 PCI Bridge (rev c4)
    00:1c.6 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 7 (rev c4)
    00:1c.7 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 8 (rev c4)
    00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
    00:1f.0 ISA bridge: Intel Corporation H77 Express Chipset LPC Controller (rev 04)
    00:1f.2 IDE interface: Intel Corporation 7 Series/C210 Series Chipset Family 4-port SATA Controller [IDE mode] (rev 04)
    00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
    00:1f.5 IDE interface: Intel Corporation 7 Series/C210 Series Chipset Family 2-port SATA Controller [IDE mode] (rev 04)
    01:00.0 VGA compatible controller: NVIDIA Corporation GK104 [GeForce GTX 760] (rev a1)
    01:00.1 Audio device: NVIDIA Corporation GK104 HDMI Audio Controller (rev a1)
    03:00.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev 30)
    05:00.0 Ethernet controller: Qualcomm Atheros AR8151 v2.0 Gigabit Ethernet (rev c0)
    06:00.0 USB controller: Etron Technology, Inc. EJ168 USB 3.0 Host Controller (rev 01)
    Thanks!
    Last edited by campus735 (2015-04-21 04:45:10)

    I reinstalled all gpu drivers 64 and 32 bit versions, now steam complains this:
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1605
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1610
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1615
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1620
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1625
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1630
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1635
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1640
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1645
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1650
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1655
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1660
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1665
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1670
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1675
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1680
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1685
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1690
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1695
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1700
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1705
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1710
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1715
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1720
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1725
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1730
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1735
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1740
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1745
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1771
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1777
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1782
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1787
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1792
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1797
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1802
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1807
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1812
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1817
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1822
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1827
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1832
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1837
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1842
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1847
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1852
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1857
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1862
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1867
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1872
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1877
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1882
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1887
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1892
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1897
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1902
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1907
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1912
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1917
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1922
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1927
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1932
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1937
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1942
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1947
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1952
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1957
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1964
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1970
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1975
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1980
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1985
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1990
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 1995
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2000
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2005
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2010
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2015
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2020
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2025
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2030
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2035
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2040
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2045
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2050
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2055
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2060
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2065
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2070
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2075
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2080
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2085
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2090
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2095
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2100
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2105
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2110
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2115
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2120
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2125
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2130
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2135
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2140
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2145
    xerror_handler: X failed, continuing
    /home/buildbot/buildslave_steam/steam_rel_client_ubuntu12_linux/build/src/vgui2/src/surface_opengl.cpp (563) : Assertion Failed: glIsTexture( id )
    Steam: An X Error occurred
    X Error of failed request: BadWindow (invalid Window parameter)
    Major opcode of failed request: 155
    Resource id in failed request: 0x2a00013
    Serial number of failed request: 2150
    xerror_handler: X failed, continuing

  • Radeon HD 8730M on HP 840 G1

    Hi, I'm trying to use an HD 8730M with an Intel HD4000 on a HP 840 G1.
    When I instal xf86-video-ati (Open Source drivers) :
    If I do an
    echo ON > /sys/kernel/debug/vgaswitcheroo/switch
    the server won't start, here is the log
    [ 836.204]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 836.206] X Protocol Version 11, Revision 0
    [ 836.207] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 836.207] Current Operating System: Linux letik-laptop 3.16.4-1-ARCH #1 SMP PREEMPT Mon Oct 6 08:22:27 CEST 2014 x86_64
    [ 836.207] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=256c9cdb-c3d9-4595-872b-9e0493727993 rw quiet
    [ 836.209] Build Date: 21 September 2014 10:53:13AM
    [ 836.209]
    [ 836.210] Current version of pixman: 0.32.6
    [ 836.211] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 836.211] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 836.214] (==) Log file: "/home/USER/.local/share/xorg/Xorg.0.log", Time: Sat Oct 18 17:40:21 2014
    [ 836.215] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 836.216] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 836.216] (==) No Layout section. Using the first Screen section.
    [ 836.216] (==) No screen section available. Using defaults.
    [ 836.216] (**) |-->Screen "Default Screen Section" (0)
    [ 836.216] (**) | |-->Monitor "<default monitor>"
    [ 836.216] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 836.216] (==) Automatically adding devices
    [ 836.216] (==) Automatically enabling devices
    [ 836.216] (==) Automatically adding GPU devices
    [ 836.216] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 836.216] Entry deleted from font path.
    [ 836.216] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 836.216] Entry deleted from font path.
    [ 836.216] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 836.216] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 836.216] Entry deleted from font path.
    [ 836.216] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 836.216] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 836.216] (**) ModulePath set to "/usr/lib/xorg/modules/updates,/usr/lib/xorg/modules"
    [ 836.216] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 836.216] (II) Loader magic: 0x818d80
    [ 836.216] (II) Module ABI versions:
    [ 836.216] X.Org ANSI C Emulation: 0.4
    [ 836.216] X.Org Video Driver: 18.0
    [ 836.216] X.Org XInput driver : 21.0
    [ 836.216] X.Org Server Extension : 8.0
    [ 836.217] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 836.218] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 836.218] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 836.218] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 836.218] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 9 paused 0
    [ 836.219] (--) PCI: (0:0:2:0) 8086:0a16:103c:198f rev 11, Mem @ 0xd0000000/4194304, 0xc0000000/268435456, I/O @ 0x00004000/64
    [ 836.219] (--) PCI:*(0:3:0:0) 1002:6601:103c:1990 rev 0, Mem @ 0xb0000000/268435456, 0xd0500000/262144, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    [ 836.219] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 836.219] (II) LoadModule: "glx"
    [ 836.219] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 836.220] (II) Module glx: vendor="X.Org Foundation"
    [ 836.220] compiled for 1.16.1, module version = 1.0.0
    [ 836.220] ABI class: X.Org Server Extension, version 8.0
    [ 836.220] (==) AIGLX enabled
    [ 836.220] (==) Matched ati as autoconfigured driver 0
    [ 836.220] (==) Matched intel as autoconfigured driver 1
    [ 836.220] (==) Matched ati as autoconfigured driver 2
    [ 836.220] (==) Matched modesetting as autoconfigured driver 3
    [ 836.220] (==) Matched fbdev as autoconfigured driver 4
    [ 836.220] (==) Matched vesa as autoconfigured driver 5
    [ 836.220] (==) Assigned the driver to the xf86ConfigLayout
    [ 836.220] (II) LoadModule: "ati"
    [ 836.220] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 836.220] (II) Module ati: vendor="X.Org Foundation"
    [ 836.220] compiled for 1.16.1, module version = 7.5.0
    [ 836.220] Module class: X.Org Video Driver
    [ 836.220] ABI class: X.Org Video Driver, version 18.0
    [ 836.220] (II) LoadModule: "radeon"
    [ 836.220] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 836.220] (II) Module radeon: vendor="X.Org Foundation"
    [ 836.220] compiled for 1.16.1, module version = 7.5.0
    [ 836.220] Module class: X.Org Video Driver
    [ 836.220] ABI class: X.Org Video Driver, version 18.0
    [ 836.220] (II) LoadModule: "intel"
    [ 836.220] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 836.221] (II) Module intel: vendor="X.Org Foundation"
    [ 836.221] compiled for 1.16.1, module version = 2.99.916
    [ 836.221] Module class: X.Org Video Driver
    [ 836.221] ABI class: X.Org Video Driver, version 18.0
    [ 836.221] (II) LoadModule: "modesetting"
    [ 836.221] (WW) Warning, couldn't open module modesetting
    [ 836.221] (II) UnloadModule: "modesetting"
    [ 836.221] (II) Unloading modesetting
    [ 836.221] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 836.221] (II) LoadModule: "fbdev"
    [ 836.221] (WW) Warning, couldn't open module fbdev
    [ 836.221] (II) UnloadModule: "fbdev"
    [ 836.221] (II) Unloading fbdev
    [ 836.221] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 836.221] (II) LoadModule: "vesa"
    [ 836.221] (WW) Warning, couldn't open module vesa
    [ 836.221] (II) UnloadModule: "vesa"
    [ 836.221] (II) Unloading vesa
    [ 836.221] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 836.221] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 836.223] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 836.223] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    [ 836.224] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    [ 836.224] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    [ 836.224] (++) using VT number 1
    [ 836.224] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 836.224] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 836.224] (II) [KMS] Kernel modesetting enabled.
    [ 836.224] (II) intel(G0): Using Kernel Mode Setting driver: i915, version 1.6.0 20080730
    [ 836.224] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 836.224] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 836.224] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 836.224] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 836.224] (==) RADEON(0): Default visual is TrueColor
    [ 836.224] (==) RADEON(0): RGB weight 888
    [ 836.224] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 836.224] (--) RADEON(0): Chipset: "OLAND" (ChipID = 0x6601)
    [ 836.224] (II) Loading sub module "dri2"
    [ 836.224] (II) LoadModule: "dri2"
    [ 836.224] (II) Module "dri2" already built-in
    [ 836.224] (II) Loading sub module "glamoregl"
    [ 836.224] (II) LoadModule: "glamoregl"
    [ 836.224] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 836.226] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 836.226] compiled for 1.16.1, module version = 1.0.0
    [ 836.226] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 836.226] (II) glamor: OpenGL accelerated X.org driver based.
    [ 836.255] (II) glamor: EGL version 1.4 (DRI2):
    [ 836.265] (II) RADEON(0): glamor detected, initialising EGL layer.
    [ 836.265] (II) RADEON(0): KMS Color Tiling: enabled
    [ 836.265] (II) RADEON(0): KMS Color Tiling 2D: enabled
    [ 836.265] (II) RADEON(0): KMS Pageflipping: enabled
    [ 836.265] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 836.276] (II) RADEON(0): Output DisplayPort-2 has no monitor section
    [ 836.289] (II) RADEON(0): Output DisplayPort-3 has no monitor section
    [ 836.303] (II) RADEON(0): EDID for output DisplayPort-2
    [ 836.316] (II) RADEON(0): EDID for output DisplayPort-3
    [ 836.316] (II) RADEON(0): Output DisplayPort-2 disconnected
    [ 836.316] (II) RADEON(0): Output DisplayPort-3 disconnected
    [ 836.316] (WW) RADEON(0): No outputs definitely connected, trying again...
    [ 836.316] (II) RADEON(0): Output DisplayPort-2 disconnected
    [ 836.316] (II) RADEON(0): Output DisplayPort-3 disconnected
    [ 836.316] (WW) RADEON(0): Unable to find connected outputs - setting 1024x768 initial framebuffer
    [ 836.316] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 836.316] (II) RADEON(0): mem size init: gart size :3fbde000 vram size: s:40000000 visible:3fcc0000
    [ 836.316] (==) RADEON(0): DPI set to (96, 96)
    [ 836.316] (II) Loading sub module "fb"
    [ 836.316] (II) LoadModule: "fb"
    [ 836.316] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 836.317] (II) Module fb: vendor="X.Org Foundation"
    [ 836.317] compiled for 1.16.1, module version = 1.0.0
    [ 836.317] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 836.317] (II) Loading sub module "ramdac"
    [ 836.317] (II) LoadModule: "ramdac"
    [ 836.317] (II) Module "ramdac" already built-in
    [ 836.317] (--) intel(G0): Integrated Graphics Chipset: Intel(R) HD Graphics 4400
    [ 836.317] (--) intel(G0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2
    [ 836.317] (==) intel(G0): Depth 24, (--) framebuffer bpp 32
    [ 836.317] (==) intel(G0): RGB weight 888
    [ 836.317] (==) intel(G0): Default visual is TrueColor
    [ 836.317] (II) intel(G0): Output eDP1 has no monitor section
    [ 836.318] (--) intel(G0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
    [ 836.318] (II) intel(G0): Enabled output eDP1
    [ 836.318] (II) intel(G0): Output DP1 has no monitor section
    [ 836.318] (II) intel(G0): Enabled output DP1
    [ 836.318] (II) intel(G0): Output HDMI1 has no monitor section
    [ 836.318] (II) intel(G0): Enabled output HDMI1
    [ 836.318] (II) intel(G0): Output DP2 has no monitor section
    [ 836.318] (II) intel(G0): Enabled output DP2
    [ 836.318] (II) intel(G0): Output HDMI2 has no monitor section
    [ 836.318] (II) intel(G0): Enabled output HDMI2
    [ 836.318] (--) intel(G0): Using a maximum size of 256x256 for hardware cursors
    [ 836.318] (II) intel(G0): Output VIRTUAL1 has no monitor section
    [ 836.318] (II) intel(G0): Enabled output VIRTUAL1
    [ 836.318] (==) intel(G0): TearFree disabled
    [ 836.318] (==) intel(G0): DPI set to (96, 96)
    [ 836.318] (II) Loading sub module "dri2"
    [ 836.318] (II) LoadModule: "dri2"
    [ 836.318] (II) Module "dri2" already built-in
    [ 836.318] (II) Loading sub module "present"
    [ 836.318] (II) LoadModule: "present"
    [ 836.318] (II) Module "present" already built-in
    [ 836.318] (--) Depth 24 pixmap format is 32 bpp
    [ 836.318] (II) intel(G0): SNA initialized with Haswell (gen7.5, gt2) backend
    [ 836.318] (==) intel(G0): Backing store enabled
    [ 836.318] (==) intel(G0): Silken mouse enabled
    [ 836.318] (II) intel(G0): HW Cursor enabled
    [ 836.318] (II) intel(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 836.319] (==) intel(G0): DPMS enabled
    [ 836.319] (II) intel(G0): [DRI2] Setup complete
    [ 836.319] (II) intel(G0): [DRI2] DRI driver: i965
    [ 836.319] (II) intel(G0): [DRI2] VDPAU driver: i965
    [ 836.319] (II) intel(G0): direct rendering: DRI2 enabled
    [ 836.319] (II) intel(G0): hardware support for Present enabled
    [ 836.319] (==) intel(G0): display hotplug detection enabled
    [ 836.319] (II) RADEON(0): [DRI2] Setup complete
    [ 836.319] (II) RADEON(0): [DRI2] DRI driver: radeonsi
    [ 836.319] (II) RADEON(0): [DRI2] VDPAU driver: radeonsi
    [ 836.319] (II) RADEON(0): Front buffer size: 3072K
    [ 836.319] (II) RADEON(0): VRAM usage limit set to 937929K
    [ 836.319] (==) RADEON(0): Backing store enabled
    [ 836.319] (II) RADEON(0): Direct rendering enabled
    [ 836.371] (II) RADEON(0): Use GLAMOR acceleration.
    [ 836.371] (II) RADEON(0): Acceleration enabled
    [ 836.371] (==) RADEON(0): DPMS enabled
    [ 836.371] (==) RADEON(0): Silken mouse enabled
    [ 836.372] (II) RADEON(0): Set up textured video (glamor)
    [ 836.372] (II) RADEON(0): [XvMC] Associated with GLAMOR Textured Video.
    [ 836.372] (II) RADEON(0): [XvMC] Extension initialized.
    [ 836.372] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 836.372] (--) RandR disabled
    [ 836.376] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 836.376] (II) AIGLX: enabled GLX_ARB_create_context
    [ 836.376] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 836.376] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 836.376] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 836.376] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 836.376] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 836.376] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 836.377] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 836.377] (II) AIGLX: Loaded and initialized radeonsi
    [ 836.377] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 836.687] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 836.687] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 836.687] (**) Power Button: Applying InputClass "system-keyboard"
    [ 836.687] (**) Power Button: Applying InputClass "keyboard layout"
    [ 836.687] (II) LoadModule: "evdev"
    [ 836.687] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 836.687] (II) Module evdev: vendor="X.Org Foundation"
    [ 836.687] compiled for 1.16.0, module version = 2.9.0
    [ 836.687] Module class: X.Org XInput Driver
    [ 836.687] ABI class: X.Org XInput driver, version 21.0
    [ 836.687] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 15 paused 0
    [ 836.687] (II) Using input driver 'evdev' for 'Power Button'
    [ 836.687] (**) Power Button: always reports core events
    [ 836.687] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 836.687] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 836.687] (--) evdev: Power Button: Found keys
    [ 836.687] (II) evdev: Power Button: Configuring as keyboard
    [ 836.687] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event3"
    [ 836.687] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 836.687] (**) Option "xkb_rules" "evdev"
    [ 836.687] (**) Option "xkb_model" "pc104"
    [ 836.687] (**) Option "xkb_layout" "fr"
    [ 836.687] (**) Option "xkb_variant" "oss"
    [ 836.700] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 836.700] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 836.700] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 836.700] (**) Video Bus: Applying InputClass "keyboard layout"
    [ 836.701] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 16 paused 0
    [ 836.701] (II) Using input driver 'evdev' for 'Video Bus'
    [ 836.701] (**) Video Bus: always reports core events
    [ 836.701] (**) evdev: Video Bus: Device: "/dev/input/event14"
    [ 836.701] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 836.701] (--) evdev: Video Bus: Found keys
    [ 836.701] (II) evdev: Video Bus: Configuring as keyboard
    [ 836.701] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input20/event14"
    [ 836.701] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 836.701] (**) Option "xkb_rules" "evdev"
    [ 836.701] (**) Option "xkb_model" "pc104"
    [ 836.701] (**) Option "xkb_layout" "fr"
    [ 836.701] (**) Option "xkb_variant" "oss"
    [ 836.701] (II) config/udev: Adding input device Video Bus (/dev/input/event15)
    [ 836.701] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 836.701] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 836.701] (**) Video Bus: Applying InputClass "keyboard layout"
    [ 836.701] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 17 paused 0
    [ 836.701] (II) Using input driver 'evdev' for 'Video Bus'
    [ 836.701] (**) Video Bus: always reports core events
    [ 836.701] (**) evdev: Video Bus: Device: "/dev/input/event15"
    [ 836.701] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 836.701] (--) evdev: Video Bus: Found keys
    [ 836.701] (II) evdev: Video Bus: Configuring as keyboard
    [ 836.702] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3f/LNXVIDEO:01/input/input21/event15"
    [ 836.702] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 836.702] (**) Option "xkb_rules" "evdev"
    [ 836.702] (**) Option "xkb_model" "pc104"
    [ 836.702] (**) Option "xkb_layout" "fr"
    [ 836.702] (**) Option "xkb_variant" "oss"
    [ 836.702] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 836.702] (II) No input driver specified, ignoring this device.
    [ 836.702] (II) This device may have been added with another device file.
    [ 836.702] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
    [ 836.702] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 836.702] (**) Sleep Button: Applying InputClass "system-keyboard"
    [ 836.702] (**) Sleep Button: Applying InputClass "keyboard layout"
    [ 836.702] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 18 paused 0
    [ 836.702] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 836.702] (**) Sleep Button: always reports core events
    [ 836.702] (**) evdev: Sleep Button: Device: "/dev/input/event1"
    [ 836.702] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 836.702] (--) evdev: Sleep Button: Found keys
    [ 836.702] (II) evdev: Sleep Button: Configuring as keyboard
    [ 836.702] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input5/event1"
    [ 836.702] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 836.702] (**) Option "xkb_rules" "evdev"
    [ 836.702] (**) Option "xkb_model" "pc104"
    [ 836.702] (**) Option "xkb_layout" "fr"
    [ 836.702] (**) Option "xkb_variant" "oss"
    [ 836.703] (II) config/udev: Adding input device HP HD Webcam (/dev/input/event10)
    [ 836.703] (**) HP HD Webcam: Applying InputClass "evdev keyboard catchall"
    [ 836.703] (**) HP HD Webcam: Applying InputClass "system-keyboard"
    [ 836.703] (**) HP HD Webcam: Applying InputClass "keyboard layout"
    [ 836.703] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 19 paused 0
    [ 836.703] (II) Using input driver 'evdev' for 'HP HD Webcam'
    [ 836.703] (**) HP HD Webcam: always reports core events
    [ 836.703] (**) evdev: HP HD Webcam: Device: "/dev/input/event10"
    [ 836.703] (--) evdev: HP HD Webcam: Vendor 0x4f2 Product 0xb3ed
    [ 836.703] (--) evdev: HP HD Webcam: Found keys
    [ 836.703] (II) evdev: HP HD Webcam: Configuring as keyboard
    [ 836.703] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb2/2-7/2-7:1.0/input/input14/event10"
    [ 836.703] (II) XINPUT: Adding extended input device "HP HD Webcam" (type: KEYBOARD, id 10)
    [ 836.703] (**) Option "xkb_rules" "evdev"
    [ 836.703] (**) Option "xkb_model" "pc104"
    [ 836.703] (**) Option "xkb_layout" "fr"
    [ 836.703] (**) Option "xkb_variant" "oss"
    [ 836.703] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 836.703] (II) No input driver specified, ignoring this device.
    [ 836.703] (II) This device may have been added with another device file.
    [ 836.703] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event6)
    [ 836.703] (II) No input driver specified, ignoring this device.
    [ 836.703] (II) This device may have been added with another device file.
    [ 836.704] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event7)
    [ 836.704] (II) No input driver specified, ignoring this device.
    [ 836.704] (II) This device may have been added with another device file.
    [ 836.704] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event8)
    [ 836.704] (II) No input driver specified, ignoring this device.
    [ 836.704] (II) This device may have been added with another device file.
    [ 836.704] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event9)
    [ 836.704] (II) No input driver specified, ignoring this device.
    [ 836.704] (II) This device may have been added with another device file.
    [ 836.704] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 836.704] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 836.704] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
    [ 836.704] (**) AT Translated Set 2 keyboard: Applying InputClass "keyboard layout"
    [ 836.704] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 20 paused 0
    [ 836.704] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 836.704] (**) AT Translated Set 2 keyboard: always reports core events
    [ 836.704] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 836.704] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 836.704] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 836.704] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 836.704] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 836.704] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 836.704] (**) Option "xkb_rules" "evdev"
    [ 836.704] (**) Option "xkb_model" "pc104"
    [ 836.704] (**) Option "xkb_layout" "fr"
    [ 836.704] (**) Option "xkb_variant" "oss"
    [ 836.705] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/event12)
    [ 836.705] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer catchall"
    [ 836.705] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 21 paused 0
    [ 836.705] (II) Using input driver 'evdev' for 'PS/2 Generic Mouse'
    [ 836.705] (**) PS/2 Generic Mouse: always reports core events
    [ 836.705] (**) evdev: PS/2 Generic Mouse: Device: "/dev/input/event12"
    [ 836.705] (--) evdev: PS/2 Generic Mouse: Vendor 0x2 Product 0x1
    [ 836.705] (--) evdev: PS/2 Generic Mouse: Found 3 mouse buttons
    [ 836.705] (--) evdev: PS/2 Generic Mouse: Found relative axes
    [ 836.705] (--) evdev: PS/2 Generic Mouse: Found x and y relative axes
    [ 836.705] (II) evdev: PS/2 Generic Mouse: Configuring as mouse
    [ 836.705] (**) evdev: PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
    [ 836.705] (**) evdev: PS/2 Generic Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 836.705] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio2/input/input16/event12"
    [ 836.705] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" (type: MOUSE, id 12)
    [ 836.705] (II) evdev: PS/2 Generic Mouse: initialized for relative axes.
    [ 836.705] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
    [ 836.705] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
    [ 836.705] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
    [ 836.705] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
    [ 836.705] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/mouse0)
    [ 836.705] (II) No input driver specified, ignoring this device.
    [ 836.705] (II) This device may have been added with another device file.
    [ 836.705] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event16)
    [ 836.705] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 836.705] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 836.705] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 836.705] (II) LoadModule: "synaptics"
    [ 836.705] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 836.705] (II) Module synaptics: vendor="X.Org Foundation"
    [ 836.705] compiled for 1.16.0, module version = 1.8.1
    [ 836.705] Module class: X.Org XInput Driver
    [ 836.705] ABI class: X.Org XInput driver, version 21.0
    [ 836.706] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 22 paused 0
    [ 836.706] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 836.706] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 836.706] (**) Option "Device" "/dev/input/event16"
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5672 (res 44)
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4764 (res 70)
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 836.743] (**) Option "TapButton1" "1"
    [ 836.743] (**) Option "TapButton2" "2"
    [ 836.743] (**) Option "TapButton3" "3"
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 836.743] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 836.743] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio3/input/input18/event16"
    [ 836.743] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
    [ 836.743] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 836.743] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 836.743] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.037
    [ 836.743] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 836.743] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 836.743] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 836.743] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 836.743] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 836.744] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
    [ 836.744] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 836.744] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event13)
    [ 836.744] (II) No input driver specified, ignoring this device.
    [ 836.744] (II) This device may have been added with another device file.
    [ 836.744] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
    [ 836.744] (II) No input driver specified, ignoring this device.
    [ 836.744] (II) This device may have been added with another device file.
    [ 836.744] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event11)
    [ 836.744] (**) HP WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 836.744] (**) HP WMI hotkeys: Applying InputClass "system-keyboard"
    [ 836.744] (**) HP WMI hotkeys: Applying InputClass "keyboard layout"
    [ 836.744] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 23 paused 0
    [ 836.744] (II) Using input driver 'evdev' for 'HP WMI hotkeys'
    [ 836.745] (**) HP WMI hotkeys: always reports core events
    [ 836.745] (**) evdev: HP WMI hotkeys: Device: "/dev/input/event11"
    [ 836.745] (--) evdev: HP WMI hotkeys: Vendor 0 Product 0
    [ 836.745] (--) evdev: HP WMI hotkeys: Found keys
    [ 836.745] (II) evdev: HP WMI hotkeys: Configuring as keyboard
    [ 836.745] (**) Option "config_info" "udev:/sys/devices/virtual/input/input17/event11"
    [ 836.745] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 14)
    [ 836.745] (**) Option "xkb_rules" "evdev"
    [ 836.745] (**) Option "xkb_model" "pc104"
    [ 836.745] (**) Option "xkb_layout" "fr"
    [ 836.745] (**) Option "xkb_variant" "oss"
    [ 836.745] (II) config/udev: Adding input device HP Wireless hotkeys (/dev/input/event4)
    [ 836.745] (**) HP Wireless hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 836.745] (**) HP Wireless hotkeys: Applying InputClass "system-keyboard"
    [ 836.745] (**) HP Wireless hotkeys: Applying InputClass "keyboard layout"
    [ 836.745] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 24 paused 0
    [ 836.745] (II) Using input driver 'evdev' for 'HP Wireless hotkeys'
    [ 836.745] (**) HP Wireless hotkeys: always reports core events
    [ 836.745] (**) evdev: HP Wireless hotkeys: Device: "/dev/input/event4"
    [ 836.745] (--) evdev: HP Wireless hotkeys: Vendor 0 Product 0
    [ 836.745] (--) evdev: HP Wireless hotkeys: Found keys
    [ 836.745] (II) evdev: HP Wireless hotkeys: Configuring as keyboard
    [ 836.745] (**) Option "config_info" "udev:/sys/devices/virtual/input/input8/event4"
    [ 836.745] (II) XINPUT: Adding extended input device "HP Wireless hotkeys" (type: KEYBOARD, id 15)
    [ 836.745] (**) Option "xkb_rules" "evdev"
    [ 836.745] (**) Option "xkb_model" "pc104"
    [ 836.745] (**) Option "xkb_layout" "fr"
    [ 836.745] (**) Option "xkb_variant" "oss"
    [ 848.058] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 848.317] (II) systemd-logind: got pause for 226:0
    [ 848.317] (II) systemd-logind: got pause for 226:1
    [ 848.317] (II) systemd-logind: got pause for 13:67
    [ 848.317] (II) systemd-logind: got pause for 13:78
    [ 848.317] (II) systemd-logind: got pause for 13:79
    [ 848.317] (II) systemd-logind: got pause for 13:65
    [ 848.317] (II) systemd-logind: got pause for 13:74
    [ 848.317] (II) systemd-logind: got pause for 13:64
    [ 848.317] (II) systemd-logind: got pause for 13:76
    [ 848.317] (II) systemd-logind: got pause for 13:80
    [ 848.317] (II) systemd-logind: got pause for 13:75
    [ 848.317] (II) systemd-logind: got pause for 13:68
    [ 850.001] (II) systemd-logind: got resume for 226:0
    [ 850.001] (II) systemd-logind: got resume for 226:1
    [ 850.001] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 851.067] (II) intel(G0): EDID vendor "LGD", prod id 1034
    [ 851.067] (II) intel(G0): Printing DDC gathered Modelines:
    [ 851.067] (II) intel(G0): Modeline "1920x1080"x0.0 140.10 1920 1980 2016 2092 1080 1083 1088 1116 +hsync -vsync (67.0 kHz eP)
    [ 851.067] (II) intel(G0): Modeline "1920x1080"x0.0 93.40 1920 1980 2016 2092 1080 1083 1088 1116 +hsync -vsync (44.6 kHz e)
    [ 851.068] (II) systemd-logind: got resume for 13:67
    [ 851.068] (II) systemd-logind: got resume for 13:78
    [ 851.068] (II) systemd-logind: got resume for 13:79
    [ 851.068] (II) systemd-logind: got resume for 13:65
    [ 851.068] (II) systemd-logind: got resume for 13:74
    [ 851.068] (II) systemd-logind: got resume for 13:64
    [ 851.068] (II) systemd-logind: got resume for 13:76
    [ 851.068] (II) systemd-logind: got resume for 13:80
    [ 851.068] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 851.068] (II) systemd-logind: got resume for 13:75
    [ 851.068] (II) systemd-logind: got resume for 13:68
    [ 856.357] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 856.614] (II) systemd-logind: got pause for 226:0
    [ 856.614] (II) systemd-logind: got pause for 226:1
    [ 856.614] (II) systemd-logind: got pause for 13:67
    [ 856.614] (II) systemd-logind: got pause for 13:78
    [ 856.614] (II) systemd-logind: got pause for 13:79
    [ 856.614] (II) systemd-logind: got pause for 13:65
    [ 856.614] (II) systemd-logind: got pause for 13:74
    [ 856.614] (II) systemd-logind: got pause for 13:64
    [ 856.614] (II) systemd-logind: got pause for 13:76
    [ 856.614] (II) systemd-logind: got pause for 13:80
    [ 856.614] (II) systemd-logind: got pause for 13:75
    [ 856.614] (II) systemd-logind: got pause for 13:68
    [ 858.613] (II) evdev: HP Wireless hotkeys: Close
    [ 858.613] (II) UnloadModule: "evdev"
    [ 858.613] (II) systemd-logind: releasing fd for 13:68
    [ 858.640] (II) evdev: HP WMI hotkeys: Close
    [ 858.640] (II) UnloadModule: "evdev"
    [ 858.640] (II) systemd-logind: releasing fd for 13:75
    [ 858.703] (II) UnloadModule: "synaptics"
    [ 858.703] (II) systemd-logind: releasing fd for 13:80
    [ 858.770] (II) evdev: PS/2 Generic Mouse: Close
    [ 858.770] (II) UnloadModule: "evdev"
    [ 858.770] (II) systemd-logind: releasing fd for 13:76
    [ 858.822] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 858.823] (II) UnloadModule: "evdev"
    [ 858.823] (II) systemd-logind: releasing fd for 13:64
    [ 858.876] (II) evdev: HP HD Webcam: Close
    [ 858.876] (II) UnloadModule: "evdev"
    [ 858.876] (II) systemd-logind: releasing fd for 13:74
    [ 858.930] (II) evdev: Sleep Button: Close
    [ 858.930] (II) UnloadModule: "evdev"
    [ 858.930] (II) systemd-logind: releasing fd for 13:65
    [ 858.956] (II) evdev: Video Bus: Close
    [ 858.957] (II) UnloadModule: "evdev"
    [ 858.957] (II) systemd-logind: releasing fd for 13:79
    [ 858.983] (II) evdev: Video Bus: Close
    [ 858.983] (II) UnloadModule: "evdev"
    [ 858.983] (II) systemd-logind: releasing fd for 13:78
    [ 859.010] (II) evdev: Power Button: Close
    [ 859.010] (II) UnloadModule: "evdev"
    [ 859.010] (II) systemd-logind: releasing fd for 13:67
    [ 859.037] (EE) intel(G0): Failed to set backlight intel_backlight for output eDP1 to brightness level 0, disabling
    [ 859.037] (EE)
    [ 859.037] (EE) Backtrace:
    [ 859.037] (EE) 0: /usr/bin/Xorg.bin (xorg_backtrace+0x56) [0x593a46]
    [ 859.037] (EE) 1: /usr/bin/Xorg.bin (0x400000+0x197b99) [0x597b99]
    [ 859.037] (EE) 2: /usr/lib/libc.so.6 (0x7fc922129000+0x339f0) [0x7fc92215c9f0]
    [ 859.037] (EE) 3: /usr/bin/Xorg.bin (RRDeleteOutputProperty+0x20) [0x4fce60]
    [ 859.037] (EE) 4: /usr/lib/xorg/modules/drivers/intel_drv.so (0x7fc91ca8e000+0x64bea) [0x7fc91caf2bea]
    [ 859.037] (EE) 5: /usr/lib/xorg/modules/drivers/intel_drv.so (0x7fc91ca8e000+0x6eb91) [0x7fc91cafcb91]
    [ 859.037] (EE) 6: /usr/lib/xorg/modules/drivers/intel_drv.so (0x7fc91ca8e000+0x6ec48) [0x7fc91cafcc48]
    [ 859.037] (EE) 7: /usr/lib/xorg/modules/drivers/intel_drv.so (0x7fc91ca8e000+0x70cde) [0x7fc91cafecde]
    [ 859.037] (EE) 8: /usr/bin/Xorg.bin (0x400000+0xadae7) [0x4adae7]
    [ 859.037] (EE) 9: /usr/bin/Xorg.bin (0x400000+0x1148c2) [0x5148c2]
    [ 859.037] (EE) 10: /usr/bin/Xorg.bin (0x400000+0x3b90c) [0x43b90c]
    [ 859.037] (EE) 11: /usr/lib/libc.so.6 (__libc_start_main+0xf0) [0x7fc922149040]
    [ 859.037] (EE) 12: /usr/bin/Xorg.bin (0x400000+0x25d0e) [0x425d0e]
    [ 859.037] (EE)
    [ 859.037] (EE) Segmentation fault at address 0x0
    [ 859.037] (EE)
    Fatal server error:
    [ 859.037] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 859.037] (EE)
    [ 859.037] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 859.037] (EE) Please also check the log file at "/home/USER/.local/share/xorg/Xorg.0.log" for additional information.
    [ 859.037] (EE)
    [ 859.041] (EE) Server terminated with error (1). Closing log file.
    And I have to reboot to be able to use my Intel card again, if I do an echo OFF without rebooting, I get a segfault too.
    if I launch for example steam it just show horrible glitches. (do you want a screenshot ?)
    DRI_PRIME=1 steam
    Here is the log
    Running Steam on arch 64-bit
    STEAM_RUNTIME is enabled automatically
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    libGL error: unable to load driver: radeonsi_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: radeonsi
    libGL error: unable to load driver: swrast_dri.so
    libGL error: failed to load driver: swrast
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    (steam:1063): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « adwaita »
    (steam:1063): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « adwaita »
    /usr/share/themes/Adwaita/gtk-2.0/gtkrc:1137: error: unexpected identifier `direction', expected character `}'
    (steamwebhelper:1104): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « adwaita »
    (steamwebhelper:1104): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « adwaita »
    /usr/share/themes/Adwaita/gtk-2.0/gtkrc:1137: error: unexpected identifier `direction', expected character `}'
    Installing breakpad exception handler for appid(steamwebhelper)/version(20140922201705)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1411417025)
    [1018/174612:ERROR:nss_util.cc(1018)] Failed to load NSS libraries.
    Installing breakpad exception handler for appid(steamwebhelper)/version(20140922201705)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1411417025)
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    libGL error: unable to load driver: radeonsi_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: radeonsi
    libGL error: unable to load driver: swrast_dri.so
    libGL error: failed to load driver: swrast
    Error: OpenGL GLX context is not using direct rendering, which may cause performance problems.
    For more information visit https://support.steampowered.com/kb_article.php?ref=9938-EYZB-7457.
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    ** (steam:1063): WARNING **: Unknown device type 14
    ** (steam:1063): WARNING **: Could not create object for /org/freedesktop/NetworkManager/Devices/0: unknown object type
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Generating new string page texture 2: 48x256, total string texture memory is 49,15 KB
    Generating new string page texture 3: 256x256, total string texture memory is 311,30 KB
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Generating new string page texture 9: 128x256, total string texture memory is 442,37 KB
    Generating new string page texture 10: 64x256, total string texture memory is 507,90 KB
    Generating new string page texture 11: 8x256, total string texture memory is 516,10 KB
    Generating new string page texture 12: 16x256, total string texture memory is 532,48 KB
    Generating new string page texture 13: 24x256, total string texture memory is 557,06 KB
    Generating new string page texture 14: 32x256, total string texture memory is 589,82 KB
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Adding licenses for the following package(s): 0, 216, 715, 1290, 1465, 1989, 2208, 2487, 2989, 4819, 6112, 6749, 7209, 7514, 7706, 7877, 8089, 8186, 8450, 8451, 8453, 8538, 8773, 8784, 11071, 11288, 11347, 11684, 11793, 11837, 11856, 12249, 12328, 12558, 13054, 13162, 13254, 13391, 13616, 13632, 13698, 14012, 14176, 14284, 14521, 14683, 14695, 14840, 14871, 14909, 15136, 15606, 15638, 15818, 15919, 15940, 16026, 16139, 16223, 16373, 16549, 16586, 16610, 16615, 16640, 16718, 16728, 16767, 17078, 17172, 17221, 17523, 17602, 17607, 17838, 17843, 17965, 18120, 18371, 18485, 18501, 18620, 18769, 18856, 18906, 19094, 19223, 21059, 21076, 21186, 21213, 21223, 21227, 21237, 21240, 21244, 21248, 21327, 21364, 21395, 21434, 21442, 21469, 21478, 21491, 25597, 25679, 25820, 26266, 26358, 26459, 26482, 26854, 26901, 27035, 27106, 27173, 27227, 27307, 27322, 27374, 27599, 27678, 27693, 27888, 27968, 28339, 28421, 28453, 28503, 28505, 28540, 28641, 28830, 28931, 28946, 28955, 29273, 29309, 29470, 29475, 29547, 29760, 29793, 29856, 29890, 30170, 30200, 30202, 30219, 30286, 30442, 30496, 30499, 30542, 30616, 30669, 30879, 30960, 31174, 31566, 32206, 32569, 32584, 32889, 33040, 33061, 33684, 33764, 34098, 34101, 34473, 34795, 35137, 35490, 35496, 35551, 35635, 35795, 36075, 36558, 38004, 38506, 38928, 39803, 40646, 40679, 41133, 41539, 42715, 42910, 43386, 43393, 44217, 45320, 45705, 45737, 51437, 52326, 52661, 52990, 52999, 53000, 53002, 53004, 53006, 53007
    roaming config store loaded successfully - 12381 bytes.
    migrating temporary roaming config store
    Failed to init SteamVR because it isn't installed
    libGL error: unable to load driver: radeonsi_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: radeonsi
    libGL error: unable to load driver: swrast_dri.so
    libGL error: failed to load driver: swrast
    ExecCommandLine: ""/home/USER/.local/share/Steam/ubuntu12_32/steam" "
    System startup time: 35,62 seconds
    libGL error: unable to load driver: radeonsi_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: radeonsi
    libGL error: unable to load driver: swrast_dri.so
    libGL error: failed to load driver: swrast
    [1018/174647:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Generating new string page texture 78: 1024x256, total string texture memory is 1,64 MB
    Generating new string page texture 79: 128x256, total string texture memory is 131,07 KB
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Generating new string page texture 87: 128x256, total string texture memory is 1,77 MB
    Generating new string page texture 88: 256x256, total string texture memory is 2,03 MB
    Generating new string page texture 89: 128x256, total string texture memory is 2,16 MB
    Generating new string page texture 91: 256x256, total string texture memory is 2,42 MB
    Generating new string page texture 92: 384x256, total string texture memory is 2,82 MB
    Generating new string page texture 95: 48x256, total string texture memory is 2,87 MB
    Generating new string page texture 96: 128x256, total string texture memory is 3,00 MB
    Running Steam on arch 64-bit
    STEAM_RUNTIME has been set by the user to: /home/USER/.local/share/Steam/ubuntu12_32/steam-runtime
    ExecCommandLine: "/home/USER/.steam/root/ubuntu12_32/steam steam://open/driverhelperready"
    ExecSteamURL: "steam://open/driverhelperready"
    Generating new string page texture 115: 256x256, total string texture memory is 3,26 MB
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Installing breakpad exception handler for appid(steam)/version(1411443970)
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Attempting to use a Windows only path root on non-Windows platform for game 49520
    Game update: AppID 49520 "Borderlands 2", ProcID 1301, IP 0.0.0.0:0
    ERROR: ld.so: object '/home/USER/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    Steam: An X Error occurred
    X Error of failed request: GLXBadCurrentWindow
    Major opcode of failed request: 156
    Serial number of failed request: 57402
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: GLXBadCurrentWindow
    Major opcode of failed request: 156
    Serial number of failed request: 57403
    xerror_handler: X failed, continuing
    Steam: An X Error occurred
    X Error of failed request: GLXBadCurrentWindow
    Major opcode of failed request: 156
    Serial number of failed request: 57404
    xerror_handler: X failed, continuing
    [xcb] Too much data requested from _XRead
    [xcb] This is most likely caused by a broken X extension library
    [xcb] Aborting, sorry about that.
    steam: ../../src/xcb_io.c :736 : _XRead: l'assertion « !xcb_xlib_too_much_data_requested » a échoué.
    [2014-10-18 17:46:06] Startup - updater built Sep 22 2014 20:17:04
    Looks like steam didn't shutdown cleanly, scheduling immediate update check
    [2014-10-18 17:46:07] Checking for update on startup
    [2014-10-18 17:46:07] Checking for available updates...
    [2014-10-18 17:46:09] Download skipped: /client/steam_client_ubuntu12 version 1411443970, installed version 1411443970
    [2014-10-18 17:46:09] Nothing to do
    [2014-10-18 17:46:09] Verifying installation...
    [2014-10-18 17:46:09] Performing checksum verification of executable files
    [2014-10-18 17:46:11] Verification complete
    Uploading dump (out-of-process) [proxy '']
    /tmp/dumps/assert_20141018174606_1.dmp
    /home/USER/.local/share/Steam/steam.sh : ligne 729 : 1063 Abandon (core dumped)$STEAM_DEBUGGER "$STEAMROOT/$STEAMEXEPATH" "$@"
    ERROR: ld.so: object '/home/USER/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS64): ignored.
    Requested Force create but SharedObjectMutex already created
    Forced create but already created for SharedObjectEvent
    Forced create but already created for SharedObjectEvent
    libGL error: unable to load driver: radeonsi_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: radeonsi
    libGL error: unable to load driver: swrast_dri.so
    libGL error: failed to load driver: swrast
    ERROR: ld.so: object '/home/USER/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    ERROR: ld.so: object '/home/USER/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    ERROR: ld.so: object '/home/USER/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
    [S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.
    [S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so.
    Finished uploading minidump (out-of-process): success = yes
    response: CrashID=bp-9329fc00-c471-4ac1-9fdd-28dbe2141018
    Moreover, if I have the radeon driver installed and I launch emacs in graphic mode or conky, Xorg segfault once more !
    Here is the Xorg log when emacs make stop X
    [ 618.385]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 618.388] X Protocol Version 11, Revision 0
    [ 618.389] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 618.391] Current Operating System: Linux letik-laptop 3.16.4-1-ARCH #1 SMP PREEMPT Mon Oct 6 08:22:27 CEST 2014 x86_64
    [ 618.391] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=256c9cdb-c3d9-4595-872b-9e0493727993 rw quiet
    [ 618.393] Build Date: 21 September 2014 10:53:13AM
    [ 618.394]
    [ 618.395] Current version of pixman: 0.32.6
    [ 618.397] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 618.397] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 618.401] (==) Log file: "/home/USER/.local/share/xorg/Xorg.0.log", Time: Sat Oct 18 17:53:43 2014
    [ 618.402] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 618.404] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 618.404] (==) No Layout section. Using the first Screen section.
    [ 618.404] (==) No screen section available. Using defaults.
    [ 618.404] (**) |-->Screen "Default Screen Section" (0)
    [ 618.404] (**) | |-->Monitor "<default monitor>"
    [ 618.404] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 618.404] (==) Automatically adding devices
    [ 618.404] (==) Automatically enabling devices
    [ 618.404] (==) Automatically adding GPU devices
    [ 618.404] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 618.404] Entry deleted from font path.
    [ 618.404] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 618.404] Entry deleted from font path.
    [ 618.404] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 618.404] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 618.404] Entry deleted from font path.
    [ 618.404] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 618.404] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 618.404] (**) ModulePath set to "/usr/lib/xorg/modules/updates,/usr/lib/xorg/modules"
    [ 618.404] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 618.404] (II) Loader magic: 0x818d80
    [ 618.404] (II) Module ABI versions:
    [ 618.404] X.Org ANSI C Emulation: 0.4
    [ 618.404] X.Org Video Driver: 18.0
    [ 618.404] X.Org XInput driver : 21.0
    [ 618.404] X.Org Server Extension : 8.0
    [ 618.405] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 618.405] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 618.406] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 618.406] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 618.406] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 9 paused 0
    [ 618.407] (--) PCI:*(0:0:2:0) 8086:0a16:103c:198f rev 11, Mem @ 0xd0000000/4194304, 0xc0000000/268435456, I/O @ 0x00004000/64
    [ 618.407] (--) PCI: (0:3:0:0) 1002:6601:103c:1990 rev 0, Mem @ 0xb0000000/268435456, 0xd0500000/262144, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    [ 618.407] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 618.407] (II) LoadModule: "glx"
    [ 618.407] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 618.408] (II) Module glx: vendor="X.Org Foundation"
    [ 618.408] compiled for 1.16.1, module version = 1.0.0
    [ 618.408] ABI class: X.Org Server Extension, version 8.0
    [ 618.408] (==) AIGLX enabled
    [ 618.408] (==) Matched intel as autoconfigured driver 0
    [ 618.408] (==) Matched ati as autoconfigured driver 1
    [ 618.408] (==) Matched intel as autoconfigured driver 2
    [ 618.408] (==) Matched modesetting as autoconfigured driver 3
    [ 618.408] (==) Matched fbdev as autoconfigured driver 4
    [ 618.408] (==) Matched vesa as autoconfigured driver 5
    [ 618.408] (==) Assigned the driver to the xf86ConfigLayout
    [ 618.408] (II) LoadModule: "intel"
    [ 618.408] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 618.408] (II) Module intel: vendor="X.Org Foundation"
    [ 618.408] compiled for 1.16.1, module version = 2.99.916
    [ 618.408] Module class: X.Org Video Driver
    [ 618.408] ABI class: X.Org Video Driver, version 18.0
    [ 618.408] (II) LoadModule: "ati"
    [ 618.408] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 618.408] (II) Module ati: vendor="X.Org Foundation"
    [ 618.408] compiled for 1.16.1, module version = 7.5.0
    [ 618.408] Module class: X.Org Video Driver
    [ 618.408] ABI class: X.Org Video Driver, version 18.0
    [ 618.408] (II) LoadModule: "radeon"
    [ 618.408] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 618.409] (II) Module radeon: vendor="X.Org Foundation"
    [ 618.409] compiled for 1.16.1, module version = 7.5.0
    [ 618.409] Module class: X.Org Video Driver
    [ 618.409] ABI class: X.Org Video Driver, version 18.0
    [ 618.409] (II) LoadModule: "modesetting"
    [ 618.409] (WW) Warning, couldn't open module modesetting
    [ 618.409] (II) UnloadModule: "modesetting"
    [ 618.409] (II) Unloading modesetting
    [ 618.409] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 618.409] (II) LoadModule: "fbdev"
    [ 618.409] (WW) Warning, couldn't open module fbdev
    [ 618.409] (II) UnloadModule: "fbdev"
    [ 618.409] (II) Unloading fbdev
    [ 618.409] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 618.409] (II) LoadModule: "vesa"
    [ 618.409] (WW) Warning, couldn't open module vesa
    [ 618.409] (II) UnloadModule: "vesa"
    [ 618.409] (II) Unloading vesa
    [ 618.409] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 618.409] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 618.409] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    [ 618.409] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    [ 618.409] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    [ 618.409] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    KABINI, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS, MULLINS,
    MULLINS, MULLINS, MULLINS, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI, KAVERI,
    KAVERI, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII, HAWAII,
    HAWAII, HAWAII, HAWAII, HAWAII, HAWAII
    [ 618.412] (++) using VT number 1
    [ 618.412] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 618.412] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
    [ 618.412] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20080730
    [ 618.412] (II) [KMS] Kernel modesetting enabled.
    [ 618.412] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    [ 618.412] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4400
    [ 618.412] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2
    [ 618.412] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 618.412] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 618.412] (==) intel(0): RGB weight 888
    [ 618.412] (==) intel(0): Default visual is TrueColor
    [ 618.412] (II) intel(0): Output eDP1 has no monitor section
    [ 618.413] (--) intel(0): Found backlight control interface intel_backlight (type 'raw') for output eDP1
    [ 618.413] (II) intel(0): Enabled output eDP1
    [ 618.413] (II) intel(0): Output DP1 has no monitor section
    [ 618.413] (II) intel(0): Enabled output DP1
    [ 618.413] (II) intel(0): Output HDMI1 has no monitor section
    [ 618.413] (II) intel(0): Enabled output HDMI1
    [ 618.413] (II) intel(0): Output DP2 has no monitor section
    [ 618.413] (II) intel(0): Enabled output DP2
    [ 618.413] (II) intel(0): Output HDMI2 has no monitor section
    [ 618.413] (II) intel(0): Enabled output HDMI2
    [ 618.413] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    [ 618.413] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 618.413] (II) intel(0): Enabled output VIRTUAL1
    [ 618.413] (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
    [ 618.413] (==) intel(0): TearFree disabled
    [ 618.413] (==) intel(0): DPI set to (96, 96)
    [ 618.413] (II) Loading sub module "dri2"
    [ 618.413] (II) LoadModule: "dri2"
    [ 618.413] (II) Module "dri2" already built-in
    [ 618.413] (II) Loading sub module "present"
    [ 618.413] (II) LoadModule: "present"
    [ 618.413] (II) Module "present" already built-in
    [ 618.413] (==) RADEON(G0): Depth 24, (--) framebuffer bpp 32
    [ 618.413] (II) RADEON(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 618.413] (==) RADEON(G0): Default visual is TrueColor
    [ 618.413] (==) RADEON(G0): RGB weight 888
    [ 618.413] (II) RADEON(G0): Using 8 bits per RGB (8 bit DAC)
    [ 618.413] (--) RADEON(G0): Chipset: "OLAND" (ChipID = 0x6601)
    [ 618.413] (II) Loading sub module "dri2"
    [ 618.413] (II) LoadModule: "dri2"
    [ 618.413] (II) Module "dri2" already built-in
    [ 618.413] (II) Loading sub module "glamoregl"
    [ 618.413] (II) LoadModule: "glamoregl"
    [ 618.413] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 618.416] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 618.416] compiled for 1.16.1, module version = 1.0.0
    [ 618.416] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 618.416] (II) glamor: OpenGL accelerated X.org driver based.
    [ 618.446] (II) glamor: EGL version 1.4 (DRI2):
    [ 618.456] (II) RADEON(G0): glamor detected, initialising EGL layer.
    [ 618.456] (II) RADEON(G0): KMS Color Tiling: enabled
    [ 618.456] (II) RADEON(G0): KMS Color Tiling 2D: enabled
    [ 618.456] (II) RADEON(G0): KMS Pageflipping: enabled
    [ 618.456] (II) RADEON(G0): SwapBuffers wait for vsync: enabled
    [ 618.470] (II) RADEON(G0): Output DisplayPort-1-2 has no monitor section
    [ 618.483] (II) RADEON(G0): Output DisplayPort-1-3 has no monitor section
    [ 618.496] (II) RADEON(G0): EDID for output DisplayPort-1-2
    [ 618.510] (II) RADEON(G0): EDID for output DisplayPort-1-3
    [ 618.510] (II) RADEON(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 618.510] (II) RADEON(G0): mem size init: gart size :3fbde000 vram size: s:40000000 visible:3fcc0000
    [ 618.510] (==) RADEON(G0): DPI set to (96, 96)
    [ 618.510] (II) Loading sub module "fb"
    [ 618.510] (II) LoadModule: "fb"
    [ 618.510] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 618.510] (II) Module fb: vendor="X.Org Foundation"
    [ 618.510] compiled for 1.16.1, module version = 1.0.0
    [ 618.510] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 618.510] (II) Loading sub module "ramdac"
    [ 618.510] (II) LoadModule: "ramdac"
    [ 618.510] (II) Module "ramdac" already built-in
    [ 618.510] (==) Depth 24 pixmap format is 32 bpp
    [ 618.510] (II) RADEON(G0): [DRI2] Setup complete
    [ 618.510] (II) RADEON(G0): [DRI2] DRI driver: radeonsi
    [ 618.510] (II) RADEON(G0): [DRI2] VDPAU driver: radeonsi
    [ 618.510] (II) RADEON(G0): Front buffer size: 3072K
    [ 618.510] (II) RADEON(G0): VRAM usage limit set to 937929K
    [ 618.510] (==) RADEON(G0): Backing store enabled
    [ 618.510] (II) RADEON(G0): Direct rendering enabled
    [ 618.562] (II) RADEON(G0): Use GLAMOR acceleration.
    [ 618.562] (II) RADEON(G0): Acceleration enabled
    [ 618.562] (==) RADEON(G0): DPMS enabled
    [ 618.562] (==) RADEON(G0): Silken mouse enabled
    [ 618.564] (II) RADEON(G0): Set up textured video (glamor)
    [ 618.564] (II) RADEON(G0): [XvMC] Associated with GLAMOR Textured Video.
    [ 618.564] (II) RADEON(G0): [XvMC] Extension initialized.
    [ 618.564] (II) RADEON(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 618.564] (II) intel(0): SNA initialized with Haswell (gen7.5, gt2) backend
    [ 618.564] (==) intel(0): Backing store enabled
    [ 618.564] (==) intel(0): Silken mouse enabled
    [ 618.564] (II) intel(0): HW Cursor enabled
    [ 618.564] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 618.564] (==) intel(0): DPMS enabled
    [ 618.564] (II) intel(0): [DRI2] Setup complete
    [ 618.564] (II) intel(0): [DRI2] DRI driver: i965
    [ 618.564] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 618.564] (II) intel(0): direct rendering: DRI2 enabled
    [ 618.564] (II) intel(0): hardware support for Present enabled
    [ 618.564] (==) intel(0): display hotplug detection enabled
    [ 618.564] (--) RandR disabled
    [ 618.575] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 618.575] (II) AIGLX: enabled GLX_ARB_create_context
    [ 618.575] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 618.575] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 618.575] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 618.575] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 618.575] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 618.575] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 618.575] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 618.575] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 618.575] (II) AIGLX: Loaded and initialized i965
    [ 618.575] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 618.584] (II) intel(0): switch to mode [email protected] on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 618.606] (II) intel(0): Setting screen physical size to 508 x 285
    [ 618.625] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 618.625] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 618.625] (**) Power Button: Applying InputClass "system-keyboard"
    [ 618.625] (**) Power Button: Applying InputClass "keyboard layout"
    [ 618.625] (II) LoadModule: "evdev"
    [ 618.626] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 618.626] (II) Module evdev: vendor="X.Org Foundation"
    [ 618.626] compiled for 1.16.0, module version = 2.9.0
    [ 618.626] Module class: X.Org XInput Driver
    [ 618.626] ABI class: X.Org XInput driver, version 21.0
    [ 618.626] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 15 paused 0
    [ 618.626] (II) Using input driver 'evdev' for 'Power Button'
    [ 618.626] (**) Power Button: always reports core events
    [ 618.626] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 618.626] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 618.626] (--) evdev: Power Button: Found keys
    [ 618.626] (II) evdev: Power Button: Configuring as keyboard
    [ 618.626] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event3"
    [ 618.626] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 618.626] (**) Option "xkb_rules" "evdev"
    [ 618.626] (**) Option "xkb_model" "pc104"
    [ 618.626] (**) Option "xkb_layout" "fr"
    [ 618.626] (**) Option "xkb_variant" "oss"
    [ 618.639] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 618.639] (**) Video Bus: Applying InputClass

    Easiest way to make it prefer IGP is to let Xorg handle it, or at least I had no need for any extra configuration. My guess would be that you have leftovers in your config files when you installed Catalyst first, though it's just a hunch. If that's not the case, wiki has all needed configs. Again, chip which has output attached to it should be recognized automatically and preffered over the other one.
    Yes it needs to prefer IGP because in muxless systems video output (screen) is attached to  IGP, not discrete card. What PRIME does essentially is offloading graphics from discrete card to integrated card's buffer as IGP is the one who has actual output.
    As for performance, I am not a heavy gamer, or at least most of the time  I do not use anything that really requires extra graphics power from discrete card (occasionally give Xonotic a spin, and that's about it).  Therefor I cannot compare performance having no really relevant data. But what I can compare are temperatures, which in case of free driver are substantially higher than those with Catalyst. I'd really love to be able to use free driver on a day to day basis, but I'd rather switch discrete card off than having to listen the fan behaving like turbine all the time.
    (P.S. I made a typo in previous message, it's not HD4000, but HD4600, quite a big difference in performance, will fix now.)
    slobo@megatherion ~ % lspci|grep VGA
    00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
    01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Mars [Radeon HD 8670A/8670M/8750M] (rev ff)
    slobo@megatherion ~ % xrandr --listproviders
    Providers: number : 2
    Provider 0: id: 0x79 cap: 0xb, Source Output, Sink Output, Sink Offload crtcs: 4 outputs: 4 associated providers: 1 name:Intel
    Provider 1: id: 0x51 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 2 outputs: 0 associated providers: 1 name:radeon
    slobo@megatherion ~ % xrandr --setprovideroffloadsink radeon Intel
    slobo@megatherion ~ % glxinfo|grep 'OpenGL renderer'
    OpenGL renderer string: Mesa DRI Intel(R) Haswell Mobile
    slobo@megatherion ~ % DRI_PRIME=1 glxinfo|grep 'OpenGL renderer'
    OpenGL renderer string: Gallium 0.4 on AMD OLAND
    slobo@megatherion ~ %
    Last edited by Xabre (2014-10-19 13:03:51)

  • GDM not starting

    I just upgraded to GNOME 3.8 through the gnome-unstable repo, but GDM doesn't seem to be starting. The main problems seem to be that it's "unable to create drawable", that the gnome-settings-daemon is unavailable, and there are some font-config issues.
    Here is the log:
    /etc/gdm/Xsession: Beginning session setup...
    localuser:mmcmillan being added to access control list
    /etc/gdm/Xsession: Setup done, will execute: /usr/bin/ssh-agent -- gnome-session
    GNOME_KEYRING_CONTROL=/run/user/1000/keyring-8uogYL
    SSH_AUTH_SOCK=/run/user/1000/keyring-8uogYL/ssh
    GPG_AGENT_INFO=/run/user/1000/keyring-8uogYL/gpg:0:1
    GNOME_KEYRING_CONTROL=/run/user/1000/keyring-8uogYL
    SSH_AUTH_SOCK=/run/user/1000/keyring-8uogYL/ssh
    GNOME_KEYRING_CONTROL=/run/user/1000/keyring-8uogYL
    SSH_AUTH_SOCK=/run/user/1000/keyring-8uogYL/ssh
    GPG_AGENT_INFO=/run/user/1000/keyring-8uogYL/gpg:0:1
    GNOME_KEYRING_CONTROL=/run/user/1000/keyring-8uogYL
    SSH_AUTH_SOCK=/run/user/1000/keyring-8uogYL/ssh
    GPG_AGENT_INFO=/run/user/1000/keyring-8uogYL/gpg:0:1
    (gnome-settings-daemon:20052): color-plugin-WARNING **: failed to reset xrandr-Acer Technologies-V173-LBN0C0324001 gamma tables: gamma size is zero
    ** Message: applet now removed from the notification area
    Failed to play sound: File or data not found
    (empathy:20099): libnotify-WARNING **: Failed to connect to proxy
    JS LOG: GNOME Shell started at Sun Apr 07 2013 14:06:52 GMT-0400 (EDT)
    JS LOG: Extension "[email protected]" had error: Error: extension is not compatible with current GNOME Shell and/or GJS version
    JS LOG: Extension "[email protected]" had error: Error: Strange version number (extension.js:8).
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    ** Message: applet now embedded in the notification area
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    failed to create drawable
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    [20242:20270:0407/140738:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [20242:20270:0407/140738:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [20242:20242:0407/140738:ERROR:object_proxy.cc(529)] Failed to call method: org.chromium.Mtpd.EnumerateStorages: object_path= /org/chromium/Mtpd: org.freedesktop.DBus.Error.ServiceUnknown: The name org.chromium.Mtpd was not provided by any .service files
    [20242:20301:0407/140738:ERROR:connection.cc(730)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    [20242:20242:0407/140738:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    No bp log location saved, using default.
    [000:000] Browser XEmbed support present: 1
    [000:000] Browser toolkit is Gtk2.
    [000:000] Using Gtk2 toolkit
    [000:004] Starting client channel.
    [000:005] Warning(clientchannel.cc:436): Unreadable or no port file. Could not initiate GoogleTalkPlugin connection
    [000:005] Warning(clientchannel.cc:411): Could not initiate GoogleTalkPlugin connection
    [000:005] GoogleTalkPlugin not running. Starting new process...
    [000:005] Warning(pluginutils.cc:251): Failed to get GoogleTalkPlugin path. Trying default.
    [000:006] Started GoogleTalkPlugin, path=/opt/google/talkplugin/GoogleTalkPlugin
    [000:007] Waiting for GoogleTalkPlugin to start...
    sh: lsb_release: command not found
    [001:102] Attempting to connect to GoogleTalkPlugin...
    [001:103] Read port file, port=46498
    [001:107] Initiated connection to GoogleTalkPlugin
    [001:203] Socket connection established
    [001:203] ScheduleOnlineCheck: Online check in 5000ms
    [001:303] Got cookie response, socket is authorized
    [001:303] AUTHORIZED; socket handshake complete
    [001:305] F->C: ["fs",{"pr":"a"}]
    [001:404] F->C: ["mf","mf3.17","3.17.0.0",2,{"audioCodecs":[[103,"ISAC",1,0,16000],[104,"ISAC",1,0,32000],[9,"G722",1,64000,16000],[102,"ILBC",1,13300,8000],[0,"PCMU",1,64000,8000],[8,"PCMA",1,64000,8000],[107,"CN",1,0,48000],[106,"CN",1,0,32000],[105,"CN",1,0,16000],[13,"CN",1,0,8000],[127,"red",1,0,8000],[126,"telephone-event",1,0,8000]],"audioRtpHdrExts":[{"id":1,"uri":"urn:ietf:params:rtp-hdrext:ssrc-audio-level"}],"camDeviceName":"Unknown Camera","caps":7,"cpuArchitecture":1,"cpuCacheSize":6291456,"cpuFamily":6,"cpuFlags":["sse2","ssse3","sse4_1","sse4_2","avx"],"cpuHasSSE2":true,"cpuModel":42,"cpuSpeed":3101,"cpuStepping":7,"cpuVendor":"GenuineIntel","cpus":4,"cpusPhysical":4,"cryptoSuites":["AES_CM_128_HMAC_SHA1_80","AES_CM_128_HMAC_SHA1_32"],"dataChannelVersion":1,"effectsVersion":9,"gpuDescription":"","gpuDeviceId":0,"gpuDeviceName":"","gpuDriver":"","gpuDriverVersion":"","gpuVendorId":0,"machineModel":"Not available","remotingAssistanceAllowed":0,"remotingVersion":1,"renderer":2,"rtcpMux":true,"screencast":2,"screencastLocalPreview":1,"supportsConcurrentSessions":true,"transports":["i","gice"],"videoCodecs":[[99,"H264-SVC",640,360,30],[97,"H264",640,360,30],[98,"H263",640,360,30]],"videoRtpHdrExts":[{"id":2,"uri":"urn:ietf:params:rtp-hdrext:toffset"}]}]
    [001:505] F->C: ["getdevicestate","15","0",["__default_device","Built-in Audio Analog Stereo"],"0",["__default_device","Built-in Audio Analog Stereo"],"-1",[]]
    [006:217] HandleOnlineCheck: Starting check
    [006:217] HandleOnlineCheck: OK; current state: 3
    [20242:20242:0407/140825:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    ALSA lib pcm_dmix.c:1018:(snd_pcm_dmix_open) unable to open slave
    ALSA lib pcm_dmix.c:1018:(snd_pcm_dmix_open) unable to open slave
    ALSA lib pcm_dmix.c:1018:(snd_pcm_dmix_open) unable to open slave
    ALSA lib pcm_dmix.c:1018:(snd_pcm_dmix_open) unable to open slave
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    [21561:21589:0407/144922:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [21561:21589:0407/144922:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [21561:21561:0407/144923:ERROR:object_proxy.cc(529)] Failed to call method: org.chromium.Mtpd.EnumerateStorages: object_path= /org/chromium/Mtpd: org.freedesktop.DBus.Error.ServiceUnknown: The name org.chromium.Mtpd was not provided by any .service files
    [21561:21620:0407/144923:ERROR:connection.cc(730)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    [21561:21561:0407/144923:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    [21561:21561:0407/144953:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    [21561:21561:0407/145013:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    Window manager warning: Treating resize request of legacy application 0x1e00020 (Guake!) as a fullscreen request
    JS LOG: pushModal: invocation of begin_modal failed
    Window manager warning: Treating resize request of legacy application 0x1e00020 (Guake!) as a fullscreen request
    JS LOG: pushModal: invocation of begin_modal failed
    [21968:21994:0407/145044:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [21968:21994:0407/145044:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [21968:22025:0407/145044:ERROR:connection.cc(730)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    [21968:21968:0407/145044:ERROR:object_proxy.cc(529)] Failed to call method: org.chromium.Mtpd.EnumerateStorages: object_path= /org/chromium/Mtpd: org.freedesktop.DBus.Error.ServiceUnknown: The name org.chromium.Mtpd was not provided by any .service files
    [21968:21968:0407/145044:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    Window manager warning: Treating resize request of legacy application 0x1e00020 (Guake!) as a fullscreen request
    [22418:22445:0407/145440:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [22418:22445:0407/145440:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [22418:22418:0407/145440:ERROR:object_proxy.cc(529)] Failed to call method: org.chromium.Mtpd.EnumerateStorages: object_path= /org/chromium/Mtpd: org.freedesktop.DBus.Error.ServiceUnknown: The name org.chromium.Mtpd was not provided by any .service files
    [22418:22477:0407/145440:ERROR:connection.cc(730)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    [22418:22418:0407/145441:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    [22418:22418:0407/145548:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    [22418:22418:0407/145607:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    Window manager warning: Treating resize request of legacy application 0x1e00020 (Guake!) as a fullscreen request
    [22418:22418:0407/145727:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    No bp log location saved, using default.
    [000:000] Browser XEmbed support present: 1
    [000:000] Browser toolkit is Gtk2.
    [000:000] Using Gtk2 toolkit
    [000:005] Starting client channel.
    [000:005] Warning(clientchannel.cc:436): Unreadable or no port file. Could not initiate GoogleTalkPlugin connection
    [000:006] Warning(clientchannel.cc:411): Could not initiate GoogleTalkPlugin connection
    [000:006] GoogleTalkPlugin not running. Starting new process...
    [000:006] Warning(pluginutils.cc:251): Failed to get GoogleTalkPlugin path. Trying default.
    [000:007] Started GoogleTalkPlugin, path=/opt/google/talkplugin/GoogleTalkPlugin
    [000:008] Waiting for GoogleTalkPlugin to start...
    sh: lsb_release: command not found
    [001:102] Attempting to connect to GoogleTalkPlugin...
    [001:102] Read port file, port=48370
    [001:103] Initiated connection to GoogleTalkPlugin
    [001:210] Socket connection established
    [001:210] ScheduleOnlineCheck: Online check in 5000ms
    [001:304] Got cookie response, socket is authorized
    [001:304] AUTHORIZED; socket handshake complete
    [001:306] F->C: ["fs",{"pr":"a"}]
    [001:405] F->C: ["mf","mf3.17","3.17.0.0",2,{"audioCodecs":[[103,"ISAC",1,0,16000],[104,"ISAC",1,0,32000],[9,"G722",1,64000,16000],[102,"ILBC",1,13300,8000],[0,"PCMU",1,64000,8000],[8,"PCMA",1,64000,8000],[107,"CN",1,0,48000],[106,"CN",1,0,32000],[105,"CN",1,0,16000],[13,"CN",1,0,8000],[127,"red",1,0,8000],[126,"telephone-event",1,0,8000]],"audioRtpHdrExts":[{"id":1,"uri":"urn:ietf:params:rtp-hdrext:ssrc-audio-level"}],"camDeviceName":"Unknown Camera","caps":7,"cpuArchitecture":1,"cpuCacheSize":6291456,"cpuFamily":6,"cpuFlags":["sse2","ssse3","sse4_1","sse4_2","avx"],"cpuHasSSE2":true,"cpuModel":42,"cpuSpeed":3101,"cpuStepping":7,"cpuVendor":"GenuineIntel","cpus":4,"cpusPhysical":4,"cryptoSuites":["AES_CM_128_HMAC_SHA1_80","AES_CM_128_HMAC_SHA1_32"],"dataChannelVersion":1,"effectsVersion":9,"gpuDescription":"","gpuDeviceId":0,"gpuDeviceName":"","gpuDriver":"","gpuDriverVersion":"","gpuVendorId":0,"machineModel":"Not available","remotingAssistanceAllowed":0,"remotingVersion":1,"renderer":2,"rtcpMux":true,"screencast":2,"screencastLocalPreview":1,"supportsConcurrentSessions":true,"transports":["i","gice"],"videoCodecs":[[99,"H264-SVC",640,360,30],[97,"H264",640,360,30],[98,"H263",640,360,30]],"videoRtpHdrExts":[{"id":2,"uri":"urn:ietf:params:rtp-hdrext:toffset"}]}]
    [001:506] F->C: ["getdevicestate","15","0",["__default_device","Built-in Audio Analog Stereo"],"0",["__default_device","Built-in Audio Analog Stereo"],"-1",[]]
    [005:311] Starting client channel.
    [005:311] Warning(clientchannel.cc:436): Unreadable or no port file. Could not initiate GoogleTalkPlugin connection
    [005:312] Warning(clientchannel.cc:411): Could not initiate GoogleTalkPlugin connection
    [005:312] GoogleTalkPlugin not running. Starting new process...
    [005:312] Warning(pluginutils.cc:251): Failed to get GoogleTalkPlugin path. Trying default.
    [005:313] Started GoogleTalkPlugin, path=/opt/google/talkplugin/GoogleTalkPlugin
    [005:313] Waiting for GoogleTalkPlugin to start...
    sh: lsb_release: command not found
    [006:411] Attempting to connect to GoogleTalkPlugin...
    [006:411] Read port file, port=45084
    [006:424] Initiated connection to GoogleTalkPlugin
    [006:512] Socket connection established
    [006:512] ScheduleOnlineCheck: Online check in 5000ms
    [006:613] Got cookie response, socket is authorized
    [006:613] AUTHORIZED; socket handshake complete
    [006:620] F->C: ["fs",{"pr":"a"}]
    [006:713] F->C: ["mf","mf3.17","3.17.0.0",2,{"audioCodecs":[[103,"ISAC",1,0,16000],[104,"ISAC",1,0,32000],[9,"G722",1,64000,16000],[102,"ILBC",1,13300,8000],[0,"PCMU",1,64000,8000],[8,"PCMA",1,64000,8000],[107,"CN",1,0,48000],[106,"CN",1,0,32000],[105,"CN",1,0,16000],[13,"CN",1,0,8000],[127,"red",1,0,8000],[126,"telephone-event",1,0,8000]],"audioRtpHdrExts":[{"id":1,"uri":"urn:ietf:params:rtp-hdrext:ssrc-audio-level"}],"camDeviceName":"Unknown Camera","caps":7,"cpuArchitecture":1,"cpuCacheSize":6291456,"cpuFamily":6,"cpuFlags":["sse2","ssse3","sse4_1","sse4_2","avx"],"cpuHasSSE2":true,"cpuModel":42,"cpuSpeed":3101,"cpuStepping":7,"cpuVendor":"GenuineIntel","cpus":4,"cpusPhysical":4,"cryptoSuites":["AES_CM_128_HMAC_SHA1_80","AES_CM_128_HMAC_SHA1_32"],"dataChannelVersion":1,"effectsVersion":9,"gpuDescription":"","gpuDeviceId":0,"gpuDeviceName":"","gpuDriver":"","gpuDriverVersion":"","gpuVendorId":0,"machineModel":"Not available","remotingAssistanceAllowed":0,"remotingVersion":1,"renderer":2,"rtcpMux":true,"screencast":2,"screencastLocalPreview":1,"supportsConcurrentSessions":true,"transports":["i","gice"],"videoCodecs":[[99,"H264-SVC",640,360,30],[97,"H264",640,360,30],[98,"H263",640,360,30]],"videoRtpHdrExts":[{"id":2,"uri":"urn:ietf:params:rtp-hdrext:toffset"}]}]
    [006:814] F->C: ["getdevicestate","15","0",["__default_device","Built-in Audio Analog Stereo"],"0",["__default_device","Built-in Audio Analog Stereo"],"-1",[]]
    [011:521] HandleOnlineCheck: Starting check
    [011:521] HandleOnlineCheck: OK; current state: 3
    [22418:22418:0407/145831:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    Window manager warning: Treating resize request of legacy application 0x1e00020 (Guake!) as a fullscreen request
    [23140:23167:0407/150336:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [23140:23167:0407/150336:ERROR:object_proxy.cc(624)] Failed to get name owner. Got org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.chromium.Mtpd': no such name
    [23140:23197:0407/150336:ERROR:connection.cc(730)] sqlite error 19, errno -2: PRIMARY KEY must be unique
    [23140:23140:0407/150336:ERROR:object_proxy.cc(529)] Failed to call method: org.chromium.Mtpd.EnumerateStorages: object_path= /org/chromium/Mtpd: org.freedesktop.DBus.Error.ServiceUnknown: The name org.chromium.Mtpd was not provided by any .service files
    [23140:23140:0407/150337:ERROR:omnibox_view_gtk.cc(431)] Not implemented reached in virtual void OmniboxViewGtk::ApplyCaretVisibility()
    Window manager warning: Treating resize request of legacy application 0x1e00020 (Guake!) as a fullscreen request
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Window manager warning: Log level 16: Failed to load apps: Failed to look up menu_file for "gnomecc.menu"
    Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
    Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
    Window manager warning: Treating resize request of legacy application 0x1e00020 (Guake!) as a fullscreen request
    g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    ** Message: applet now removed from the notification area
    gnome-session[20009]: Gdk-WARNING: gnome-session: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    Window manager warning: Log level 16: gnome-shell: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    applet.py: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    (gnome-settings-daemon:20052): Gdk-WARNING **: gnome-settings-daemon: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    ** Message: NM disappeared
    guake: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    WARNING: could not use popup notification
    (nm-applet:20096): Gdk-WARNING **: nm-applet: Fatal IO error 104 (Connection reset by peer) on X server :0.
    What can I do to resolve this?
      Thank you very much!
    Last edited by UnsolvedCypher (2013-04-07 20:09:28)

    aliencam wrote:
    This has been happening to a lot of people lately (since the upgrade to gnome 3.8 from 3.6).  Many people haven't been able to find a solution, so they have installed the SLiM login manager and another desktop environment like xfce, enlightenment, or fluxbox for the time being.
    check out these other topics:
    https://bbs.archlinux.org/viewtopic.php?id=161900
    https://bbs.archlinux.org/viewtopic.php?id=161961
    https://bugs.archlinux.org/task/34893
    I still haven't been able to fix it on my computer, so I'm using SLiM and xfce while I wait for an upstream update.
    I'm currently using SLiM and Cinnamon since GDM won't work, but I was asking because I wanted my laptop to lock when I suspended it, which SLiM didn't do as far as I knew. Well, I guess I'll wait for an update. Thanks.
    Last edited by kkeller (2013-05-04 18:13:24)

  • Help with PSF image control 2d convolution

    Hi!
    I have a problem maybe you guys can help me, im not a good coder. I have to make a vi (labview 7.1) that can open a jpg image, show it , then with a slider change the PSF (Point Spread Function) basicly controlling the blurryness and show how it effects the picture. Its a 2d convolution filter which i managed to create , but the problem is i dont how to connect the control slider now to the PSF input.(it should have effect the pixmap somehow) I tried some variations but now im realy stuck at the moment. Any hints, tips, solutions  are realy welcome.
    thanks in advance
    Mihael
    Solved!
    Go to Solution.
    Attachments:
    2dconv.vi ‏67 KB

    Thanks for the response, i rearranged some things in the vi, so now i control the PSF with the basic matrix control on the front page, my problem is now that it just doesnt do what i should, somehow the blur effect (if i set the matrix elements to 1/9) is not working. Im not sure whats wrong now. Am i using the wrong function(flatten pixmap) to show the filtered image? Shoild i use the other one unflattened?
    (the convolution should work with 8 bit images, so i put a control in)
    Thanks in advance
    Mihael
    Attachments:
    2DConv.vi ‏67 KB

  • [SOLVED] Steam troubles. Segfault after login.

    Hello. I'm usually pretty good about solving my own problems, but this one has me beat. So, yay, first post.
    Recently my nephew brought me his computer for a nuke and pave, and since he doesn't have a legit Windows key and I don't use Windows anymore I decided to install Arch on his machine, since it's what I use and I'm their go-to tech support.
    Unfortunately I'm having trouble getting Steam to run correctly on his machine. It will start up, update/verify install, show the login screen, and after authenticating it promptly dies.
    Some details:
    This is a somewhat fresh install. I provisioned it from within a Vbox VM on my own workstation and then moved the HDD to the actual box.
    Full system update was done just today. Problem existed prior and persists after.
    Proprietary GPU drivers are not being used.
    lspci shows the video adapter to be: 07:00.0 VGA compatible controller: NVIDIA Corporation G71 [GeForce 7900 GS] (rev a1)
    I've already removed Steam's bundled libs, as per the wiki.
    I've tried steam --reset and rm -rf ~/.steam and removing and reinstalling the steam package. No dice.
    The presentation of problems detailed here seemed pretty similar so I installed lib32-dbus but this did not resolve the issue.
    I'm not checking remember password. This bug seems to be unrelated
    Console output:
    Running Steam on arch 64-bit
    STEAM_RUNTIME is enabled automatically
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steamwebhelper)/version(20141121162341)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1416587021)
    Installing breakpad exception handler for appid(steamwebhelper)/version(20141121162341)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1416587021)
    Installing breakpad exception handler for appid(steamwebhelper)/version(1416587021)
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    FillInMachineIDInfo took a total of 0 milliseconds
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    PulseAudio connect failed (used only for Mic Volume Control) with error: Access denied
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Generating new string page texture 7: 128x256, total string texture memory is 131.07 KB
    Generating new string page texture 8: 48x256, total string texture memory is 180.22 KB
    Generating new string page texture 9: 256x256, total string texture memory is 442.37 KB
    Generating new string page texture 10: 64x256, total string texture memory is 507.90 KB
    Generating new string page texture 11: 8x256, total string texture memory is 516.10 KB
    Generating new string page texture 12: 16x256, total string texture memory is 532.48 KB
    Generating new string page texture 13: 24x256, total string texture memory is 557.06 KB
    Generating new string page texture 14: 32x256, total string texture memory is 589.82 KB
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Have a ping of 38 MS which is under threshold of 50 MS, and have been trying for 297 MS - good enough
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    Adding licenses for the following package(s): 0, 470, 1861, 2835, 7932, 8183, 11072, 11416, 17111, 18343, 27723, 27968, 28233, 28315, 29145, 29470, 32848, 33954, 37125, 39202, 41566, 43104, 43386, 45658
    roaming config store loaded successfully - 650 bytes.
    migrating temporary roaming config store
    Failed to init SteamVR because it isn't installed
    ExecCommandLine: ""/home/austin/.local/share/Steam/ubuntu12_32/steam" "
    System startup time: 23.43 seconds
    Installing breakpad exception handler for appid(steam)/version(1416617579)
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    (steam:6806): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    [1224/194751:ERROR:renderer_main.cc(227)] Running without renderer sandbox
    Uploading dump (out-of-process) [proxy '']
    /tmp/dumps/assert_20141224194726_1.dmp
    Running Steam on arch 64-bit
    STEAM_RUNTIME has been set by the user to: /home/austin/.local/share/Steam/ubuntu12_32/steam-runtime
    /home/austin/.local/share/Steam/steam.sh: line 729: 6806 Segmentation fault (core dumped) $STEAM_DEBUGGER "$STEAMROOT/$STEAMEXEPATH" "$@"
    Requested Force create but SharedObjectMutex already created
    Forced create but already created for SharedObjectEvent
    Forced create but already created for SharedObjectEvent
    Finished uploading minidump (out-of-process): success = yes
    response: CrashID=bp-e3676b84-8218-411b-8500-189492141225
    I then tried DEBUGGER=gdb steam and besides the identical output above and the expected gdb messages I get
    Program received signal SIGSEGV, Segmentation fault.
    0xf6d9eab8 in ?? () from /usr/lib32/xorg/modules/dri/nouveau_dri.so
    So then I tried native runtime STEAM_RUNTIME=0 steam with the help of the alucryd-multilib repo. The output seems to be identical to the above. Output of DEBUGGER=gdb STEAM_RUNTIME=0 steam available here.
    Throwing that into Google yields nothing of interest that I can find.
    Perhaps hardware failure? But my nephew played Dust AET for a while and it ran fine.
    I'm at a loss.
    Last edited by Xaekai (2014-12-29 11:17:11)

    I'm also in a similar situation, surprised that it took this long for someone to post the problem here (it's been at least a week since this started)...
    There's a report here:
    https://github.com/ValveSoftware/steam- … -67916730\
    I also get a segfault when running steam with STEAM_RUNTIME disabled now.
    Here's my command line output: https://gist.github.com/uberscientist/0 … 26de094ec5
    With STEAM_RUNTIME libs it runs fine (however TF2 fails to start...)
    If I can provide any more useful information let me know. I am running Arch Linux, systemd (so OpenRC probably has nothing to do with it), x86_64.
    I'll subscribe to this topic and continue crossing my fingers an update fixes things.

  • [Solved]Alsa funkiness (sound breaking)

    (Note: I originally thought this was a steam issue, but turns out it's not only steam that can break my sound (see the update on the bottom))
    I get an issue with Steam where I get a short (less than 1s) sound on repeat/loop (usually it's some part of the message notification sound, or a trailer that I was watching) sounding a bit like a broken record, randomly occurring after keeping steam open for long periods of time in the background. Only fix I've found so far is to restart steam.
    I have the Enlightenmen 18 Window Manager.
    Notable errors:
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    [0706/170950:ERROR:object_proxy.cc(239)] Failed to call method: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files
    [0706/170950:WARNING:proxy_service.cc(958)] PAC support disabled because there is no system implementation
    PulseAudio connect failed (used only for Mic Volume Control) with error: Access denied
    ** (steam:7341): WARNING **: Could not initialize NMClient /org/freedesktop/NetworkManager: The name org.freedesktop.NetworkManager was not provided by any .service files
    (steam:7341): LIBDBUSMENU-GLIB-WARNING **: Trying to remove a child that doesn't believe we're it's parent.
    [0706/171536:ERROR:reference_audio_renderer.cc(46)] Not implemented reached in virtual void media::ReferenceAudioRenderer::OnCreated(media::AudioOutputController*)
    [0706/171536:ERROR:reference_audio_renderer.cc(50)] Not implemented reached in virtual void media::ReferenceAudioRenderer::OnPlaying(media::AudioOutputController*)
    [0706/171657:ERROR:reference_audio_renderer.cc(54)] Not implemented reached in virtual void media::ReferenceAudioRenderer::OnPaused(media::AudioOutputController*)
    AL lib: pulseaudio.c:612: Context did not connect: Access denied
    I don't have any reliable method to reproduce the issue, and it does not seem to output an error of it's own in the terminal output when it occurs. I have noticed that this is more likely to occur when steam has been open for prolonged periods. I am not using pulseaudio, just Alsa. I also noticed when I was running a Wine game (not through steam) that this issue occurred, and it seemed to contaminate the sound outputs for whine too (I got like a "double" sound for every sound effect the game played). If the sound was completely broken on steam and making a loop like I explained at the start of this post and then I close steam while the Wine game is running, the sound from steam will remain until I shut down the game too (i.e. seems that this isn't just breakage internally in steam, but in alsa itself)
    The one thing I have tried to solve this was install lib32-libpulse, this did not seem to fix the errors nor the problem. I imagine installing pulseaudio could fix this problem, but pulseaudio downright hates my sound card, so I would rather not use it.
    I also have two other issues too that are less severe.
    1: Mouse cursor sometimes gets locked in steam instance (Right clicking will show the steam context menu, pressing "stop" in that context menu will solve the issue. This sometimes happens when I use "Ctrl + C"(copy) or "Ctrl + V"(paste) when I'm typing in the discussions)
    2: Fullscreen videos will not go fullscreen (they will only fill the steam window)
    Update:
    I found a bulletproof way to make a similar issue occur.
    If I open facebook in firefox, and get a message notification while I am playing a movie in Cmplayer (my media player of choice) the sound in CMplayer breaks (but firefox's sound keeps working normally)
    Update2:
    I was rather desperate to get this fixed so I installed pulseaudio as much as I despise it, the quality of my audio is damaged by it, but this problem was as I suspected fixed by installing it. I am guessing pulseaudio is set up partially to prevent issues like this one, but I would relaly prefer not to have it. This does not rid me of all the errors however (reference_audio_renderer errors persist) but it does create a new error for steam:
    [0706/215704:ERROR:alsa_output.cc(684)] Failed querying delay: Input/output error
    Last edited by rabcor (2014-07-11 16:28:34)

    I always had to have an asound.conf in the name of upmixing 2.0 to 5.1 This is the content of my asound.conf before I made the changes. I also had a problem with a game where I had crackling noises on 48khz so I had to tell alsa to force 96khz (or 44.1khz but since my card supports 96khz that's what I went with) to avoid that.
    pcm.!default {
    slave.pcm "surround51"
    slave.channels 6
    type route
    # Front and rear
    ttable.0.0 0.7
    ttable.1.1 0.7
    ttable.2.2 0.6
    ttable.3.3 0.6
    # Center and LFE
    ttable.4.4 1
    ttable.5.5 1
    # Front left/right to center
    ttable.0.4 0.5
    ttable.1.4 0.5
    # Front left/right to rear
    ttable.0.2 0.5
    ttable.1.3 0.5
    Now it looks like this and everything seems to be working fine (except that mono sound only plays from my left speaker and I haven't defined a way to downmix 7.1 to 5.1):
    pcm.dmixed {
    type asym
    playback.pcm {
    # See plugin:dmix at http://www.alsa-project.org/alsa-doc/alsa-lib/pcm_plugins.html
    type dmix
    # Don't block other users, e.g. the Timidity midi-player daemon
    # http://www.alsa-project.org/alsa-doc/alsa-lib/pcm_plugins.html
    ipc_key_add_uid true
    ipc_key 5678293
    ipc_perm 0660
    ipc_gid audio
    # Don't put the rate here! Otherwise it resets the rate & channels set below, as shown by: cat /proc/asound/card0/pcm0p/sub0/hw_params
    slave {
    # 2 for stereo, 6 for surround51, 8 for surround71
    channels 6
    pcm {
    # mplayer chooses S32_LE, but others usually S16_LE
    format S32_LE
    #format S16_LE
    # 44100 or 48000
    # 44100 for music, 48000 is compatible with most h/w
    #rate 44100
    rate 96000
    # http://www.alsa-project.org/alsa-doc/alsa-lib/pcm_plugins.html
    # Maybe helps
    nonblock true
    type hw
    card 0
    device 0
    subdevice 0
    # mplayer2 chooses 1024
    # period_size 512 with buffer_size 16384 stops crackling in xmame
    # 320 breaks flash - https://bbs.archlinux.org/viewtopic.php?id=129458
    #period_size 512
    period_size 1024
    #period_size 512
    # 4096 might make sound crackle
    # mplayer2 chooses 8192. Half-Life 2 chooses 16384.
    # If too large, use CONFIG_SND_HDA_PREALLOC_SIZE=2048
    buffer_size 16384
    capture.pcm "hw:0"
    pcm.!default{
    type plug
    slave.pcm "upmix20_51"
    pcm.!surround20 {
    type plug
    slave.pcm "upmix20_51"
    pcm.!surround40 {
    type plug
    slave.pcm "dmixed"
    route_policy duplicate
    pcm.!surround51 {
    type plug
    slave.pcm "dmixed"
    pcm.upmix20_51 {
    slave.pcm "dmixed"
    slave.channels 6
    type route
    # Front and rear
    ttable.0.0 0.7
    ttable.1.1 0.7
    ttable.2.2 0.6
    ttable.3.3 0.6
    # Center and LFE
    ttable.4.4 1
    ttable.5.5 1
    # Front left/right to center
    ttable.0.4 0.5
    ttable.1.4 0.5
    # Front left/right to rear
    ttable.0.2 0.5
    ttable.1.3 0.5
    Is there a better way for me to achieve the results of the above config? Because I'm all ears.
    Last edited by rabcor (2014-07-08 11:09:23)

  • [SOLVED] ATI (open source) Graphics Issue due to Upgrade

    Shadowrun Returns finally loaded (after ages) but performance was abysmal whereas I was playing it with the same settings flawlessly yesterday. L4D2 was "laggy" while clicking in the interface and on the opening video, and then I got sound with a black screen and had to kill the process.
    I believe it is related to a recent update in one of the following packages (at least I did not have this problem yesterday, and I updated first thing this morning):
    [2014-05-06 08:32] [PACMAN] starting full system upgrade
    [2014-05-06 08:32] [PACMAN] upgraded mesa (10.1.1-2 -> 10.1.2-1)
    [2014-05-06 08:32] [PACMAN] upgraded mesa-libgl (10.1.1-2 -> 10.1.2-1)
    [2014-05-06 08:32] [PACMAN] upgraded ati-dri (10.1.1-2 -> 10.1.2-1)
    [2014-05-06 08:32] [PACMAN] upgraded x265 (0.9-1 -> 1.0-1)
    [2014-05-06 08:32] [PACMAN] upgraded ffmpeg (1:2.2.1-1 -> 1:2.2.2-1)
    [2014-05-06 08:32] [PACMAN] upgraded lib32-mesa (10.1.1-1 -> 10.1.2-1)
    [2014-05-06 08:32] [PACMAN] upgraded lib32-mesa-libgl (10.1.1-1 -> 10.1.2-1)
    [2014-05-06 08:32] [PACMAN] upgraded lib32-ati-dri (10.1.1-1 -> 10.1.2-1)
    There doesn't seem to be much useful output when starting Steam from the command line here's the beginning output:
    Running Steam on arch rolling 64-bit
    STEAM_RUNTIME is enabled automatically
    Installing breakpad exception handler for appid(steam)/version(1398287272_client)
    libGL error: dlopen /usr/lib32/xorg/modules/dri/r600_dri.so failed (/home/username/.local/share/Steam/ubuntu12_32/steam-runtime/i386/usr/lib/i386-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by /usr/lib32/xorg/modules/dri/r600_dri.so))
    libGL error: unable to load driver: r600_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: r600
    Installing breakpad exception handler for appid(steam)/version(1398287272_client)
    (steam:1501): Gtk-WARNING **: Unable to locate theme engine in module_path: "adwaita",
    (steam:1501): Gtk-WARNING **: Unable to locate theme engine in module_path: "adwaita",
    /usr/share/themes/Adwaita/gtk-2.0/gtkrc:1137: error: unexpected identifier `direction', expected character `}'
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    My card shouldn't be using the r600 driver (mine is a Radeon HD 5770) and it's quite possible those errors have always been there.
    Any help would be greatly appreciated.
    Last edited by cyrxi (2014-05-06 15:03:55)

    I have similar problem. I have removed steam-runtime libstdc++ libraries (I could not start game with them), but performance is very low. I use open source ati drivers (lib32-ati-dri also installed) and have Radeon 7770. Some time ago I could play Super Meat Boy with good performance, but now even intro is like 5 FPS which is obviously now what I expected. I am rather casual player so I can't say when (after which update as I presume) performance were redused. System is up-to-date.
    I noticed that if I use AccelMethod "EXA" hardware acceleration do not work, with "GLAMOR" I have artefacts (e.g. with title bar and context menu) in KDE, but it run at normal SMB at normal speed. According to Arch Wiki there is a bug in X11 related to GLAMOR.
    Last edited by fenuks (2014-05-10 21:27:11)

  • [SOLVED] Running 32bit applications on arch x64 (Steam/bumblebee)

    Hi, guys. I tried to use native steam on my laptop, and I got a usual problem  https://support.steampowered.com/kb_art … -EYZB-7457 .
    I 'm using bumblebee and I suppose I have mistakes in my lib32 packages. So it would be nice if someone explained what's wrong with it. Tried a lot of suggestions from other threads I might break it by myself=/. So what i have:
    $ optirun steam
    Running Steam on arch 64-bit
    STEAM_RUNTIME is enabled automatically
    Installing breakpad exception handler for appid(steam)/version(1383158641_client)
    [VGL] WARNING: The OpenGL rendering context obtained on X display
    [VGL] :8 is indirect, which may cause performance to suffer.
    [VGL] If :8 is a local X display, then the framebuffer device
    [VGL] permissions may be set incorrectly.
    Installing breakpad exception handler for appid(steam)/version(1383158641_client)
    unlinked 0 orphaned pipes
    Installing breakpad exception handler for appid(steam)/version(1383158641_client)
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig error: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 70: non-double matrix element
    Fontconfig warning: "/etc/fonts/conf.d/10-scale-bitmap-fonts.conf", line 78: saw unknown, expected number
    [1117/154407:ERROR:object_proxy.cc(239)] Failed to call method: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.NetworkManager was not provided by any .service files
    [1117/154407:WARNING:proxy_service.cc(958)] PAC support disabled because there is no system implementation
    [VGL] WARNING: The OpenGL rendering context obtained on X display
    [VGL] :8 is indirect, which may cause performance to suffer.
    [VGL] If :8 is a local X display, then the framebuffer device
    [VGL] permissions may be set incorrectly.
    Error: OpenGL GLX context is not using direct rendering, which may cause performance problems.
    For more information visit https://support.steampowered.com/kb_article.php?ref=9938-EYZB-7457.
    Installing breakpad exception handler for appid(steam)/version(1383158641_client)
    Installing breakpad exception handler for appid(steam)/version(1383158641_client)
    Installing breakpad exception handler for appid(steam)/version(1383158641_client)
    $ glxinfo32
    name of display: :0.0
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/tls/i965_dri.so
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/i965_dri.so
    libGL error: dlopen /usr/lib32/xorg/modules/dri/i965_dri.so failed (/usr/lib32/xorg/modules/dri/i965_dri.so: cannot open shared object file: No such file or directory)
    libGL error: unable to load driver: i965_dri.so
    libGL error: driver pointer missing
    libGL error: failed to load driver: i965
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/tls/swrast_dri.so
    libGL: OpenDriver: trying /usr/lib32/xorg/modules/dri/swrast_dri.so
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    libGL: Can't open configuration file /home/bubka/.drirc: No such file or directory.
    display: :0 screen: 0
    direct rendering: Yes
    server glx vendor string: SGI
    server glx version string: 1.4
    server glx extensions:
    $ optirun glxinfo32
    name of display: :0.0
    [VGL] WARNING: The OpenGL rendering context obtained on X display
    [VGL] :8 is indirect, which may cause performance to suffer.
    [VGL] If :8 is a local X display, then the framebuffer device
    [VGL] permissions may be set incorrectly.
    [VGL] WARNING: The OpenGL rendering context obtained on X display
    [VGL] :8 is indirect, which may cause performance to suffer.
    [VGL] If :8 is a local X display, then the framebuffer device
    [VGL] permissions may be set incorrectly.
    display: :0 screen: 0
    direct rendering: No (If you want to find out why, try setting LIBGL_DEBUG=verbose)
    server glx vendor string: VirtualGL
    server glx version string: 1.4
    server glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_visual_info,
    GLX_EXT_visual_rating, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGI_make_current_read, GLX_SUN_get_transparent_index
    client glx vendor string: VirtualGL
    client glx version string: 1.4
    client glx extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_visual_info,
    GLX_EXT_visual_rating, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGI_make_current_read, GLX_SUN_get_transparent_index
    GLX version: 1.4
    GLX extensions:
    GLX_ARB_create_context, GLX_ARB_create_context_profile,
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_visual_info,
    GLX_EXT_visual_rating, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGI_make_current_read, GLX_SUN_get_transparent_index
    OpenGL vendor string: NVIDIA Corporation
    OpenGL renderer string: GeForce 310M/PCIe/SSE2
    OpenGL version string: 2.1.2 NVIDIA 325.15
    OpenGL shading language version string: 1.20 NVIDIA via Cg compiler
    # pacman -Qs lib32
    local/lib32-alsa-lib 1.0.27.2-1
    An alternative implementation of Linux sound support (32 bit)
    local/lib32-attr 2.4.47-1
    Extended attribute support library for ACL support (32-bit)
    local/lib32-bzip2 1.0.6-1
    A high-quality data compression program (32-bit)
    local/lib32-dbus 1.6.16-1
    Freedesktop.org message bus system (32-bit)
    local/lib32-elfutils 0.157-1
    Collection of libraries for working with ELF object files and DWARF
    debugging information (32-bit)
    local/lib32-expat 2.1.0-1
    An XML Parser library written in C (32 bit)
    local/lib32-flac 1.3.0-1
    Free Lossless Audio Codec (32-bit)
    local/lib32-fontconfig 2.11.0-1
    A library for configuring and customizing font access (32-bit)
    local/lib32-freetype2 2.5.0.1-1
    TrueType font rendering library (32-bit)
    local/lib32-gcc-libs 4.8.2-4
    Runtime libraries shipped by GCC (32-bit)
    local/lib32-glew 1.10.0-1
    A cross-platform C/C++ extension loading library (32 bit)
    local/lib32-glib2 2.38.1-1
    Common C routines used by GTK+ 2.4 and other libs (32-bit)
    local/lib32-glibc 2.18-10
    GNU C Library for multilib
    local/lib32-glu 9.0.0-2
    Mesa OpenGL utility library (32 bits)
    local/lib32-json-c 0.11-1
    A JSON implementation in C (32-bit)
    local/lib32-lcms2 2.5-1
    Small-footprint color management engine, version 2 (32-bit)
    local/lib32-libasyncns 0.8-6
    A C library for Linux/Unix for executing name service queries
    asynchronously (32-bit)
    local/lib32-libcap 2.22-2
    POSIX 1003.1e capabilities (32-bit)
    local/lib32-libdrm 2.4.47-1
    Userspace interface to kernel DRM services (32-bit)
    local/lib32-libffi 3.0.13-1
    A portable, high level programming interface to various calling conventions
    (32-bit)
    local/lib32-libgcrypt 1.5.3-1
    General purpose cryptographic library based on the code from GnuPG (32-bit)
    local/lib32-libgpg-error 1.12-1
    Support library for libgcrypt (32-bit)
    local/lib32-libice 1.0.8-1
    X11 Inter-Client Exchange library (32-bit)
    local/lib32-libjpeg-turbo 1.3.0-3
    libjpeg derivative with accelerated baseline JPEG compression and
    decompression (32-bit)
    local/lib32-libmng 2.0.2-1
    A collection of routines used to create and manipulate MNG format graphics
    files (32-bit)
    local/lib32-libogg 1.3.1-1
    Ogg bitstream and framing library (32-bit)
    local/lib32-libpciaccess 0.13.2-1
    X11 PCI access library (32-bit
    local/lib32-libpng 1.6.6-1
    A collection of routines used to create PNG format graphics files (32-bit)
    local/lib32-libpulse 4.0-6
    A featureful, general-purpose sound server (32-bit client libraries)
    local/lib32-libsm 1.2.2-1
    X11 Session Management library (32-bit)
    local/lib32-libsndfile 1.0.25-2
    A C library for reading and writing files containing sampled sound (32-bit)
    local/lib32-libtiff 4.0.3-2
    Library for manipulation of TIFF images (32-bit)
    local/lib32-libvorbis 1.3.3-1
    Vorbis codec library (32-bit)
    local/lib32-libx11 1.6.2-1
    X11 client-side library (32-bit)
    local/lib32-libxau 1.0.8-1
    X11 authorisation library (32-bit)
    local/lib32-libxcb 1.9.1-1
    X11 client-side library (32-bit)
    local/lib32-libxcursor 1.1.14-1
    X cursor management library (32-bit)
    local/lib32-libxdamage 1.1.4-1
    X11 damaged region extension library (32-bit)
    local/lib32-libxdmcp 1.1.1-1
    X11 Display Manager Control Protocol library (32-bit)
    local/lib32-libxext 1.3.2-1
    X11 miscellaneous extensions library (32-bit)
    local/lib32-libxfixes 5.0.1-1
    X11 miscellaneous 'fixes' extension library (32-bit)
    local/lib32-libxi 1.7.2-1
    X11 Input extension library (32-bit)
    local/lib32-libxmu 1.1.2-1
    X11 miscellaneous micro-utility library (32-bit)
    local/lib32-libxrandr 1.4.2-1
    X11 RandR extension library (32-bit)
    local/lib32-libxrender 0.9.8-1
    X Rendering Extension client library (32-bit)
    local/lib32-libxss 1.2.2-1
    X11 Screen Saver extension library (32-bit)
    local/lib32-libxt 1.1.4-1
    X11 toolkit intrinsics library (32-bit)
    local/lib32-libxtst 1.2.2-1
    X11 Testing -- Resource extension library (32-bit)
    local/lib32-libxv 1.0.10-1
    X11 Video extension library (32-bit)
    local/lib32-libxxf86vm 1.1.3-1
    X11 XFree86 video mode extension library (32-bit)
    local/lib32-llvm-libs 3.3-1
    Low Level Virtual Machine (runtime library)(32-bit)
    local/lib32-mesa 9.2.3-1
    an open-source implementation of the OpenGL specification (32-bit)
    local/lib32-mesa-demos 8.1.0-3
    Mesa demos and tools (32-bit)
    local/lib32-mesa-libgl 9.2.3-1
    Mesa 3-D graphics library (32-bit)
    local/lib32-nvidia-utils 331.20-1
    NVIDIA drivers utilities (32-bit)
    local/lib32-openal 1.15.1-1
    OpenAL audio library for use with opengl (32-bit)
    local/lib32-openssl 1.0.1.e-2
    The Open Source toolkit for Secure Sockets Layer and Transport Layer
    Security (32-bit)
    local/lib32-pcre 8.33-1
    A library that implements Perl 5-style regular expressions (32-bit)
    local/lib32-primus 20131027-1
    Faster OpenGL offloading for Bumblebee (32-bit)
    local/lib32-qt4 4.8.5-6
    A cross-platform application and UI framework (32-bit)
    local/lib32-sqlite 3.8.1-1
    A C library that implements an SQL database engine (32-bit)
    local/lib32-systemd 208-1
    system and service manager (32-bit)
    local/lib32-util-linux 2.24-1
    Miscellaneous system utilities for Linux (32-bit)
    local/lib32-v4l-utils 1.0.0-2
    Userspace tools and conversion library for Video 4 Linux (32-bit)
    local/lib32-virtualgl 2.3.2-2
    32-bit serverside components for 64-bit VirtualGL servers
    local/lib32-xz 5.0.5-1
    Library and command line tools for XZ and LZMA compressed files (32-bit)
    local/lib32-zlib 1.2.8-1
    Compression library implementing the deflate compression method found in
    gzip and PKZIP (32-bit)
    Thanks
    Last edited by bubka (2013-11-17 14:38:38)

    Direct rendering is working for me. Here's a list of all lib32 packages installed on my system:
    lib32-acl
    lib32-alsa-lib
    lib32-alsa-plugins
    lib32-atk
    lib32-attr
    lib32-bzip2
    lib32-cairo
    lib32-curl
    lib32-dbus
    lib32-e2fsprogs
    lib32-elfutils
    lib32-expat
    lib32-flac
    lib32-flashplugin
    lib32-fontconfig
    lib32-freetype2
    lib32-gcc-libs
    lib32-gdk-pixbuf2
    lib32-gettext
    lib32-glew
    lib32-glib
    lib32-glib2
    lib32-glibc
    lib32-glu
    lib32-gmp
    lib32-gnutls
    lib32-gtk2
    lib32-harfbuzz
    lib32-icu
    lib32-intel-dri
    lib32-json-c
    lib32-keyutils
    lib32-krb5
    lib32-lcms2
    lib32-libasyncns
    lib32-libcanberra
    lib32-libcap
    lib32-libcups
    lib32-libdrm
    lib32-libffi
    lib32-libgcrypt
    lib32-libgnome-keyring
    lib32-libgpg-error
    lib32-libice
    lib32-libjpeg-turbo
    lib32-libjpeg6-turbo
    lib32-libldap
    lib32-libltdl
    lib32-libmng
    lib32-libogg
    lib32-libpciaccess
    lib32-libpng
    lib32-libpng12
    lib32-libpng15
    lib32-libpulse
    lib32-libsm
    lib32-libsndfile
    lib32-libssh2
    lib32-libtasn1
    lib32-libtiff
    lib32-libtxc_dxtn
    lib32-libvorbis
    lib32-libx11
    lib32-libxau
    lib32-libxcb
    lib32-libxcomposite
    lib32-libxcursor
    lib32-libxdamage
    lib32-libxdmcp
    lib32-libxext
    lib32-libxfixes
    lib32-libxft
    lib32-libxi
    lib32-libxinerama
    lib32-libxmu
    lib32-libxrandr
    lib32-libxrender
    lib32-libxss
    lib32-libxt
    lib32-libxtst
    lib32-libxv
    lib32-libxxf86vm
    lib32-llvm-libs
    lib32-mesa
    lib32-mesa-libgl
    lib32-mpg123
    lib32-ncurses
    lib32-nettle
    lib32-nspr
    lib32-nss
    lib32-nvidia-utils
    lib32-openal
    lib32-openssl
    lib32-p11-kit
    lib32-pango
    lib32-pcre
    lib32-pixman
    lib32-primus
    lib32-qt4
    lib32-sdl
    lib32-sdl_image
    lib32-sdl_ttf
    lib32-sqlite
    lib32-systemd
    lib32-tdb
    lib32-util-linux
    lib32-v4l-utils
    lib32-virtualgl
    lib32-xz
    lib32-zlib

  • A query with row and colum numbers?

    Hello,
    i have my java code divided into if conditions and in each if clause i need to select a certain field from a table. Is it somehow possible to select a table field which for example is in the third row and fifth column? So basically, how to select a certain matrix element?
    Thank you:)
    Edited by: user10956166 on Apr 5, 2009 6:09 AM

    Hi,
    Assuming you have a table called Distance:
    Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
    Connected as hr
    SQL> DESCRIBE DISTANCE;
    Name    Type         Nullable Default Comments
    LINN    VARCHAR2(30) Y                        
    TALLINN NUMBER       Y                        
    TARTU   NUMBER       Y                        
    P2RNU   NUMBER       Y                        
    SQL> select * from distance;
    LINN                              TALLINN      TARTU      P2RNU
    TALLINN                                 0        186        128
    TARTU                                 186          0        174
    P2RNU                                 128        174          0
    SQL>
    SQL> SET SERVEROUTPUT ON
    SQL> DECLARE
      2     v_sql         VARCHAR2(4000);
      3     v_column_name VARCHAR2(30):= 'TARTU';
      4     v_to          VARCHAR2(30):= 'P2RNU';
      5     v_distance    NUMBER;
      6  BEGIN
      7     v_sql := 'SELECT ' || v_column_name || ' FROM DISTANCE d WHERE d.LINN = ''' || v_to || '''';
      8     EXECUTE IMMEDIATE v_sql
      9        INTO v_distance;
    10 
    11     dbms_output.put_line(v_distance);
    12 
    13  EXCEPTION
    14     WHEN OTHERS THEN
    15        dbms_output.put_line(SQLERRM);
    16  END;
    17  /
    174
    PL/SQL procedure successfully completed
    SQL> Regards,

Maybe you are looking for

  • Error message when trying to import a CD into iTunes

    I get an error message when I try to import a CD into iTunes that says the disk cannot be found. I recently requested to uninstall Tune-up because I kept receiving annoying messages to purchase the software. It looks like Tune-up is deactivated, but

  • Latest documents are not displayed while searching the Leads in WebUI

    HI, I am trying to search the leads in WebUi Search screen. However, always it is displaying the old Leads rather than newly created ones. For my case: I should always display the latest leads by sorting them with "Start date - Descending". Could you

  • Viewing multiple album artworks

    For several of the albums in my iTunes there are multiple pieces of album artwork. I know how to view them by clicking the left and right arrow above the artwork pane in iTunes. My question is how can I view the different artworks for the one album i

  • Missing Font error message

    I keep getting an error message on my iWeb that I am missing a font named SymbolMT, but I have never used that font please help

  • Como actualizar mi ipod toch de ios 4.2 a 4.3

    porfavor alguien ayudeme a acutualizar mi ipod