Random weighting

It's easy to think of but hard to code.... imagine this..
there are 3 sections: 2 with 10 items & 1 with 5
Loop thru them all
No problems
BUT WHAT IF YOU WANT
section 1 items favoured 70% of the time (show 70 times out
of 100)
Section 2 items favoured 20% of the time (show 20 times out
of 100)
Section 3 items favoured 10% of the time (show 10 times out
of 100)
Random works if they all have even bias but this doesnt work
in the apporach above.
I have 3 seperate lists for each of the sections so I can
manage the random choosing of individual items easily enough, just
need to develop a routine to let Director pick which of the 3
sections it should choose next.
I could hardcode it to show "section 1" 70/100, "section 2"
20/100 etc. but only if it plays all of section 1 then all of
section2 and so on !! It needs to be mixed up enough that it avoids
displaying sections in large chunks...
I expect this could be routine for a mathematician but alas I
am not he !!!
Any light greatly appreciated !!

Hey, I just throwing this out there for fun, but one of the
few things I remember from grad school is that the probability of a
particular set of multiple events is the product of the probability
of each event separately. So for example, if you have 3 groups 1,
2, 3, and the items in each group are as follows:
1 = A, B, C, D, E, F, G, H, I, J
2 = A, B, C, D, E, F, G, H, I, J
3 = A, B, C, D, E
You’ve told us that the probability for group selection
is 1=0.7, 2=0.2, and 3=0.1, the probability for item selection in
each group is 1/(number of items in group) or 0.1 for groups 1 and
2, 0.2 for group 3. So…
the probability of getting a particular item in group 1 is
0.7 * 0.1 = 0.07 or 7% (for each of 10 items)
the probability of getting a particular item in group 2 is
0.2 *0.1 = 0.02 or 2% (for each of 10 items)
the probability of getting a particular item in group 3 is
0.1*0.2=0.02 or 2% (for each of 5 items)
So, given your numbers, you’ve got the unintuitive
situation of a specific item in group 3 appearing with the same
frequency as a specific item in group 2, although group 2 items
will appear twice as frequently as a whole than group 3
items.

Similar Messages

  • Random Weight Product Question

    Hi All
    Do you know of any user exit that we can use in every movement in the Inventory Management (should cover all manual as well as automatic movements as well as custom movement types), so that for certain random weighted products, we can ask the user to enter Actual Qty in alternate Unit of measure (std SAP only stores the qty in base UOM) and then we store that information in a Z table to keep track of Qty in alternate UOM for each SKU/ Batch in a plant/ sloc.
    With every goods movement for these random weight products, we then either add or subtract the Qty in alternate UOM (based on the movement type) to keep the qty in the alternate UOM accurate.
    This is required because the nature of random weighted products is such that each piece can weigh differently eg 1 leg of ham can weigh 10Kg but another can weigh 11Kg and another may be 9 Kg. In mat master we can only store one fixed conversion factor between base UOM and alternate UOM. (perhaps 10 kG = 1each). Our base UOM is Kg and alternate UOM is Each. We want to do ATP in sales orders based on Each, delivery picking in each, but charge customer based on $ per Kg.
    This is so that we have clear cut visibility of the stock in alternate UOM as well (std SAP updates stock in base UOM correctly but only shows the stock in alternate UOM based on nominal conversion factor from material master). We will use one of the product attributes in material master to indicate that the product is random weight product.
    We are on ECC6 and are not contemplating using catch weight management at this stage as it may be 6 month project by itself and trying to see if we can do some customisations for random weight products.
    Thanks
    Subodh Deshpande

    Why dont you use "Batch specific units of measure"  functionality?
    here you can define a "Product unit" . this wil take care of your stocks per batch in Alternate Uom as well.
    In every first  goods receipt of a batch  ( external or inhouse )  you will have to give the qty in AUM w.r.t Base unit :
    eg: Material M1 ,  base unit KG   , AUM : BAG
    Batch1 : 2 BAGs @ 3 KG per Bag .
    Batch2:  2 BAGs @ 5 KG per Bag .
    Now if you issue 1 BAG from Batch1 , system will reduce Stock by 3KG.
    you can also see batch wise stocks in AUM (with batch specific conversion factor)  in BMBC report.
    you can also develop some report with the help of batch characteristic values for Mass display of stocks in AUM.

  • Still stuck with the same old producer consumer weight problem need help

    Hello All,
    This is the problem I am stuck with right now.
    I have two array lists one producer array list and one consumer array list denoted by a and b
    P1 P2 P3 P4 P5
    5 6 7 8 9
    C1 C2 C3 C4 C5
    2 3 4 5 6
    Now we find all those producer consumer pairs which satisfy the criteria Pi>=Ci
    We have the following sets
    (5,2)(6,2)(7,2),(8,2),(9,2)
    (5,3)(6,3)(7,3),(8,3),(9,3)
    (5,4)(6,4)(7,4),(8,4),(9,4)
    (5,5)(6,5)(7,5),(8,5),(9,5)
    (6,6)(7,6)(8,6),(9,6)
    Let us done each of them with Si
    so we have S1,S2,S3,S4,S5
    we assign a third parameter called weight to each element in Si which has satisfied the condition Pi>=Ci;
    so we we will have
    (5,2,ai),(6,2,bi),(7,2,ci)....etc for S1
    similarly for S2 and so on.
    We need to find in each set Si the the pair which has the smallest weight.
    if we have (5,2,3) and (6,2,4) then 5,2,3 should be chosen.We should make sure that there is only one pair in every set which is finally chosen on the basis of weight.
    Suppose we get a pair (5,2,3) in S1 and (5,2,3) in S2 we should see that (5,2,3) is not used to compare to compare with any other elements in the same set S2,
    Finally we should arrive at the best element pair in each set.They should be non repeating in other sets.
    Given a problem
    P0 P1 P2 P3 P4
    9 5 2 2 8
    6 5 4 5 3
    C0 C1 C2 C3 C4
    we have So as (P0,C0) and (P4,C0)
    assuming that the one with the smaller index has lesser weight PO is selected.In the program I have used random weights.from set S1 we select the pair PO,CO
    S1 =(P0,C1),(P1,C1) and (P4,C1)
    since P0 and P4 are already used in previous set we dont use them for checking in S1 so we have (P1,C1) as best.
    S2=(P0,C2),(P1,C2) and (P4,C2) so we dont use P0,C2 and P1 and C2 because PO and P1 are already used in S1.
    So we choose P4,C2
    in S3 and S4 ae have (P0,C3),(P1,C3),(P4,C3) so we dont choose anything
    and same in S4 also.
    So answer is
    (P0,C0),(P1,C1) and (P4,C2).
    My program is trying to assign weights and I am trying to print the weights along with the sets.It doesnt work fine.I need help to write this program to do this.
    Thanks.
    Regards.
    NP
    What I have tried till now.
    I have one more question could you help me with this.
    I have an array list of this form.
    package mypackage1;
    import java.util.*;
    public class DD
    private  int P;
    private  int C;
    private int weight;
    public void set_p(int P1)
    P=P1;
    public void set_c(int C1)
    C=C1;
    public void set_weight(int W1)
    weight=W1;
    public int get_p()
    return P;
    public int get_c()
    return C;
    public int get_x()
    return weight;
    public static void main(String args[])
    ArrayList a=new ArrayList();
    ArrayList min_weights_int=new ArrayList();
    ArrayList rows=new ArrayList();
    ArrayList temp=new ArrayList();
    Hashtable h=new Hashtable();
    String v;
    int o=0;
    DD[] d=new DD[5];
    for(int i=0;i<4;i++)
    d=new DD();
    for(int i=0;i<4;i++)
    d[i].set_p(((int)(StrictMath.random()*10 + 1)));
    d[i].set_c((int)(StrictMath.random()*10 + 1));
    d[i].set_weight(0);
    System.out.println("Producers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_p());
    System.out.println("Consumers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_c());
    System.out.println("Weights");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_x());
    for(int i=0;i<4;i++ )
    int bi =d[i].get_c();
    ArrayList row=new ArrayList();
    for(int j=0;j<4;j++)
    if( d[j].get_p() >=bi)
    d[j].set_weight((int)(StrictMath.random()*10 + 1));
    row.add("(" + bi + "," + d[j].get_p() + "," +d[j].get_x() + ")");
    else
    d[j].set_weight(0);
    row.add("null");
    rows.add(row);
    System.out.println(rows);
    int f=0;
    for(Iterator p=rows.iterator();p.hasNext();)
    temp=(ArrayList)p.next();
    String S="S" +f;
    h.put(S,temp);
    String tt=new String();
    for(int j=0;j<4;j++)
    if(temp.get(j).toString() !="null")
    // System.out.println("In if loop");
    //System.out.println(temp.get(j).toString());
    String l=temp.get(j).toString();
    System.out.println(l);
    //System.out.println("Comma matches" + l.lastIndexOf(","));
    //System.out.println(min_weights);
    f++;
    for(Enumeration e=h.keys();e.hasMoreElements();)
    //System.out.println("I am here");
    int ii=0;
    int smallest=0;
    String key=(String)e.nextElement();
    System.out.println("key=" + key);
    temp=(ArrayList)h.get(key);
    System.out.println("Array List" + temp);
    for( int j=0;j<4;j++)
    String l=(temp.get(j).toString());
    if(l!="null")
    System.out.println("l=" +l);
    [\code]

    In your example you selected the pair with the greatest
    distance from the first set, and the pair with the least
    distance from the second. I don't see how the distance
    function was used.
    Also it's not clear to me that there is always a solution,
    and, if there is, whether consistently choosing the
    furthest or the closest pairs will always work.
    The most obvious approach is to systematically try
    all possibilities until the answer is reached, or there
    are no possibilities left. This means backtracking whenever
    a point is reached where you cannot continue. In this case
    backtrack one step and try another possibility at this
    step. After all possible choices of the previous step,
    backtrack one more step and so on.
    This seems rather involved, and it probably is.
    Interestingly, if you know Prolog, it is ridiculously
    easy because Prolog does all the backtracking for you.
    In Java, you can implement the algorithm in much the same
    way as Prolog implementations do it--keep a list of all the
    choice points and work through them until success or there
    are none left.
    If you do know Prolog, you could generate lots of random
    problems and see if there is always a solution.

  • How to get specific OSB business service HTTP endpoint failover?

    I am trying to get the following behavior in an HTTP Business Service in OSB, and I'm not finding the answer (if it exists) in the docs.
    I have two backend endpoints, "production" and "backup." I want all request to go to the "production" endpoint unless it becomes unavailable. At which time all requests should go to the backup endpoint - without manual intervention. Automatic failback would be nice but not absolutely necessary. This is what the service provider is recommending for their operational concerns.
    Is there some way to accomplish this?
    The backup is available at most times, so we can't use round-robin load balancing to get this behavior.
    Is this what having a load balancing algorithm of "none" accomplishes? The docs state the order in this case is significant, but not why?
    Random-weighted does not work, as it does not allow a zero weight, which means some requests (even if small in proportion) may go to that backup even if the primary is available.

    I'm now seeing this in real operation, and I'm seeing something that puzzles me based on the discussion above, and also a behavior I'd like to change if I can.....
    First, the puzzlement - of about 6700 invocations over the space of a few hours, I see in the console 9 errors in the primary as configured above, and 9 messages handled successfully by the secondary. So, since the messages are coming on a fairly regular basis (a few per minute, spread over 3 OSB instances), and I have a 10 min retry interval, I would have expected to see a lot more messages handled by the secondary endpoint while OSB instance was waiting 10 min to retry the primary. What's going on here? Does this class of "failure" not take an endpoint "offline?"
    Second, behavior I want to change: the errors are apparently intermittent SSL HANDSHAKE_FAILUREs reported by the backend. Is there anyway to get the primary retried first, since we only want traffic to go to the backup if the primary is really offline?
    /Steve Elkind
    ####<Dec 22, 2009 10:45:14 PM EST> <Warning> <Security> <njxymh0099> <SS_ESB_mgd2> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1261539914730> <BEA-090497> <HANDSHAKE_FAILURE alert received from fobar-web02.inex.com - 207.235.231.231. Check both sides of the SSL configuration for mismatches in supported ciphers, supported protocol versions, trusted CAs, and hostname verification settings.>

  • Interesting problem

    Hello All,
    This is the problem I am stuck with right now.
    I have two array lists one producer array list and one consumer array list denoted by a and b
    P1 P2 P3 P4 P5
    5 6 7 8 9
    C1 C2 C3 C4 C5
    2 3 4 5 6
    Now we find all those producer consumer pairs which satisfy the criteria Pi>=Ci
    We have the following sets
    (5,2)(6,2)(7,2),(8,2),(9,2)
    (5,3)(6,3)(7,3),(8,3),(9,3)
    (5,4)(6,4)(7,4),(8,4),(9,4)
    (5,5)(6,5)(7,5),(8,5),(9,5)
    (6,6)(7,6)(8,6),(9,6)
    Let us done each of them with Si
    so we have S1,S2,S3,S4,S5
    we assign a third parameter called weight to each element in Si which has satisfied the condition Pi>=Ci;
    so we we will have
    (5,2,ai),(6,2,bi),(7,2,ci)....etc for S1
    similarly for S2 and so on.
    We need to find in each set Si the the pair which has the smallest weight.
    if we have (5,2,3) and (6,2,4) then 5,2,3 should be chosen.We should make sure that there is only one pair in every set which is finally chosen on the basis of weight.
    Suppose we get a pair (5,2,3) in S1 and (5,2,3) in S2 we should see that (5,2,3) is not used to compare to compare with any other elements in the same set S2,
    Finally we should arrive at the best element pair in each set.They should be non repeating in other sets.
    Given a problem
    P0 P1 P2 P3 P4
    9 5 2 2 8
    6 5 4 5 3
    C0 C1 C2 C3 C4
    we have So as (P0,C0) and (P4,C0)
    assuming that the one with the smaller index has lesser weight PO is selected.In the program I have used random weights.from set S1 we select the pair PO,CO
    S1 =(P0,C1),(P1,C1) and (P4,C1)
    since P0 and P4 are already used in previous set we dont use them for checking in S1 so we have (P1,C1) as best.
    S2=(P0,C2),(P1,C2) and (P4,C2) so we dont use P0,C2 and P1 and C2 because PO and P1 are already used in S1.
    So we choose P4,C2
    in S3 and S4 ae have (P0,C3),(P1,C3),(P4,C3) so we dont choose anything
    and same in S4 also.
    So answer is
    (P0,C0),(P1,C1) and (P4,C2).
    My program is trying to assign weights and I am trying to print the weights along with the sets.It doesnt work fine.I need help to write this program to do this.
    Thanks.
    Regards.
    NP
    import java.util.*;
    class Pairs {
    public static void main(String [] arg) {
    int k;
    List a = new ArrayList();
    List b = new ArrayList();
    for(k=0;k<3;k++)
    a.add(new Integer(((int)(StrictMath.random()*10 + 1))));
    System.out.println("The Producer values are");
    for(k=0;k<3;k++)
    System.out.println(((Integer)a.get(k)).intValue());
    for(k=0;k<3;k++)
    b.add(new Integer(((int)(StrictMath.random()*10 + 1))));
    System.out.println("The Consumer values are");
    for(k=0;k<3;k++)
    System.out.println(((Integer)b.get(k)).intValue());
    // these lines nec. if List a,b are not in ascending order already
    List rows = new ArrayList();
    for(Iterator i = b.iterator(); i.hasNext(); )
    int bi = ((Integer) i.next()).intValue();
    List row = new ArrayList();
    List weights= new ArrayList();
    for(int j=0; j<a.size(); j++)
    if(((Integer)a.get(j)).intValue()>=bi)
    weights.add(new Integer (((int)(StrictMath.random()*10 + 1))));
    row.add("("+bi+","+((Integer)a.get(j)).intValue()+ "," +((Integer)weights.get(j)).intValue()+")");
    else
    row.add("null");
    weights.add("none");
    rows.add(row);
    System.out.println(rows);
    List temp=new ArrayList();
    //List temp1=new ArrayList();
    int j=0;
    System.out.println("List after being printed");
    for(Iterator i=rows.iterator();i.hasNext();)
    temp=(ArrayList)i.next();
    if(((String)temp.get(0))!="null")
    System.out.println( ((String)(temp.get(0))).charAt(5));
    j++;

    Sorry I can't help with your problem
    but I must point two things out:
    1. Please reply to the existing thread, not create a
    new one each time you want to update us
    2. Please put the tag [ code] in front of your code
    and [ /code] at the end (without the spaces I put in).
    This should make the code much more readable.

  • Using threads in a neural network

    Hello,
    I've written a neural network and I'm wondering how I could use threads in it's execution to 1) increase (more precisely achieve!) learning speed and 2) print out the current error value for the network so that I can see how it is working without using the de-bugger. Basically, i've read the Concurrency tutorial but I'm having trouble getting my head around how I can apply it to my network (must be one of those days!)
    I'll give a brief explanation of how i've implemented the NN to see if anybody can shed any light on how I should proceed (i.e. whether it can be threaded, what parts to thread etc.)
    The network consists of classes:
    Neuron - stores input values to be put into the network and performs the activation functions (just a mathematical operation)
    WeightMatrix - contains random weights in a 2-D array with methods for accessing and changing those weights based on output error
    Layer - simply an array that stores a collection of neurons
    InputPattern - stores the values in an array and target value of a pattern (e.g. for logical AND i would store in pattern[0] = 1; pattern [1] = 1; target = 1;)
    PatternSet - set of InputPatterns stored so that they can be input into the network for learning
    NeuralNetwork - the main class that I want to thread. This class contains multiple layers and multiple WeightMatrices (that connects the neurons in each layer). The learn algorithm then uses the methods of the previous classes to generate neuron inputs and ouputs and error values given a specific input. It uses a loop that iterates through as follows:
        public float learn(PatternSet p)
            InputPattern currentPattern = null;
            double netError=0f;
            float previousError=0f;
            float outputValue = 0f;
            float sum=0f;
            float wcv=0f;
            float output1=0f;
            float output2=0f;
            float currentError=0f;
            float multiply=0f;
            float outputError = 0f;
            float weight = 0f;
            int count;
            int setPosition=0;
            int setSize = p.getSetSize();
            Neuron outputNeuron = layers[getNumberOfLayers()-1].getNeuron(0);
            //execute learning loop and repeat until an acceptable error value is obtained
            do
                 //set input layer neuron values to pattern values
                currentPattern = p.getPattern(setPosition);
                for (int i=0; i<currentPattern.getPatternSize(); i++)
                    layers[0].getNeuron(i).setNeuronInput(currentPattern.getValue(i));
                currentError = layers[getNumberOfLayers()-1].getNeuron(0).getOutputError();
                for (int a=0; a<layers[getNumberOfLayers()-1].getNumberOfNeurons(); a++)
                    //set target value of output neuron
                    layers[getNumberOfLayers()-1].getNeuron(a).setTarget(currentPattern.getTarget());
                //iterates between weight layers - i.e. there will be a weight matrix between each layer of the NN
                for (int i=0; i<getNumberOfLayers()-1; i++)
                    for (int j=0; j<layers[i+1].getNumberOfNeurons(); j++)
                        sum =0f;
                        count=0;
                        for (int k=0; k<layers.getNumberOfNeurons(); k++)
    weight = weights[i].getWeight(k,j);
    outputValue = layers[i].getNeuron(count).getOutput();
    multiply = layers[i].getNeuron(count).getOutput() * (weights[i].getWeight(k,j));
    //add values
    sum = sum + multiply;
    count++;
    //check that all weighted neuron outputs have been completed
    if (count == layers[i].getNumberOfNeurons())
    //pass results to neuron
    layers[i+1].getNeuron(j).setNeuronInput(sum);
    //activate neuron
    layers[i+1].getNeuron(j).neuronActivation();
    //calculate output error of neuron for given input
    layers[i+1].getNeuron(j).calculateOutputError();
    //check that output layer has been reached and all neurons have been summed together
    if (i == getNumberOfLayers()-2 && count == layers[i].getNumberOfNeurons())
    outputError = layers[i+1].getNeuron(j).getOutputError();
    netError = layers[i+1].getNeuron(j).getNetError();
    for (int a=getNumberOfLayers()-1; a>0; a--)
    for (int b=0; b<layers[a-1].getNumberOfNeurons(); b++)
    for (int c=0; c<layers[a].getNumberOfNeurons(); c++)
    output1 = layers[a-1].getNeuron(b).getOutput();
    output2 = layers[a].getNeuron(c).getOutput();
    wcv = learningRate * (outputError) * output1 * output2 * (1-output2);
    weights[a-1].changeWeight(wcv, b, c);
    learningCycle++;
    if (setPosition < setSize-1)
    setPosition++;
    else
    setPosition=0;
    while (netError > acceptableError && learningCycle < 1000000000);
    return currentError;
    }At the moment the net doesn't seem to learn to an acceptable degree of accuracy, so I was looking to use threads to monitor it's error value change while I left it running just to ensure that it is working as intended (which it seems to be based on NetBeans debugger output). For the moment, all I'm aiming for is an output of the netError value of the NN at a particular time - would this be possible given my current implementation?
    Thanks for the help,
    Nick                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    For huge NN and a really multi-core CPU (reporting to OS as a multiple CPU's) one may benefit from having:
    - an example pump
    - a separate threads for calculation of forward and backwards propagation with in/out queues.
    Example pump pumps one forward example to each forward processing thread. It waits for them to complete. Then it reads their output and finds errors to backpropagate. It pumps errors to back-propagation threads. They finds weights correction but does not update weight matrix only are pushing them to the output temporary arrays. The example pump takes those corrections, combines them an updates weights.
    Redo from start.
    The rule of thumb for high-performance is - avoid locks. If must access data which are changing, make a copy of them in bulk operation, prepare bulk result and read-write in bulk operations.
    In this example a whole bunch of weight matrixes and states of neurons are such a kind of data. Each thread should use separate copy and the teaching pump should combine them together. This makes one to split data in two blocks - non-changing, common for all threads (the geometry of NN and weights) and changing, separate for each thread (weight correction, in/out of neurons).
    Avoid "new", "clone" and etc. for the preference of System.arraycopy on existing data.
    Regards,
    Tomasz Sztejka.

  • Weighted random value (1-10) e.g.3 will be  50 % of records

    Hello,
    i need to generate random values into my table. For the simplification, lets say that i need to generate values in range from 1 to 10. For this there is a lot of ways.
    e.g. UPDATE test_number SET random_value = round (dbms_random.value (1,10))
    But what I need is something like weighted random values. I need random values to be inserted into column, but I need e.g. 3 to be inserted more times than other values e.g. if i have 100 rows i want to have 3 in 50 random rows
    Do you have any idea how to achieve it?
    Thanks a lot for any help or reply !

    Hi,
    You can do something like this:
    WITH     got_p_num     AS
         SELECT     LEVEL                         AS id
         ,     FLOOR (dbms_random.value (1, 19))     AS p_num
         FROM     dual
         CONNECT BY     LEVEL     <= 10
    SELECT       id
    ,       p_num
    ,       CASE
              WHEN  p_num     < 3     THEN p_num
              WHEN  p_num     < 12     THEN 3
                                     ELSE p_num - 8
           END     AS r_num
    FROM       got_p_num
    ORDER BY  r_num
    ;If you want the number 3 to appear on half of the rows; that means that, out of 18 random numbers, you expect 3 to occur 9 times, and the other numbers to appear once each. The query above generates random integers in the range 1 through 18 inclusive, and calls this number p_num. The CASE statement maps p_num to what you really want, a n integer between 1 and 10, with 3 occurring 9/18 (= 1/2) of the time.
    Instead of using a CASE expression, you might want to create a table, that has one row for every number that can be in the output, and the probability of picking that number. You could then join to that table to convert the raw random number to the id that you want.
    Edited by: Frank Kulash on Oct 6, 2011 3:36 PM

  • Random generator (with weight)

    Hey all..
    I want to make a random generator, which will pick a random object from a vector.
    Each object in the vector has been assigned a weighted INT value between 1 -> 100.
    I want the generator to distribute the generated choices: to pick more values that have been set with a higher weight priority.
    For every 10 choices I want 3 of them to have a weight above 70.
    6 of them to have a weight between 40 -> 69
    1 of them to be below 40.
    Any advice or guidance would be greatly appreciated�
    Cheers,
    Gav.

    Anyway, if you want what you said, I would have three
    vectors rather than one. They would contain the items
    with weight 70 and above, the items with weight 40 to
    69, and the items with weight below 40. I would keep
    track of how many requests had been made, and if that
    number % 10 was 0, 1, or 2 I would choose from the
    70-and-up vector, if it was 9 I would choose from the
    below-40 vector, otherwise from the middle-weight
    vector. The resulting sequence violates several common
    randomness rules, I'm sure, but it does satisfy the
    requirements.The forces the order to be that of 70+, 70+, 70+, mid, mid, mid, mid, mid, mid, 40-
    That's not really random?
    What I'd do is this:
    Create a "class" list upon initialization (and after every 10 requests) that is a shuffled list of "classes." (Your classes being 70+, mid, and 40-). This list will contain the 10 requests and be randomly shuffled.
    Then remove an item from that list first per random request and go and randomly choose a number in that "class".
    When the "class" list is empty (after 10 requests) you'll go back to the top and re-create and shuffle it again for the next 10.
    That should work and guarentee a better randomness. The only thing you have left to consider is how to pick a random number of said class. This shouldn't be too hard, I'd recommend storing each class in a separate bin and randomly choose from that bin.

  • MSI K9A2GM - RealTek Randomly Installs After Reboot

    Someone here must've experienced this, I have an MSI K9A2GM and first let me say it's abit sad. The VGA slot feels very weak and like it would break right off if I pushed hard enough, it's only held on by some weird thin wires that connect to the PCB, pretty bizarre design if you ask me. Then the HDMI port really seems like it's weak, I mean I bought an adapter for DVI-HDMI but it's rather large so adds weight, I sure wouldn't wanna keep that baby plugged in for any length of time it'd probably weigh down that HDMI port and snap it right off! But regardless of these issues I have one more pressing:
    I've noticed that when I reboot the RealTek Audio drivers sometimes randomly reinstall themselves. It's basically like Vista is detecting the onboard audio as if it were never installed in the first place. Now do you think it's a problem with Vista or with the motherboard itself? I've no idea how to tell and I did a burn-in test using Sisoft Sandra which basically the system remained stable for 2 days. It's only after rebooting sometimes that this occurs :/
    I mean ugh, it's weird huh? Imagine installing the drivers then some reboots later finding they're being reinstalled for no real reason you know of :S Vista says it detected new hardware.... so which is the culprit?
    I downloaded the newest ones off RealTek but am almost positive this'll continue to happen until I find out what the real reason behind it is.

    Pictures below
    As you'll see the connections for the VGA and HDMI are really not that great. I mean listen if you mount this mobo in a case then install a DVI-HDMI adapter just how long do you reckon the port would hold up to that kinda weight? But even with that look at the VGA, it's suspended in air an if you see it's done with
    wires of some sort. The thin wires allow it to move but when it moves you can see the base connection slightly change as it's pushed. I mean come on now what is this 3rd grade? My friend has a PC mobo that's gotta be hundreds of years old but his VGA connection has held up to anything he's done. I can imagine a gamer taking his new rig somewhere with a LAN boy case, then he'll goto plug in the VGA adapter and push a little to hard, bam those back wires snap or heck the things base connection just snaps right off. I mean give me a break!

  • [SOLVED] Xorg crashes at random?

    Gnome/Xorg crashes at random for me sometimes. Happens almost everyday. Don't know what triggers it but I've been typing something on the keyboard every single time it happens.
    Here is my Xorg.0.log if it helps:
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    X.Org X Server 1.7.5.902 (1.7.6 RC 2)
    Release Date: 2010-03-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.33-ARCH i686
    Current Operating System: Linux netbook 2.6.32-ARCH #1 SMP PREEMPT Mon Mar 15 20:08:25 UTC 2010 i686
    Kernel command line: root=/dev/disk/by-uuid/ad13b42d-d34c-4e3b-8b3a-5a8345389196 resume=/dev/sda3 ro i915.modeset=1 quiet
    Build Date: 13 March 2010 07:33:22PM
    Current version of pixman: 0.16.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Tue Mar 30 15:58:46 2010
    (II) Loader magic: 0x81e4c40
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 6.0
    X.Org XInput driver : 7.0
    X.Org Server Extension : 2.0
    (--) using VT number 2
    (--) PCI:*(0:0:2:0) 8086:27ae:144d:ca00 Intel Corporation Mobile 945GME Express Integrated Graphics Controller rev 3, Mem @ 0xf0000000/524288, 0xd0000000/268435456, 0xf0300000/262144, I/O @ 0x00001800/8
    (--) PCI: (0:0:2:1) 8086:27a6:144d:ca00 Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller rev 3, Mem @ 0xf0080000/524288
    (==) Using default built-in configuration (30 lines)
    (==) --- Start of built-in configuration ---
    Section "Device"
    Identifier "Builtin Default intel Device 0"
    Driver "intel"
    EndSection
    Section "Screen"
    Identifier "Builtin Default intel Screen 0"
    Device "Builtin Default intel Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default vesa Device 0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Builtin Default vesa Screen 0"
    Device "Builtin Default vesa Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default fbdev Device 0"
    Driver "fbdev"
    EndSection
    Section "Screen"
    Identifier "Builtin Default fbdev Screen 0"
    Device "Builtin Default fbdev Device 0"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default intel Screen 0"
    Screen "Builtin Default vesa Screen 0"
    Screen "Builtin Default fbdev Screen 0"
    EndSection
    (==) --- End of built-in configuration ---
    (==) ServerLayout "Builtin Default Layout"
    (**) |-->Screen "Builtin Default intel Screen 0" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default intel Device 0"
    (==) No monitor specified for screen "Builtin Default intel Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default vesa Screen 0" (1)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default vesa Device 0"
    (==) No monitor specified for screen "Builtin Default vesa Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default fbdev Screen 0" (2)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default fbdev Device 0"
    (==) No monitor specified for screen "Builtin Default fbdev Screen 0".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AutoAddDevices.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.7.4.901, module version = 2.10.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.7.0.901, module version = 2.2.1
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 6.0
    (II) LoadModule: "fbdev"
    (WW) Warning, couldn't open module fbdev
    (II) UnloadModule: "fbdev"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 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, Clarkdale, Arrandale
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 00@00:02:0
    (WW) Falling back to old probe method for vesa
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: drmOpenMinor returns 9
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Builtin Default intel Screen 0" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) 945GME
    (--) intel(0): Chipset: "945GME"
    (==) intel(0): video overlay key set to 0x101fe
    (II) intel(0): Output VGA1 has no monitor section
    (II) intel(0): Output LVDS1 has no monitor section
    (II) intel(0): found backlight control interface /sys/class/backlight/samsung
    (II) intel(0): Output VGA1 disconnected
    (II) intel(0): Output LVDS1 connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS1 using initial mode 1024x600
    (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.7.5.902, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) UnloadModule: "vesa"
    (II) Unloading /usr/lib/xorg/modules/drivers/vesa_drv.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) intel(0): [DRI2] Setup complete
    (**) intel(0): Tiling enabled
    (**) intel(0): SwapBuffers wait enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) UXA(0): Driver registered support for the following operations:
    (II) solid
    (II) copy
    (II) composite (RENDER acceleration)
    (II) put_image
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): No memory allocations
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (==) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): direct rendering: DRI2 Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_make_current_read
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i915_dri.so
    (II) GLX: Initialized DRI2 GL provider for screen 0
    (II) intel(0): Setting screen physical size to 270 x 158
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 2.3.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "se"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found relative axes
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.7.3, module version = 1.2.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 7.0
    (II) Synaptics touchpad driver version 1.2.1
    (**) Option "Device" "/dev/input/event8"
    (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (II) SynPS/2 Synaptics TouchPad: buttons: left right middle
    (**) Option "SHMConfig" "on"
    (**) Option "EmulateTwoFingerMinZ" "35"
    (**) Option "EmulateTwoFingerMinW" "5"
    (**) Option "VertTwoFingerScroll" "true"
    (**) Option "HorizTwoFingerScroll" "off"
    (**) Option "TapButton1" "1"
    (**) Option "TapButton2" "2"
    (**) Option "TapButton3" "3"
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/hal: Adding input device Namuga 1.3M Webcam
    (**) Namuga 1.3M Webcam: always reports core events
    (**) Namuga 1.3M Webcam: Device: "/dev/input/event10"
    (II) Namuga 1.3M Webcam: Found keys
    (II) Namuga 1.3M Webcam: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Namuga 1.3M Webcam" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "se"
    (II) config/hal: Adding input device Sleep Button
    (**) Sleep Button: always reports core events
    (**) Sleep Button: Device: "/dev/input/event5"
    (II) Sleep Button: Found keys
    (II) Sleep Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "se"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event4"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "se"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event2"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "se"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event6"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "se"
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    (II) intel(0): EDID vendor "CPT", prod id 1220
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1024x600"x0.0 45.00 1024 1072 1104 1200 600 603 609 625 -hsync -vsync (37.5 kHz)
    Backtrace:
    0: /usr/bin/X (xorg_backtrace+0x3b) [0x80dcbfb]
    1: /usr/bin/X (0x8048000+0x63fa5) [0x80abfa5]
    2: (vdso) (__kernel_rt_sigreturn+0x0) [0xb770b40c]
    3: /usr/bin/X (0x8048000+0x20fc0) [0x8068fc0]
    4: /usr/bin/X (0x8048000+0x1a705) [0x8062705]
    5: /lib/libc.so.6 (__libc_start_main+0xe6) [0xb733bb86]
    6: /usr/bin/X (0x8048000+0x1a2f1) [0x80622f1]
    Fatal server error:
    Caught signal 3 (Quit). Server aborting
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    (II) UnloadModule: "synaptics"
    (II) Namuga 1.3M Webcam: Close
    (II) UnloadModule: "evdev"
    (II) Sleep Button: Close
    (II) UnloadModule: "evdev"
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    (II) Video Bus: Close
    (II) UnloadModule: "evdev"
    (II) Power Button: Close
    (II) UnloadModule: "evdev"
    (II) AIGLX: Suspending AIGLX clients for VT switch
    Any thoughts?
    Last edited by shahin (2010-04-14 10:56:03)

    I've managed to solve this, I believe. Don't experience any crashes and X startes in tty7, as it should.
    I've moved this line to the end of my inittab instead of the beginning.
    x:5:once:/bin/su shahin -l -c "/bin/bash --login -c /usr/bin/startx >/dev/null 2>&1"
    So my inittab looks like this now.
    # /etc/inittab
    # Runlevels:
    # 0 Halt
    # 1(S) Single-user
    # 2 Not used
    # 3 Multi-user
    # 4 Not used
    # 5 X11
    # 6 Reboot
    ## Only one of the following two lines can be uncommented!
    # Boot to console
    #id:3:initdefault:
    # Boot to X11
    id:5:initdefault:
    rc::sysinit:/etc/rc.sysinit
    rs:S1:wait:/etc/rc.single
    rm:2345:wait:/etc/rc.multi
    rh:06:wait:/etc/rc.shutdown
    su:S:wait:/sbin/sulogin -p
    # -8 options fixes umlauts problem on login
    c1:2345:respawn:/sbin/agetty -8 38400 tty1 linux
    c2:2345:respawn:/sbin/agetty -8 38400 tty2 linux
    c3:2345:respawn:/sbin/agetty -8 38400 tty3 linux
    c4:2345:respawn:/sbin/agetty -8 38400 tty4 linux
    c5:2345:respawn:/sbin/agetty -8 38400 tty5 linux
    c6:2345:respawn:/sbin/agetty -8 38400 tty6 linux
    # Hypervisor Virtual Console for Xen and KVM
    #h0:2345:respawn:/sbin/agetty -8 38400 hvc0 linux
    ca::ctrlaltdel:/sbin/shutdown -t3 -r now
    # Example lines for starting a login manager
    #x:5:respawn:/usr/bin/xdm -nodaemon
    #x:5:respawn:/usr/sbin/gdm -nodaemon
    #x:5:respawn:/usr/bin/kdm -nodaemon
    #x:5:respawn:/usr/bin/slim >& /dev/null
    x:5:once:/bin/su shahin -l -c "/bin/bash --login -c /usr/bin/startx >/dev/null 2>&1"
    # End of file
    Last edited by shahin (2010-04-14 10:57:47)

  • Can I retain stroke weight when applying brush?

    A path automatically goes basic(1) weight when any brush is applied to it. Is there any way to avoid this?

    I want to do some perspective-ish illust using scatter brush(which I use for randomness), like lights of cityscape at night or audiences in music concert(larger in the front, smaller in the rear). If it didn't reset weight to 1, I could've easily used transform effect or blend to make cascading paths. But, to acheive what I want, I have to apply scatter brush first, then adjust each path's weight at a time.

  • Xinit randomly doesn't start [solved]

    Recently I ran into a strange problem with xinit;  unfortunately there's not much I can say about it.  Basically, when I try to start X with xinit/startx, my laptop just hangs on a black screen.  I can't change ttys, magic Alt-SysRec keys don't work.  I am forced to hard reset.  This happens randomly; after a few times, xinit will proceed normally.  Needless to say, this process is tedious and risky (I'm afraid of file system corruption due to the hard reset).  I have nothing to go on to fix or diagnose this problem.  Any ideas?
    For what it's worth, some information that may or may not help diagnose the problem.  My .xinitrc:
    #!/bin/sh
    # ~/.xinitrc
    [ -f /etc/xprofile ] && . /etc/xprofile
    [ -f ~/.xprofile ] && . ~/.xprofile
    case "$1" in
    i3)
    exec dbus-launch i3
    exec dbus-launch i3
    esac
    .xprofile:
    #!/bin/bash
    xrdb -merge ~/.Xresources
    input=ibus
    export GTK_IM_MODULE=$input
    export QT_IM_MODULE=$input
    export XMODIFIERS="@im=$input"
    # beep off
    xset b off
    # start services
    trap 'kill $(jobs -p)' SIGINT SIGTERM EXIT
    gpg-connect-agent updatestartuptty /bye
    jack_control start
    mpd &
    xbindkeys
    pulseaudio --daemonize --high-priority --realtime --disallow-module-loading --exit-idle-time=-1 --file=/usr/share/cadence/pulse2jack/play+rec.pa -n
    ibus-daemon -drx
    thunar --daemon &
    # wallpaper
    xwallpaper &
    fehwallpaper &
    This started about a month ago I think?  I don't reboot often so I'm not sure when this started.
    EDIT: here's my Xorg.0.log (after a failed xinit and hard reset, I copied it, but I'm not sure if this log is actually from the failed xinit):
    [ 73.295]
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    [ 73.297] X Protocol Version 11, Revision 0
    [ 73.298] Build Operating System: Linux 3.6.2-1-ARCH x86_64
    [ 73.298] Current Operating System: Linux avalon 3.6.4-1-ARCH #1 SMP PREEMPT Mon Oct 29 09:49:00 CET 2012 x86_64
    [ 73.298] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=ae787448-0f89-4211-9621-61a8d3bd0fec ro quiet add_efi_memmap
    [ 73.299] Build Date: 19 October 2012 03:54:56PM
    [ 73.300]
    [ 73.300] Current version of pixman: 0.26.2
    [ 73.301] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 73.301] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 73.303] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Nov 3 16:36:37 2012
    [ 73.304] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 73.304] (==) ServerLayout "ServerLayout0"
    [ 73.304] (==) No screen section available. Using defaults.
    [ 73.304] (**) |-->Screen "Default Screen Section" (0)
    [ 73.304] (**) | |-->Monitor "<default monitor>"
    [ 73.304] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 73.304] (**) Option "DontZap" "true"
    [ 73.304] (==) Automatically adding devices
    [ 73.304] (==) Automatically enabling devices
    [ 73.304] (==) Automatically adding GPU devices
    [ 73.304] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 73.304] Entry deleted from font path.
    [ 73.304] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 73.304] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 73.304] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 73.304] (II) Loader magic: 0x7fcc20
    [ 73.304] (II) Module ABI versions:
    [ 73.304] X.Org ANSI C Emulation: 0.4
    [ 73.304] X.Org Video Driver: 13.0
    [ 73.304] X.Org XInput driver : 18.0
    [ 73.304] X.Org Server Extension : 7.0
    [ 73.318] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 73.320] (--) PCI:*(0:0:2:0) 8086:0116:1028:04b6 rev 9, Mem @ 0xf1400000/4194304, 0xe0000000/268435456, I/O @ 0x00004000/64
    [ 73.320] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 73.322] Initializing built-in extension Generic Event Extension
    [ 73.323] Initializing built-in extension SHAPE
    [ 73.325] Initializing built-in extension MIT-SHM
    [ 73.326] Initializing built-in extension XInputExtension
    [ 73.327] Initializing built-in extension XTEST
    [ 73.327] Initializing built-in extension BIG-REQUESTS
    [ 73.328] Initializing built-in extension SYNC
    [ 73.328] Initializing built-in extension XKEYBOARD
    [ 73.329] Initializing built-in extension XC-MISC
    [ 73.329] Initializing built-in extension SECURITY
    [ 73.330] Initializing built-in extension XINERAMA
    [ 73.330] Initializing built-in extension XFIXES
    [ 73.331] Initializing built-in extension RENDER
    [ 73.331] Initializing built-in extension RANDR
    [ 73.332] Initializing built-in extension COMPOSITE
    [ 73.332] Initializing built-in extension DAMAGE
    [ 73.332] Initializing built-in extension MIT-SCREEN-SAVER
    [ 73.333] Initializing built-in extension DOUBLE-BUFFER
    [ 73.333] Initializing built-in extension RECORD
    [ 73.334] Initializing built-in extension DPMS
    [ 73.334] Initializing built-in extension X-Resource
    [ 73.335] Initializing built-in extension XVideo
    [ 73.335] Initializing built-in extension XVideo-MotionCompensation
    [ 73.336] Initializing built-in extension XFree86-VidModeExtension
    [ 73.336] Initializing built-in extension XFree86-DGA
    [ 73.337] Initializing built-in extension XFree86-DRI
    [ 73.337] Initializing built-in extension DRI2
    [ 73.337] (II) LoadModule: "glx"
    [ 73.337] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 73.337] (II) Module glx: vendor="X.Org Foundation"
    [ 73.337] compiled for 1.13.0, module version = 1.0.0
    [ 73.337] ABI class: X.Org Server Extension, version 7.0
    [ 73.337] (==) AIGLX enabled
    [ 73.338] Loading extension GLX
    [ 73.338] (==) Matched intel as autoconfigured driver 0
    [ 73.338] (==) Matched intel as autoconfigured driver 1
    [ 73.338] (==) Matched vesa as autoconfigured driver 2
    [ 73.338] (==) Matched modesetting as autoconfigured driver 3
    [ 73.338] (==) Matched fbdev as autoconfigured driver 4
    [ 73.338] (==) Assigned the driver to the xf86ConfigLayout
    [ 73.338] (II) LoadModule: "intel"
    [ 73.338] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 73.338] (II) Module intel: vendor="X.Org Foundation"
    [ 73.338] compiled for 1.13.0, module version = 2.20.12
    [ 73.338] Module class: X.Org Video Driver
    [ 73.338] ABI class: X.Org Video Driver, version 13.0
    [ 73.338] (II) LoadModule: "vesa"
    [ 73.338] (WW) Warning, couldn't open module vesa
    [ 73.338] (II) UnloadModule: "vesa"
    [ 73.338] (II) Unloading vesa
    [ 73.338] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 73.338] (II) LoadModule: "modesetting"
    [ 73.339] (WW) Warning, couldn't open module modesetting
    [ 73.339] (II) UnloadModule: "modesetting"
    [ 73.339] (II) Unloading modesetting
    [ 73.339] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 73.339] (II) LoadModule: "fbdev"
    [ 73.339] (WW) Warning, couldn't open module fbdev
    [ 73.339] (II) UnloadModule: "fbdev"
    [ 73.339] (II) Unloading fbdev
    [ 73.339] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 73.339] (II) intel: Driver for Intel 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, B43, Clarkdale, Arrandale,
    Sandybridge Desktop (GT1), Sandybridge Desktop (GT2),
    Sandybridge Desktop (GT2+), Sandybridge Mobile (GT1),
    Sandybridge Mobile (GT2), Sandybridge Mobile (GT2+),
    Sandybridge Server, Ivybridge Mobile (GT1), Ivybridge Mobile (GT2),
    Ivybridge Desktop (GT1), Ivybridge Desktop (GT2), Ivybridge Server,
    Ivybridge Server (GT2), Haswell Desktop (GT1), Haswell Desktop (GT2),
    Haswell Desktop (GT2+), Haswell Mobile (GT1), Haswell Mobile (GT2),
    Haswell Mobile (GT2+), Haswell Server (GT1), Haswell Server (GT2),
    Haswell Server (GT2+), Haswell SDV Desktop (GT1),
    Haswell SDV Desktop (GT2), Haswell SDV Desktop (GT2+),
    Haswell SDV Mobile (GT1), Haswell SDV Mobile (GT2),
    Haswell SDV Mobile (GT2+), Haswell SDV Server (GT1),
    Haswell SDV Server (GT2), Haswell SDV Server (GT2+),
    Haswell ULT Desktop (GT1), Haswell ULT Desktop (GT2),
    Haswell ULT Desktop (GT2+), Haswell ULT Mobile (GT1),
    Haswell ULT Mobile (GT2), Haswell ULT Mobile (GT2+),
    Haswell ULT Server (GT1), Haswell ULT Server (GT2),
    Haswell ULT Server (GT2+), Haswell CRW Desktop (GT1),
    Haswell CRW Desktop (GT2), Haswell CRW Desktop (GT2+),
    Haswell CRW Mobile (GT1), Haswell CRW Mobile (GT2),
    Haswell CRW Mobile (GT2+), Haswell CRW Server (GT1),
    Haswell CRW Server (GT2), Haswell CRW Server (GT2+),
    ValleyView PO board
    [ 73.339] (--) using VT number 2
    [ 73.342] (II) intel(0): using device path '/dev/dri/card0'
    [ 73.342] (II) intel(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 73.342] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 73.342] (==) intel(0): RGB weight 888
    [ 73.342] (==) intel(0): Default visual is TrueColor
    [ 73.342] (--) intel(0): Integrated Graphics Chipset: Intel(R) Sandybridge Mobile (GT2)
    [ 73.342] (**) intel(0): Relaxed fencing enabled
    [ 73.342] (**) intel(0): Wait on SwapBuffers? enabled
    [ 73.342] (**) intel(0): Triple buffering? enabled
    [ 73.342] (**) intel(0): Framebuffer tiled
    [ 73.342] (**) intel(0): Pixmaps tiled
    [ 73.343] (**) intel(0): 3D buffers tiled
    [ 73.343] (**) intel(0): SwapBuffers wait enabled
    [ 73.343] (==) intel(0): video overlay key set to 0x101fe
    [ 73.343] (II) intel(0): Output LVDS1 has no monitor section
    [ 73.343] (--) intel(0): found backlight control interface /sys/class/backlight/acpi_video0
    [ 73.370] (II) intel(0): Output VGA1 has no monitor section
    [ 73.383] (II) intel(0): Output HDMI1 has no monitor section
    [ 73.423] (II) intel(0): Output DP1 has no monitor section
    [ 73.423] (II) intel(0): EDID for output LVDS1
    [ 73.423] (II) intel(0): Manufacturer: SEC Model: 5441 Serial#: 0
    [ 73.423] (II) intel(0): Year: 2010 Week: 0
    [ 73.423] (II) intel(0): EDID Version: 1.3
    [ 73.423] (II) intel(0): Digital Display Input
    [ 73.423] (II) intel(0): Max Image Size [cm]: horiz.: 34 vert.: 19
    [ 73.423] (II) intel(0): Gamma: 2.20
    [ 73.423] (II) intel(0): No DPMS capabilities specified
    [ 73.424] (II) intel(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 73.424] (II) intel(0): First detailed timing is preferred mode
    [ 73.424] (II) intel(0): redX: 0.620 redY: 0.340 greenX: 0.330 greenY: 0.570
    [ 73.424] (II) intel(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 73.424] (II) intel(0): Manufacturer's mask: 0
    [ 73.424] (II) intel(0): Supported detailed timing:
    [ 73.424] (II) intel(0): clock: 71.6 MHz Image Size: 344 x 194 mm
    [ 73.424] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1446 h_blank_end 1510 h_border: 0
    [ 73.424] (II) intel(0): v_active: 768 v_sync: 770 v_sync_end 775 v_blanking: 789 v_border: 0
    [ 73.424] (II) intel(0): Supported detailed timing:
    [ 73.424] (II) intel(0): clock: 71.6 MHz Image Size: 344 x 194 mm
    [ 73.424] (II) intel(0): h_active: 1366 h_sync: 1414 h_sync_end 1446 h_blank_end 1510 h_border: 0
    [ 73.424] (II) intel(0): v_active: 768 v_sync: 770 v_sync_end 775 v_blanking: 789 v_border: 0
    [ 73.424] (II) intel(0): 8MN61€156AT
    [ 73.424] (II) intel(0): Unknown vendor-specific block 0
    [ 73.424] (II) intel(0): EDID (in hex):
    [ 73.424] (II) intel(0): 00ffffffffffff004ca3415400000000
    [ 73.424] (II) intel(0): 00140103902213780ac8959e57549226
    [ 73.424] (II) intel(0): 0f505400000001010101010101010101
    [ 73.424] (II) intel(0): 010101010101f41b5690500015303020
    [ 73.424] (II) intel(0): 250058c21000001af41b569050001530
    [ 73.424] (II) intel(0): 3020250058c21000001a000000fe0038
    [ 73.424] (II) intel(0): 4d4e36318031353641540a2000000000
    [ 73.424] (II) intel(0): 00000000000000000001010a2020001d
    [ 73.424] (II) intel(0): EDID vendor "SEC", prod id 21569
    [ 73.424] (II) intel(0): Printing DDC gathered Modelines:
    [ 73.424] (II) intel(0): Modeline "1366x768"x0.0 71.56 1366 1414 1446 1510 768 770 775 789 +hsync -vsync (47.4 kHz eP)
    [ 73.425] (II) intel(0): Not using default mode "320x240" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "400x300" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "512x384" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "640x480" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "640x512" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "800x600" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "896x672" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "928x696" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "960x720" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "700x525" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Not using default mode "1024x768" (doublescan mode not supported)
    [ 73.425] (II) intel(0): Printing probed modes for output LVDS1
    [ 73.425] (II) intel(0): Modeline "1366x768"x60.1 71.56 1366 1414 1446 1510 768 770 775 789 +hsync -vsync (47.4 kHz eP)
    [ 73.425] (II) intel(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
    [ 73.425] (II) intel(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
    [ 73.425] (II) intel(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
    [ 73.425] (II) intel(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
    [ 73.450] (II) intel(0): EDID for output VGA1
    [ 73.463] (II) intel(0): EDID for output HDMI1
    [ 73.503] (II) intel(0): EDID for output DP1
    [ 73.503] (II) intel(0): Output LVDS1 connected
    [ 73.503] (II) intel(0): Output VGA1 disconnected
    [ 73.503] (II) intel(0): Output HDMI1 disconnected
    [ 73.503] (II) intel(0): Output DP1 disconnected
    [ 73.503] (II) intel(0): Using exact sizes for initial modes
    [ 73.503] (II) intel(0): Output LVDS1 using initial mode 1366x768
    [ 73.503] (II) intel(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 73.503] (II) intel(0): Kernel page flipping support detected, enabling
    [ 73.503] (**) intel(0): Display dimensions: (340, 190) mm
    [ 73.503] (**) intel(0): DPI set to (102, 102)
    [ 73.503] (II) Loading sub module "fb"
    [ 73.503] (II) LoadModule: "fb"
    [ 73.504] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 73.504] (II) Module fb: vendor="X.Org Foundation"
    [ 73.504] compiled for 1.13.0, module version = 1.0.0
    [ 73.504] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 73.504] (II) Loading sub module "dri2"
    [ 73.504] (II) LoadModule: "dri2"
    [ 73.504] (II) Module "dri2" already built-in
    [ 73.504] (==) Depth 24 pixmap format is 32 bpp
    [ 73.504] (II) intel(0): [DRI2] Setup complete
    [ 73.505] (II) intel(0): [DRI2] DRI driver: i965
    [ 73.505] (II) intel(0): Allocated new frame buffer 1408x768 stride 5632, tiled
    [ 73.507] (II) UXA(0): Driver registered support for the following operations:
    [ 73.507] (II) solid
    [ 73.507] (II) copy
    [ 73.507] (II) composite (RENDER acceleration)
    [ 73.507] (II) put_image
    [ 73.507] (II) get_image
    [ 73.507] (==) intel(0): Backing store disabled
    [ 73.507] (==) intel(0): Silken mouse enabled
    [ 73.507] (II) intel(0): Initializing HW Cursor
    [ 73.507] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 73.508] (==) intel(0): DPMS enabled
    [ 73.508] (==) intel(0): Intel XvMC decoder enabled
    [ 73.508] (II) intel(0): Set up textured video
    [ 73.508] (II) intel(0): [XvMC] xvmc_vld driver initialized.
    [ 73.508] (II) intel(0): direct rendering: DRI2 Enabled
    [ 73.508] (==) intel(0): hotplug detection: "enabled"
    [ 73.536] (--) RandR disabled
    [ 73.550] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 73.550] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 73.550] (II) AIGLX: enabled GLX_ARB_create_context
    [ 73.550] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 73.550] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 73.550] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 73.550] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 73.550] (II) AIGLX: Loaded and initialized i965
    [ 73.550] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 73.550] (II) intel(0): Setting screen physical size to 361 x 203
    [ 73.629] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 73.629] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 73.629] (II) LoadModule: "evdev"
    [ 73.630] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 73.630] (II) Module evdev: vendor="X.Org Foundation"
    [ 73.630] compiled for 1.13.0, module version = 2.7.3
    [ 73.630] Module class: X.Org XInput Driver
    [ 73.630] ABI class: X.Org XInput driver, version 18.0
    [ 73.630] (II) Using input driver 'evdev' for 'Power Button'
    [ 73.630] (**) Power Button: always reports core events
    [ 73.630] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 73.630] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 73.631] (--) evdev: Power Button: Found keys
    [ 73.631] (II) evdev: Power Button: Configuring as keyboard
    [ 73.631] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 73.631] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 73.631] (**) Option "xkb_rules" "evdev"
    [ 73.631] (**) Option "xkb_model" "evdev"
    [ 73.631] (**) Option "xkb_layout" "us"
    [ 73.666] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
    [ 73.666] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 73.666] (II) Using input driver 'evdev' for 'Video Bus'
    [ 73.666] (**) Video Bus: always reports core events
    [ 73.666] (**) evdev: Video Bus: Device: "/dev/input/event14"
    [ 73.666] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 73.666] (--) evdev: Video Bus: Found keys
    [ 73.666] (II) evdev: Video Bus: Configuring as keyboard
    [ 73.667] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input14/event14"
    [ 73.667] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 73.667] (**) Option "xkb_rules" "evdev"
    [ 73.667] (**) Option "xkb_model" "evdev"
    [ 73.667] (**) Option "xkb_layout" "us"
    [ 73.668] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 73.668] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 73.668] (II) Using input driver 'evdev' for 'Power Button'
    [ 73.668] (**) Power Button: always reports core events
    [ 73.668] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 73.668] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 73.668] (--) evdev: Power Button: Found keys
    [ 73.668] (II) evdev: Power Button: Configuring as keyboard
    [ 73.668] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event1"
    [ 73.668] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 73.668] (**) Option "xkb_rules" "evdev"
    [ 73.668] (**) Option "xkb_model" "evdev"
    [ 73.668] (**) Option "xkb_layout" "us"
    [ 73.669] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
    [ 73.669] (II) No input driver specified, ignoring this device.
    [ 73.669] (II) This device may have been added with another device file.
    [ 73.670] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 73.670] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 73.670] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 73.670] (**) Sleep Button: always reports core events
    [ 73.670] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 73.670] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 73.670] (--) evdev: Sleep Button: Found keys
    [ 73.670] (II) evdev: Sleep Button: Configuring as keyboard
    [ 73.670] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2/event2"
    [ 73.670] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 73.670] (**) Option "xkb_rules" "evdev"
    [ 73.670] (**) Option "xkb_model" "evdev"
    [ 73.670] (**) Option "xkb_layout" "us"
    [ 73.671] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 73.672] (II) config/udev: Adding input device Laptop_Integrated_Webcam_2HDM (/dev/input/event13)
    [ 73.672] (**) Laptop_Integrated_Webcam_2HDM: Applying InputClass "evdev keyboard catchall"
    [ 73.672] (II) Using input driver 'evdev' for 'Laptop_Integrated_Webcam_2HDM'
    [ 73.672] (**) Laptop_Integrated_Webcam_2HDM: always reports core events
    [ 73.672] (**) evdev: Laptop_Integrated_Webcam_2HDM: Device: "/dev/input/event13"
    [ 73.672] (--) evdev: Laptop_Integrated_Webcam_2HDM: Vendor 0x408 Product 0x2fb1
    [ 73.672] (--) evdev: Laptop_Integrated_Webcam_2HDM: Found keys
    [ 73.672] (II) evdev: Laptop_Integrated_Webcam_2HDM: Configuring as keyboard
    [ 73.673] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1.4/3-1.4:1.0/input/input13/event13"
    [ 73.673] (II) XINPUT: Adding extended input device "Laptop_Integrated_Webcam_2HDM" (type: KEYBOARD, id 10)
    [ 73.673] (**) Option "xkb_rules" "evdev"
    [ 73.673] (**) Option "xkb_model" "evdev"
    [ 73.673] (**) Option "xkb_layout" "us"
    [ 73.674] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event8)
    [ 73.674] (II) No input driver specified, ignoring this device.
    [ 73.674] (II) This device may have been added with another device file.
    [ 73.674] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event10)
    [ 73.674] (II) No input driver specified, ignoring this device.
    [ 73.674] (II) This device may have been added with another device file.
    [ 73.675] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event11)
    [ 73.675] (II) No input driver specified, ignoring this device.
    [ 73.675] (II) This device may have been added with another device file.
    [ 73.675] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event12)
    [ 73.675] (II) No input driver specified, ignoring this device.
    [ 73.675] (II) This device may have been added with another device file.
    [ 73.676] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event9)
    [ 73.676] (II) No input driver specified, ignoring this device.
    [ 73.676] (II) This device may have been added with another device file.
    [ 73.676] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 73.676] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 73.676] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 73.676] (**) AT Translated Set 2 keyboard: always reports core events
    [ 73.676] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 73.677] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 73.677] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 73.677] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 73.677] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 73.677] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
    [ 73.677] (**) Option "xkb_rules" "evdev"
    [ 73.677] (**) Option "xkb_model" "evdev"
    [ 73.677] (**) Option "xkb_layout" "us"
    [ 73.677] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event7)
    [ 73.677] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 73.677] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Synaptics Touchpad"
    [ 73.677] (II) LoadModule: "synaptics"
    [ 73.677] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 73.677] (II) Module synaptics: vendor="X.Org Foundation"
    [ 73.677] compiled for 1.13.0, module version = 1.6.2
    [ 73.677] Module class: X.Org XInput Driver
    [ 73.677] ABI class: X.Org XInput driver, version 18.0
    [ 73.677] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 73.677] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 73.677] (**) Option "Device" "/dev/input/event7"
    [ 73.678] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 73.678] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5398
    [ 73.678] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4728
    [ 73.678] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 73.678] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 73.678] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 73.678] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 73.678] (**) Option "VertScrollDelta" "45"
    [ 73.678] (**) Option "HorizScrollDelta" "45"
    [ 73.678] (**) Option "VertEdgeScroll" "off"
    [ 73.678] (**) Option "HorizEdgeScroll" "off"
    [ 73.678] (**) Option "VertTwoFingerScroll" "on"
    [ 73.678] (**) Option "HorizTwoFingerScroll" "on"
    [ 73.678] (**) Option "TapButton1" "1"
    [ 73.678] (**) Option "TapButton2" "3"
    [ 73.678] (**) Option "TapButton3" "2"
    [ 73.678] (**) Option "PalmDetect" "on"
    [ 73.678] (**) Option "PalmMinWidth" "6"
    [ 73.678] (**) Option "MinSpeed" "0.4"
    [ 73.678] (**) Option "MaxSpeed" "0.8"
    [ 73.678] (**) Option "AccelFactor" "0.5"
    [ 73.678] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 73.678] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 73.678] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event7"
    [ 73.678] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
    [ 73.679] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 73.679] (**) synaptics: SynPS/2 Synaptics TouchPad: MaxSpeed is now 2.00
    [ 73.679] (**) synaptics: SynPS/2 Synaptics TouchPad: AccelFactor is now 0.500
    [ 73.679] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 73.679] (**) Option "AccelerationProfile" "1"
    [ 73.679] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 73.679] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 73.679] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 73.679] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 73.680] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 73.680] (II) No input driver specified, ignoring this device.
    [ 73.680] (II) This device may have been added with another device file.
    [ 73.681] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 73.681] (II) No input driver specified, ignoring this device.
    [ 73.681] (II) This device may have been added with another device file.
    [ 73.682] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event6)
    [ 73.682] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 73.682] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
    [ 73.682] (**) Dell WMI hotkeys: always reports core events
    [ 73.682] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event6"
    [ 73.682] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
    [ 73.682] (--) evdev: Dell WMI hotkeys: Found keys
    [ 73.682] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
    [ 73.682] (**) Option "config_info" "udev:/sys/devices/virtual/input/input6/event6"
    [ 73.682] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 13)
    [ 73.682] (**) Option "xkb_rules" "evdev"
    [ 73.682] (**) Option "xkb_model" "evdev"
    [ 73.682] (**) Option "xkb_layout" "us"
    Last edited by darkfeline (2012-11-15 19:03:37)

    I'm also seeing the cursor appear, though not always.  Usually it's a black screen, but sometimes the cursor shows up and is responsive for a moment or so before freezing.  This time, I had to try about 5 or 6 times before X would start properly.
    Here's my journalctl for one of the failed session; it doesn't seem to show any problems, but I'm shooting in the dark at this point
    Nov 08 02:42:18 avalon systemd-journal[151]: Allowing runtime journal files to grow to 294.4M.
    Nov 08 02:42:18 avalon kernel: Initializing cgroup subsys cpuset
    Nov 08 02:42:18 avalon kernel: Initializing cgroup subsys cpu
    Nov 08 02:42:18 avalon kernel: Linux version 3.6.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.2 (GCC) ) #1 SMP PREEMPT Mon Nov 5 11:57:22 CET 2012
    Nov 08 02:42:18 avalon kernel: Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=ae787448-0f89-4211-9621-61a8d3bd0fec ro quiet add_efi_memmap
    Nov 08 02:42:18 avalon kernel: Disabled fast string operations
    Nov 08 02:42:18 avalon kernel: e820: BIOS-provided physical RAM map:
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bac8efff] usable
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bac8f000-0x00000000bacabfff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bacac000-0x00000000bacb9fff] ACPI NVS
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bacba000-0x00000000badf9fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000badfa000-0x00000000badfbfff] ACPI NVS
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000badfc000-0x00000000badfdfff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000badfe000-0x00000000bae00fff] ACPI NVS
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bae01000-0x00000000bae03fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bae04000-0x00000000bae04fff] ACPI NVS
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bae05000-0x00000000bae09fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bae0a000-0x00000000bae1afff] ACPI NVS
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bae1b000-0x00000000baf17fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000baf18000-0x00000000baf1bfff] ACPI NVS
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000baf1c000-0x00000000baf1efff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000baf1f000-0x00000000baf9efff] ACPI NVS
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
    Nov 08 02:42:18 avalon kernel: BIOS-e820: [mem 0x0000000100000000-0x00000001bfdfffff] usable
    Nov 08 02:42:18 avalon kernel: NX (Execute Disable) protection: active
    Nov 08 02:42:18 avalon kernel: DMI 2.6 present.
    Nov 08 02:42:18 avalon kernel: DMI: Dell Inc. Dell System XPS L502X/0YR8NN, BIOS A05 05/04/2011
    Nov 08 02:42:18 avalon kernel: e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    Nov 08 02:42:18 avalon kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
    Nov 08 02:42:18 avalon kernel: No AGP bridge found
    Nov 08 02:42:18 avalon kernel: e820: last_pfn = 0x1bfe00 max_arch_pfn = 0x400000000
    Nov 08 02:42:18 avalon kernel: MTRR default type: uncachable
    Nov 08 02:42:18 avalon kernel: MTRR fixed ranges enabled:
    Nov 08 02:42:18 avalon kernel: 00000-9FFFF write-back
    Nov 08 02:42:18 avalon kernel: A0000-BFFFF uncachable
    Nov 08 02:42:18 avalon kernel: C0000-FFFFF write-protect
    Nov 08 02:42:18 avalon kernel: MTRR variable ranges enabled:
    Nov 08 02:42:18 avalon kernel: 0 base 0FFC00000 mask FFFC00000 write-protect
    Nov 08 02:42:18 avalon kernel: 1 base 000000000 mask F80000000 write-back
    Nov 08 02:42:18 avalon kernel: 2 base 080000000 mask FC0000000 write-back
    Nov 08 02:42:18 avalon kernel: 3 base 0BC000000 mask FFC000000 uncachable
    Nov 08 02:42:18 avalon kernel: 4 base 0BB000000 mask FFF000000 uncachable
    Nov 08 02:42:18 avalon kernel: 5 base 100000000 mask F80000000 write-back
    Nov 08 02:42:18 avalon kernel: 6 base 180000000 mask FC0000000 write-back
    Nov 08 02:42:18 avalon kernel: 7 base 1BFE00000 mask FFFE00000 uncachable
    Nov 08 02:42:18 avalon kernel: 8 disabled
    Nov 08 02:42:18 avalon kernel: 9 disabled
    Nov 08 02:42:18 avalon kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov 08 02:42:18 avalon kernel: e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
    Nov 08 02:42:18 avalon kernel: initial memory mapped: [mem 0x00000000-0x1fffffff]
    Nov 08 02:42:18 avalon kernel: Base memory trampoline at [ffff880000097000] 97000 size 24576
    Nov 08 02:42:18 avalon kernel: init_memory_mapping: [mem 0x00000000-0xbaffffff]
    Nov 08 02:42:18 avalon kernel: [mem 0x00000000-0xbaffffff] page 2M
    Nov 08 02:42:18 avalon kernel: kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fffc000-0x1fffffff]
    Nov 08 02:42:18 avalon kernel: init_memory_mapping: [mem 0x100000000-0x1bfdfffff]
    Nov 08 02:42:18 avalon kernel: [mem 0x100000000-0x1bfdfffff] page 2M
    Nov 08 02:42:18 avalon kernel: kernel direct mapping tables up to 0x1bfdfffff @ [mem 0xbac8b000-0xbac8efff]
    Nov 08 02:42:18 avalon kernel: RAMDISK: [mem 0x37ad4000-0x37d61fff]
    Nov 08 02:42:18 avalon kernel: ACPI: RSDP 00000000000f00e0 00024 (v02 DELL )
    Nov 08 02:42:18 avalon kernel: ACPI: XSDT 00000000baffe120 0008C (v01 DELL QA09 00000002 LOHR 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: FACP 00000000bafef000 000F4 (v03 DELL QA09 00000002 PTL 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: DSDT 00000000baff2000 08C93 (v02 DELL SNB-CPT 00000000 INTL 20061109)
    Nov 08 02:42:18 avalon kernel: ACPI: FACS 00000000baf3f000 00040
    Nov 08 02:42:18 avalon kernel: ACPI: SLIC 00000000baffd000 00176 (v01 DELL QA09 00000002 LOHR 00000001)
    Nov 08 02:42:18 avalon kernel: ACPI: SSDT 00000000baffb000 01068 (v01 DELL PtidDevc 00001000 INTL 20061109)
    Nov 08 02:42:18 avalon kernel: ACPI: ASF! 00000000baff1000 000A5 (v32 DELL QA09 00000002 PTL 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: HPET 00000000bafee000 00038 (v01 DELL QA09 00000002 PTL 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: APIC 00000000bafed000 00098 (v01 DELL QA09 00000002 PTL 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: MCFG 00000000bafec000 0003C (v01 DELL QA09 00000002 PTL 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: SSDT 00000000bafea000 0124D (v01 NvORef NvOptTbl 00001000 INTL 20061109)
    Nov 08 02:42:18 avalon kernel: ACPI: SSDT 00000000bafe9000 0090C (v01 PmRef Cpu0Ist 00003000 INTL 20061109)
    Nov 08 02:42:18 avalon kernel: ACPI: SSDT 00000000bafe8000 00996 (v01 PmRef CpuPm 00003000 INTL 20061109)
    Nov 08 02:42:18 avalon kernel: ACPI: UEFI 00000000bafe7000 0003E (v01 DELL QA09 00000002 PTL 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: UEFI 00000000bafe6000 00042 (v01 PTL COMBUF 00000001 PTL 00000001)
    Nov 08 02:42:18 avalon kernel: ACPI: UEFI 00000000bafe5000 0026A (v01 DELL QA09 00000002 PTL 00000002)
    Nov 08 02:42:18 avalon kernel: ACPI: Local APIC address 0xfee00000
    Nov 08 02:42:18 avalon kernel: No NUMA configuration found
    Nov 08 02:42:18 avalon kernel: Faking a node at [mem 0x0000000000000000-0x00000001bfdfffff]
    Nov 08 02:42:18 avalon kernel: Initmem setup node 0 [mem 0x00000000-0x1bfdfffff]
    Nov 08 02:42:18 avalon kernel: NODE_DATA [mem 0x1bfdfc000-0x1bfdfffff]
    Nov 08 02:42:18 avalon kernel: [ffffea0000000000-ffffea0006ffffff] PMD -> [ffff8801b9400000-ffff8801bf3fffff] on node 0
    Nov 08 02:42:18 avalon kernel: Zone ranges:
    Nov 08 02:42:18 avalon kernel: DMA [mem 0x00010000-0x00ffffff]
    Nov 08 02:42:18 avalon kernel: DMA32 [mem 0x01000000-0xffffffff]
    Nov 08 02:42:18 avalon kernel: Normal [mem 0x100000000-0x1bfdfffff]
    Nov 08 02:42:18 avalon kernel: Movable zone start for each node
    Nov 08 02:42:18 avalon kernel: Early memory node ranges
    Nov 08 02:42:18 avalon kernel: node 0: [mem 0x00010000-0x0009cfff]
    Nov 08 02:42:18 avalon kernel: node 0: [mem 0x00100000-0xbac8efff]
    Nov 08 02:42:18 avalon kernel: node 0: [mem 0xbafff000-0xbaffffff]
    Nov 08 02:42:18 avalon kernel: node 0: [mem 0x100000000-0x1bfdfffff]
    Nov 08 02:42:18 avalon kernel: On node 0 totalpages: 1550877
    Nov 08 02:42:18 avalon kernel: DMA zone: 64 pages used for memmap
    Nov 08 02:42:18 avalon kernel: DMA zone: 6 pages reserved
    Nov 08 02:42:18 avalon kernel: DMA zone: 3911 pages, LIFO batch:0
    Nov 08 02:42:18 avalon kernel: DMA32 zone: 16320 pages used for memmap
    Nov 08 02:42:18 avalon kernel: DMA32 zone: 744656 pages, LIFO batch:31
    Nov 08 02:42:18 avalon kernel: Normal zone: 12280 pages used for memmap
    Nov 08 02:42:18 avalon kernel: Normal zone: 773640 pages, LIFO batch:31
    Nov 08 02:42:18 avalon kernel: ACPI: PM-Timer IO Port: 0x408
    Nov 08 02:42:18 avalon kernel: ACPI: Local APIC address 0xfee00000
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Nov 08 02:42:18 avalon kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Nov 08 02:42:18 avalon kernel: ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
    Nov 08 02:42:18 avalon kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
    Nov 08 02:42:18 avalon kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov 08 02:42:18 avalon kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Nov 08 02:42:18 avalon kernel: ACPI: IRQ0 used by override.
    Nov 08 02:42:18 avalon kernel: ACPI: IRQ2 used by override.
    Nov 08 02:42:18 avalon kernel: ACPI: IRQ9 used by override.
    Nov 08 02:42:18 avalon kernel: Using ACPI (MADT) for SMP configuration information
    Nov 08 02:42:18 avalon kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
    Nov 08 02:42:18 avalon kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
    Nov 08 02:42:18 avalon kernel: nr_irqs_gsi: 40
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bac8f000 - 00000000bacac000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bacac000 - 00000000bacba000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bacba000 - 00000000badfa000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000badfa000 - 00000000badfc000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000badfc000 - 00000000badfe000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000badfe000 - 00000000bae01000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bae01000 - 00000000bae04000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bae04000 - 00000000bae05000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bae05000 - 00000000bae0a000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bae0a000 - 00000000bae1b000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bae1b000 - 00000000baf18000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000baf18000 - 00000000baf1c000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000baf1c000 - 00000000baf1f000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000baf1f000 - 00000000baf9f000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000baf9f000 - 00000000bafff000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000bfa00000 - 00000000f8000000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000f8000000 - 00000000fc000000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fc000000 - 00000000fec00000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fec01000 - 00000000fed08000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fed08000 - 00000000fed09000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fed09000 - 00000000fed10000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000fee01000 - 00000000ffd80000
    Nov 08 02:42:18 avalon kernel: PM: Registered nosave memory: 00000000ffd80000 - 0000000100000000
    Nov 08 02:42:18 avalon kernel: e820: [mem 0xbfa00000-0xf7ffffff] available for PCI devices
    Nov 08 02:42:18 avalon kernel: Booting paravirtualized kernel on bare hardware
    Nov 08 02:42:18 avalon kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    Nov 08 02:42:18 avalon kernel: PERCPU: Embedded 28 pages/cpu @ffff8801bfa00000 s84608 r8192 d21888 u262144
    Nov 08 02:42:18 avalon kernel: pcpu-alloc: s84608 r8192 d21888 u262144 alloc=1*2097152
    Nov 08 02:42:18 avalon kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    Nov 08 02:42:19 avalon kernel: Built 1 zonelists in Zone order, mobility grouping on. Total pages: 1522207
    Nov 08 02:42:19 avalon kernel: Policy zone: Normal
    Nov 08 02:42:19 avalon kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=ae787448-0f89-4211-9621-61a8d3bd0fec ro quiet add_efi_memmap
    Nov 08 02:42:19 avalon kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Nov 08 02:42:19 avalon kernel: __ex_table already sorted, skipping sort
    Nov 08 02:42:19 avalon kernel: xsave: enabled xstate_bv 0x7, cntxt size 0x340
    Nov 08 02:42:19 avalon kernel: Checking aperture...
    Nov 08 02:42:19 avalon kernel: No AGP bridge found
    Nov 08 02:42:19 avalon kernel: Calgary: detecting Calgary via BIOS EBDA area
    Nov 08 02:42:19 avalon kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    Nov 08 02:42:19 avalon kernel: Memory: 6024384k/7337984k available (4727k kernel code, 1134476k absent, 179124k reserved, 4143k data, 768k init)
    Nov 08 02:42:19 avalon kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    Nov 08 02:42:19 avalon kernel: Preemptible hierarchical RCU implementation.
    Nov 08 02:42:19 avalon kernel: RCU dyntick-idle grace-period acceleration is enabled.
    Nov 08 02:42:19 avalon kernel: Dump stacks of tasks blocking RCU-preempt GP.
    Nov 08 02:42:19 avalon kernel: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
    Nov 08 02:42:19 avalon kernel: NR_IRQS:4352 nr_irqs:744 16
    Nov 08 02:42:19 avalon kernel: Extended CMOS year: 2000
    Nov 08 02:42:19 avalon kernel: Console: colour dummy device 80x25
    Nov 08 02:42:19 avalon kernel: console [tty0] enabled
    Nov 08 02:42:19 avalon kernel: allocated 25165824 bytes of page_cgroup
    Nov 08 02:42:19 avalon kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
    Nov 08 02:42:19 avalon kernel: hpet clockevent registered
    Nov 08 02:42:19 avalon kernel: tsc: Fast TSC calibration using PIT
    Nov 08 02:42:19 avalon kernel: tsc: Detected 1995.550 MHz processor
    Nov 08 02:42:19 avalon kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3992.39 BogoMIPS (lpj=6651833)
    Nov 08 02:42:19 avalon kernel: pid_max: default: 32768 minimum: 301
    Nov 08 02:42:19 avalon kernel: Security Framework initialized
    Nov 08 02:42:19 avalon kernel: AppArmor: AppArmor disabled by boot time parameter
    Nov 08 02:42:19 avalon kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
    Nov 08 02:42:19 avalon kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
    Nov 08 02:42:19 avalon kernel: Mount-cache hash table entries: 256
    Nov 08 02:42:19 avalon kernel: Initializing cgroup subsys cpuacct
    Nov 08 02:42:19 avalon kernel: Initializing cgroup subsys memory
    Nov 08 02:42:19 avalon kernel: Initializing cgroup subsys devices
    Nov 08 02:42:19 avalon kernel: Initializing cgroup subsys freezer
    Nov 08 02:42:19 avalon kernel: Initializing cgroup subsys net_cls
    Nov 08 02:42:19 avalon kernel: Initializing cgroup subsys blkio
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU: Physical Processor ID: 0
    Nov 08 02:42:19 avalon kernel: CPU: Processor Core ID: 0
    Nov 08 02:42:19 avalon kernel: [117B blob data]
    Nov 08 02:42:19 avalon kernel: mce: CPU supports 9 MCE banks
    Nov 08 02:42:19 avalon kernel: CPU0: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: process: using mwait in idle threads
    Nov 08 02:42:19 avalon kernel: [121B blob data]
    Nov 08 02:42:19 avalon kernel: ACPI: Core revision 20120711
    Nov 08 02:42:19 avalon kernel: ftrace: allocating 18347 entries in 72 pages
    Nov 08 02:42:19 avalon kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    Nov 08 02:42:19 avalon kernel: smpboot: CPU0: Intel(R) Core(TM) i7-2630QM CPU @ 2.00GHz stepping 07
    Nov 08 02:42:19 avalon kernel: Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
    Nov 08 02:42:19 avalon kernel: perf_event_intel: PEBS disabled due to CPU errata, please upgrade microcode
    Nov 08 02:42:19 avalon kernel: ... version: 3
    Nov 08 02:42:19 avalon kernel: ... bit width: 48
    Nov 08 02:42:19 avalon kernel: ... generic registers: 4
    Nov 08 02:42:19 avalon kernel: ... value mask: 0000ffffffffffff
    Nov 08 02:42:19 avalon kernel: ... max period: 000000007fffffff
    Nov 08 02:42:19 avalon kernel: ... fixed-purpose events: 3
    Nov 08 02:42:19 avalon kernel: ... event mask: 000000070000000f
    Nov 08 02:42:19 avalon kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU1: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU2: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU3: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU4: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU5: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU6: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: smpboot: Booting Node 0, Processors #1 #2 #3 #4 #5 #6 #7 OK
    Nov 08 02:42:19 avalon kernel: Disabled fast string operations
    Nov 08 02:42:19 avalon kernel: CPU7: Thermal monitoring handled by SMI
    Nov 08 02:42:19 avalon kernel: Brought up 8 CPUs
    Nov 08 02:42:19 avalon kernel: smpboot: Total of 8 processors activated (31941.16 BogoMIPS)
    Nov 08 02:42:19 avalon kernel: devtmpfs: initialized
    Nov 08 02:42:19 avalon kernel: PM: Registering ACPI NVS region [mem 0xbacac000-0xbacb9fff] (57344 bytes)
    Nov 08 02:42:19 avalon kernel: PM: Registering ACPI NVS region [mem 0xbadfa000-0xbadfbfff] (8192 bytes)
    Nov 08 02:42:19 avalon kernel: PM: Registering ACPI NVS region [mem 0xbadfe000-0xbae00fff] (12288 bytes)
    Nov 08 02:42:19 avalon kernel: PM: Registering ACPI NVS region [mem 0xbae04000-0xbae04fff] (4096 bytes)
    Nov 08 02:42:19 avalon kernel: PM: Registering ACPI NVS region [mem 0xbae0a000-0xbae1afff] (69632 bytes)
    Nov 08 02:42:19 avalon kernel: PM: Registering ACPI NVS region [mem 0xbaf18000-0xbaf1bfff] (16384 bytes)
    Nov 08 02:42:19 avalon kernel: PM: Registering ACPI NVS region [mem 0xbaf1f000-0xbaf9efff] (524288 bytes)
    Nov 08 02:42:19 avalon kernel: NET: Registered protocol family 16
    Nov 08 02:42:19 avalon kernel: ACPI: bus type pci registered
    Nov 08 02:42:19 avalon kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    Nov 08 02:42:19 avalon kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
    Nov 08 02:42:19 avalon kernel: PCI: Using configuration type 1 for base access
    Nov 08 02:42:19 avalon kernel: mtrr: your CPUs had inconsistent variable MTRR settings
    Nov 08 02:42:19 avalon kernel: mtrr: probably your BIOS does not setup all CPUs.
    Nov 08 02:42:19 avalon kernel: mtrr: corrected configuration.
    Nov 08 02:42:19 avalon kernel: bio: create slab <bio-0> at 0
    Nov 08 02:42:19 avalon kernel: ACPI: Added _OSI(Module Device)
    Nov 08 02:42:19 avalon kernel: ACPI: Added _OSI(Processor Device)
    Nov 08 02:42:19 avalon kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
    Nov 08 02:42:19 avalon kernel: ACPI: Added _OSI(Processor Aggregator Device)
    Nov 08 02:42:19 avalon kernel: ACPI: EC: Look up EC in DSDT
    Nov 08 02:42:19 avalon kernel: ACPI: Executed 1 blocks of module-level executable AML code
    Nov 08 02:42:19 avalon kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    Nov 08 02:42:19 avalon kernel: ACPI: SSDT 00000000bae06718 0067C (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    Nov 08 02:42:19 avalon kernel: ACPI: Dynamic OEM Table Load:
    Nov 08 02:42:19 avalon kernel: ACPI: SSDT (null) 0067C (v01 PmRef Cpu0Cst 00003001 INTL 20061109)
    Nov 08 02:42:19 avalon kernel: ACPI: SSDT 00000000bae07a98 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    Nov 08 02:42:19 avalon kernel: ACPI: Dynamic OEM Table Load:
    Nov 08 02:42:19 avalon kernel: ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20061109)
    Nov 08 02:42:19 avalon kernel: ACPI: SSDT 00000000bae05d98 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    Nov 08 02:42:19 avalon kernel: ACPI: Dynamic OEM Table Load:
    Nov 08 02:42:19 avalon kernel: ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20061109)
    Nov 08 02:42:19 avalon kernel: ACPI: Interpreter enabled
    Nov 08 02:42:19 avalon kernel: ACPI: (supports S0 S3 S4 S5)
    Nov 08 02:42:19 avalon kernel: ACPI: Using IOAPIC for interrupt routing
    Nov 08 02:42:19 avalon kernel: ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    Nov 08 02:42:19 avalon kernel: ACPI: No dock devices found.
    Nov 08 02:42:19 avalon kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    Nov 08 02:42:19 avalon kernel: \_SB_.PCI0:_OSC invalid UUID
    Nov 08 02:42:19 avalon kernel: _OSC request data:1 8 1f
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    Nov 08 02:42:19 avalon kernel: PCI host bridge to bus 0000:00
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: busn_res: [bus 00-3e] is inserted under domain [bus 00-ff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
    Nov 08 02:42:19 avalon kernel: pci 0000:00:02.0: reg 10: [mem 0xf1400000-0xf17fffff 64bit]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:02.0: reg 20: [io 0x4000-0x403f]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
    Nov 08 02:42:19 avalon kernel: pci 0000:00:16.0: reg 10: [mem 0xf1c05000-0xf1c0500f 64bit]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1a.0: reg 10: [mem 0xf1c0a000-0xf1c0a3ff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1b.0: reg 10: [mem 0xf1c00000-0xf1c03fff 64bit]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1d.0: reg 10: [mem 0xf1c09000-0xf1c093ff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: reg 10: [io 0x4088-0x408f]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: reg 14: [io 0x4094-0x4097]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: reg 18: [io 0x4080-0x4087]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: reg 1c: [io 0x4090-0x4093]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: reg 20: [io 0x4060-0x407f]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: reg 24: [mem 0xf1c08000-0xf1c087ff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.2: PME# supported from D3hot
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.3: reg 10: [mem 0xf1c04000-0xf1c040ff 64bit]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1f.3: reg 20: [io 0xefa0-0xefbf]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: [10de:0df5] type 00 class 0x030000
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: reg 10: [mem 0xf0000000-0xf0ffffff]
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: reg 24: [io 0x3000-0x307f]
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pci 0000:03:00.0: [8086:008a] type 00 class 0x028000
    Nov 08 02:42:19 avalon kernel: pci 0000:03:00.0: reg 10: [mem 0xf1b00000-0xf1b01fff 64bit]
    Nov 08 02:42:19 avalon kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.1: bridge window [mem 0xf1b00000-0xf1bfffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330
    Nov 08 02:42:19 avalon kernel: pci 0000:04:00.0: reg 10: [mem 0xf1a00000-0xf1a01fff 64bit]
    Nov 08 02:42:19 avalon kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.3: bridge window [mem 0xf1a00000-0xf1afffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:05: busn_res: [bus 05] is inserted under [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.4: PCI bridge to [bus 05]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.4: bridge window [mem 0xf1900000-0xf19fffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:06: busn_res: [bus 06] is inserted under [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pci 0000:06:00.0: [10ec:8168] type 00 class 0x020000
    Nov 08 02:42:19 avalon kernel: pci 0000:06:00.0: reg 10: [io 0x2000-0x20ff]
    Nov 08 02:42:19 avalon kernel: pci 0000:06:00.0: reg 18: [mem 0xf1804000-0xf1804fff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:06:00.0: reg 20: [mem 0xf1800000-0xf1803fff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:06:00.0: supports D1 D2
    Nov 08 02:42:19 avalon kernel: pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: PCI bridge to [bus 06]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: bridge window [mem 0xf1800000-0xf18fffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP06._PRT]
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
    Nov 08 02:42:19 avalon kernel: \_SB_.PCI0:_OSC invalid UUID
    Nov 08 02:42:19 avalon kernel: _OSC request data:1 1f 1f
    Nov 08 02:42:19 avalon kernel: pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    Nov 08 02:42:19 avalon kernel: pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    Nov 08 02:42:19 avalon kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    Nov 08 02:42:19 avalon kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    Nov 08 02:42:19 avalon kernel: vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    Nov 08 02:42:19 avalon kernel: vgaarb: loaded
    Nov 08 02:42:19 avalon kernel: vgaarb: bridge control possible 0000:01:00.0
    Nov 08 02:42:19 avalon kernel: vgaarb: no bridge control possible 0000:00:02.0
    Nov 08 02:42:19 avalon kernel: PCI: Using ACPI for IRQ routing
    Nov 08 02:42:19 avalon kernel: PCI: pci_cache_line_size set to 64 bytes
    Nov 08 02:42:19 avalon kernel: e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    Nov 08 02:42:19 avalon kernel: e820: reserve RAM buffer [mem 0xbac8f000-0xbbffffff]
    Nov 08 02:42:19 avalon kernel: e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
    Nov 08 02:42:19 avalon kernel: e820: reserve RAM buffer [mem 0x1bfe00000-0x1bfffffff]
    Nov 08 02:42:19 avalon kernel: NetLabel: Initializing
    Nov 08 02:42:19 avalon kernel: NetLabel: domain hash size = 128
    Nov 08 02:42:19 avalon kernel: NetLabel: protocols = UNLABELED CIPSOv4
    Nov 08 02:42:19 avalon kernel: NetLabel: unlabeled traffic allowed by default
    Nov 08 02:42:19 avalon kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    Nov 08 02:42:19 avalon kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    Nov 08 02:42:19 avalon kernel: Switching to clocksource hpet
    Nov 08 02:42:19 avalon kernel: pnp: PnP ACPI init
    Nov 08 02:42:19 avalon kernel: ACPI: bus type pnp registered
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [bus 00-3e]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [io 0x0000-0x0cf7 window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [io 0x0cf8-0x0cff]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [io 0x0d00-0xffff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000c0000-0x000c3fff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000c4000-0x000c7fff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000c8000-0x000cbfff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000cc000-0x000cffff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000d0000-0x000d3fff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000d4000-0x000d7fff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000d8000-0x000dbfff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000dc000-0x000dffff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000e0000-0x000e3fff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000e4000-0x000e7fff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000e8000-0x000ebfff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000ec000-0x000effff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0x000f0000-0x000fffff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0xbfa00000-0xfeafffff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: [mem 0xfed40000-0xfed44fff window]
    Nov 08 02:42:19 avalon kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:01: [io 0x0000-0x001f]
    Nov 08 02:42:19 avalon kernel: pnp 00:01: [io 0x0081-0x0091]
    Nov 08 02:42:19 avalon kernel: pnp 00:01: [io 0x0093-0x009f]
    Nov 08 02:42:19 avalon kernel: pnp 00:01: [io 0x00c0-0x00df]
    Nov 08 02:42:19 avalon kernel: pnp 00:01: [dma 4]
    Nov 08 02:42:19 avalon kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:02: [mem 0xfed00000-0xfed003ff]
    Nov 08 02:42:19 avalon kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:03: [io 0x00f0]
    Nov 08 02:42:19 avalon kernel: pnp 00:03: [irq 13]
    Nov 08 02:42:19 avalon kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x002e-0x002f]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x004e-0x004f]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0061]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0063]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0065]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0067]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0068]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x006c]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0070]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0080]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0092]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x00b2-0x00b3]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0680-0x069f]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x1000-0x1003]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x1004-0x1013]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0xffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0400-0x0453]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0458-0x047f]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x0500-0x057f]
    Nov 08 02:42:19 avalon kernel: pnp 00:04: [io 0x164e-0x164f]
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0x0680-0x069f] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0x1000-0x1003] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0x1004-0x1013] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0xffff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0x0400-0x0453] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0x0458-0x047f] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0x0500-0x057f] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: [io 0x164e-0x164f] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:05: [io 0x0070-0x0077]
    Nov 08 02:42:19 avalon kernel: pnp 00:05: [irq 8]
    Nov 08 02:42:19 avalon kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:06: [io 0x0454-0x0457]
    Nov 08 02:42:19 avalon kernel: system 00:06: [io 0x0454-0x0457] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:07: [io 0x0060]
    Nov 08 02:42:19 avalon kernel: pnp 00:07: [io 0x0064]
    Nov 08 02:42:19 avalon kernel: pnp 00:07: [irq 1]
    Nov 08 02:42:19 avalon kernel: pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:08: [irq 12]
    Nov 08 02:42:19 avalon kernel: pnp 00:08: Plug and Play ACPI device, IDs DLL04b6 PNP0f13 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfed1c000-0xfed1ffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfed10000-0xfed17fff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfed18000-0xfed18fff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfed19000-0xfed19fff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xf8000000-0xfbffffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfed20000-0xfed3ffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfed90000-0xfed93fff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfed45000-0xfed8ffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xff000000-0xffffffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfee00000-0xfeefffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: [mem 0xfffff000-0xffffffff]
    Nov 08 02:42:19 avalon kernel: pnp 00:09: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xff000000-0xffffffff] could not be reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
    Nov 08 02:42:19 avalon kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    Nov 08 02:42:19 avalon kernel: pnp 00:0a: [irq 20]
    Nov 08 02:42:19 avalon kernel: pnp 00:0a: Plug and Play ACPI device, IDs SMO8800 (active)
    Nov 08 02:42:19 avalon kernel: pnp: PnP ACPI: found 11 devices
    Nov 08 02:42:19 avalon kernel: ACPI: ACPI bus type pnp unregistered
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:01:00.0: BAR 6: assigned [mem 0xf1000000-0xf107ffff pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: bridge window [mem 0xf0000000-0xf10fffff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.1: bridge window [mem 0xf1b00000-0xf1bfffff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.3: PCI bridge to [bus 04]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.3: bridge window [mem 0xf1a00000-0xf1afffff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.4: PCI bridge to [bus 05]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.4: bridge window [mem 0xf1900000-0xf19fffff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: PCI bridge to [bus 06]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    Nov 08 02:42:19 avalon kernel: pci 0000:00:1c.5: bridge window [mem 0xf1800000-0xf18fffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf10fffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:03: resource 1 [mem 0xf1b00000-0xf1bfffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:04: resource 1 [mem 0xf1a00000-0xf1afffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:05: resource 1 [mem 0xf1900000-0xf19fffff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:06: resource 0 [io 0x2000-0x2fff]
    Nov 08 02:42:19 avalon kernel: pci_bus 0000:06: resource 2 [mem 0xf1800000-0xf18fffff 64bit pref]
    Nov 08 02:42:19 avalon kernel: NET: Registered protocol family 2
    Nov 08 02:42:19 avalon kernel: TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    Nov 08 02:42:19 avalon kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    Nov 08 02:42:19 avalon kernel: TCP: Hash tables configured (established 524288 bind 65536)
    Nov 08 02:42:19 avalon kernel: TCP: reno registered
    Nov 08 02:42:19 avalon kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
    Nov 08 02:42:19 avalon kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
    Nov 08 02:42:19 avalon kernel: NET: Registered protocol family 1
    Nov 08 02:42:19 avalon kernel: pci 0000:00:02.0: Boot video device
    Nov 08 02:42:19 avalon kernel: PCI: CLS 64 bytes, default 64
    Nov 08 02:42:19 avalon kernel: Unpacking initramfs...
    Nov 08 02:42:19 avalon kernel: Freeing initrd memory: 2616k freed
    Nov 08 02:42:19 avalon kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    Nov 08 02:42:19 avalon kernel: software IO TLB [mem 0xb6c8b000-0xbac8afff] (64MB) mapped at [ffff8800b6c8b000-ffff8800bac8afff]
    Nov 08 02:42:19 avalon kernel: audit: initializing netlink socket (disabled)
    Nov 08 02:42:19 avalon kernel: type=2000 audit(1352360532.413:1): initialized
    Nov 08 02:42:19 avalon kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
    Nov 08 02:42:19 avalon kernel: VFS: Disk quotas dquot_6.5.2
    Nov 08 02:42:19 avalon kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    Nov 08 02:42:19 avalon kernel: msgmni has been set to 11771
    Nov 08 02:42:19 avalon kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    Nov 08 02:42:19 avalon kernel: io scheduler noop registered
    Nov 08 02:42:19 avalon kernel: io scheduler deadline registered
    Nov 08 02:42:19 avalon kernel: io scheduler cfq registered (default)
    Nov 08 02:42:19 avalon kernel: pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
    Nov 08 02:42:19 avalon kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
    Nov 08 02:42:19 avalon kernel: vesafb: scrolling: redraw
    Nov 08 02:42:19 avalon kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    Nov 08 02:42:19 avalon kernel: vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005600000, using 3072k, total 3072k
    Nov 08 02:42:19 avalon kernel: Console: switching to colour frame buffer device 128x48
    Nov 08 02:42:19 avalon kernel: fb0: VESA VGA frame buffer device
    Nov 08 02:42:19 avalon kernel: intel_idle: MWAIT substates: 0x21120
    Nov 08 02:42:19 avalon kernel: intel_idle: v0.4 model 0x2A
    Nov 08 02:42:19 avalon kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
    Nov 08 02:42:19 avalon kernel: GHES: HEST is not enabled!
    Nov 08 02:42:19 avalon kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    Nov 08 02:42:19 avalon kernel: Linux agpgart interface v0.103
    Nov 08 02:42:19 avalon kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
    Nov 08 02:42:19 avalon kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
    Nov 08 02:42:19 avalon kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
    Nov 08 02:42:19 avalon kernel: mousedev: PS/2 mouse device common for all mice
    Nov 08 02:42:19 avalon kernel: rtc_cmos 00:05: RTC can wake from S4
    Nov 08 02:42:19 avalon kernel: rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
    Nov 08 02:42:19 avalon kernel: rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
    Nov 08 02:42:19 avalon kernel: cpuidle: using governor ladder
    Nov 08 02:42:19 avalon kernel: cpuidle: using governor menu
    Nov 08 02:42:19 avalon kernel: drop_monitor: Initializing network drop monitor service
    Nov 08 02:42:19 avalon kernel: TCP: cubic registered
    Nov 08 02:42:19 avalon kernel: NET: Registered protocol family 10
    Nov 08 02:42:19 avalon kernel: NET: Registered protocol family 17
    Nov 08 02:42:19 avalon kernel: Key type dns_resolver registered
    Nov 08 02:42:19 avalon kernel: PM: Hibernation image not present or could not be loaded.
    Nov 08 02:42:19 avalon kernel: registered taskstats version 1
    Nov 08 02:42:19 avalon kernel: rtc_cmos 00:05: setting system clock to 2012-11-08 07:42:13 UTC (1352360533)
    Nov 08 02:42:19 avalon kernel: Freeing unused kernel memory: 768k freed
    Nov 08 02:42:19 avalon kernel: Write protecting the kernel read-only data: 8192k
    Nov 08 02:42:19 avalon kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    Nov 08 02:42:19 avalon kernel: Freeing unused kernel memory: 1408k freed
    Nov 08 02:42:19 avalon kernel: Freeing unused kernel memory: 568k freed
    Nov 08 02:42:19 avalon systemd-udevd[74]: starting version 195
    Nov 08 02:42:19 avalon kernel: SCSI subsystem initialized
    Nov 08 02:42:19 avalon kernel: ACPI: bus type scsi registered
    Nov 08 02:42:19 avalon kernel: libata version 3.00 loaded.
    Nov 08 02:42:19 avalon kernel: ahci 0000:00:1f.2: version 3.0
    Nov 08 02:42:19 avalon kernel: ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    Nov 08 02:42:19 avalon kernel: ahci: SSS flag set, parallel bus scan disabled
    Nov 08 02:42:19 avalon kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x13 impl SATA mode
    Nov 08 02:42:19 avalon kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst
    Nov 08 02:42:19 avalon kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Nov 08 02:42:19 avalon kernel: scsi0 : ahci
    Nov 08 02:42:19 avalon kernel: scsi1 : ahci
    Nov 08 02:42:19 avalon kernel: scsi2 : ahci
    Nov 08 02:42:19 avalon kernel: scsi3 : ahci
    Nov 08 02:42:19 avalon kernel: scsi4 : ahci
    Nov 08 02:42:19 avalon kernel: scsi5 : ahci
    Nov 08 02:42:19 avalon kernel: ata1: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08100 irq 41
    Nov 08 02:42:19 avalon kernel: ata2: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08180 irq 41
    Nov 08 02:42:19 avalon kernel: ata3: DUMMY
    Nov 08 02:42:19 avalon kernel: ata4: DUMMY
    Nov 08 02:42:19 avalon kernel: ata5: SATA max UDMA/133 abar m2048@0xf1c08000 port 0xf1c08300 irq 41
    Nov 08 02:42:19 avalon kernel: ata6: DUMMY
    Nov 08 02:42:19 avalon kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Nov 08 02:42:19 avalon kernel: ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    Nov 08 02:42:19 avalon kernel: ata1.00: ATA-8: WDC WD7500BPKT-75PK4T0, 01.01A01, max UDMA/133
    Nov 08 02:42:19 avalon kernel: ata1.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    Nov 08 02:42:19 avalon kernel: ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
    Nov 08 02:42:19 avalon kernel: ata1.00: configured for UDMA/133
    Nov 08 02:42:19 avalon kernel: scsi 0:0:0:0: Direct-Access ATA WDC WD7500BPKT-7 01.0 PQ: 0 ANSI: 5
    Nov 08 02:42:19 avalon kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Nov 08 02:42:19 avalon kernel: ata2.00: ATAPI: PLDS DVD+/-RW DS-8A5SH, XD12, max UDMA/100
    Nov 08 02:42:19 avalon kernel: ata2.00: configured for UDMA/100
    Nov 08 02:42:19 avalon kernel: scsi 1:0:0:0: CD-ROM PLDS DVD+-RW DS-8A5SH XD12 PQ: 0 ANSI: 5
    Nov 08 02:42:19 avalon kernel: tsc: Refined TSC clocksource calibration: 1995.466 MHz
    Nov 08 02:42:19 avalon kernel: Switching to clocksource tsc
    Nov 08 02:42:19 avalon kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Nov 08 02:42:19 avalon kernel: sd 0:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/698 GiB)
    Nov 08 02:42:19 avalon kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
    Nov 08 02:42:19 avalon kernel: sd 0:0:0:0: [sda] Write Protect is off
    Nov 08 02:42:19 avalon kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    Nov 08 02:42:19 avalon kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    Nov 08 02:42:19 avalon kernel: sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 >
    Nov 08 02:42:19 avalon kernel: sd 0:0:0:0: [sda] Attached SCSI disk
    Nov 08 02:42:19 avalon kernel: EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
    Nov 08 02:42:19 avalon systemd[1]: systemd 195 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; arch)
    Nov 08 02:42:19 avalon systemd[1]: Set hostname to <avalon>.
    Nov 08 02:42:19 avalon systemd[1]: Cannot add dependency job for unit acpid.service, ignoring: Unit acpid.service failed to load: No such file or directory. See system logs and 'systemctl status acpid.service' for details.
    Nov 08 02:42:19 avalon systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    Nov 08 02:42:19 avalon systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    Nov 08 02:42:19 avalon systemd[1]: Starting Syslog Socket.
    Nov 08 02:42:19 avalon systemd[1]: Socket service syslog.service not loaded, refusing.
    Nov 08 02:42:19 avalon systemd[1]: Failed to listen on Syslog Socket.
    Nov 08 02:42:19 avalon systemd[1]: Starting Remote File Systems.
    Nov 08 02:42:19 avalon systemd[1]: Reached target Remote File Systems.
    Nov 08 02:42:19 avalon systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    Nov 08 02:42:19 avalon systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    Nov 08 02:42:19 avalon systemd[1]: Starting Delayed Shutdown Socket.
    Nov 08 02:42:19 avalon systemd[1]: Listening on Delayed Shutdown Socket.
    Nov 08 02:42:19 avalon systemd[1]: Starting Encrypted Volumes.
    Nov 08 02:42:19 avalon systemd[1]: Reached target Encrypted Volumes.
    Nov 08 02:42:19 avalon systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    Nov 08 02:42:19 avalon systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    Nov 08 02:42:19 avalon systemd[1]: Starting udev Kernel Socket.
    Nov 08 02:42:19 avalon systemd[1]: Listening on udev Kernel Socket.
    Nov 08 02:42:19 avalon systemd[1]: Starting udev Control Socket.
    Nov 08 02:42:19 avalon systemd[1]: Listening on udev Control Socket.
    Nov 08 02:42:19 avalon systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    Nov 08 02:42:19 avalon systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Nov 08 02:42:19 avalon systemd[1]: Expecting device dev-sda6.device...
    Nov 08 02:42:19 avalon systemd[1]: Expecting device dev-sda7.device...
    Nov 08 02:42:19 avalon systemd[1]: Starting Journal Socket.
    Nov 08 02:42:19 avalon systemd[1]: Listening on Journal Socket.
    Nov 08 02:42:19 avalon systemd[1]: Started File System Check on Root Device.
    Nov 08 02:42:19 avalon systemd[1]: Starting Remount Root and Kernel File Systems...
    Nov 08 02:42:19 avalon systemd[1]: Mounting POSIX Message Queue File System...
    Nov 08 02:42:19 avalon systemd[1]: Started Load Kernel Modules.
    Nov 08 02:42:19 avalon systemd[1]: Starting Apply Kernel Variables...
    Nov 08 02:42:19 avalon systemd[1]: Mounted FUSE Control File System.
    Nov 08 02:42:19 avalon systemd[1]: Starting udev Kernel Device Manager...
    Nov 08 02:42:19 avalon systemd[1]: Mounted Configuration File System.
    Nov 08 02:42:19 avalon systemd[1]: Starting udev Coldplug all Devices...
    Nov 08 02:42:19 avalon systemd[1]: Mounting Huge Pages File System...
    Nov 08 02:42:19 avalon systemd[1]: Starting Set Up Additional Binary Formats...
    Nov 08 02:42:19 avalon systemd[1]: Starting Setup Virtual Console...
    Nov 08 02:42:19 avalon systemd[1]: Mounting Debug File System...
    Nov 08 02:42:19 avalon systemd[1]: Starting Journal Service...
    Nov 08 02:42:19 avalon systemd[1]: Started Journal Service.
    Nov 08 02:42:19 avalon systemd[1]: Starting Syslog.
    Nov 08 02:42:19 avalon systemd[1]: Reached target Syslog.
    Nov 08 02:42:19 avalon systemd[1]: Starting home.automount.
    Nov 08 02:42:19 avalon systemd[1]: Set up automount home.automount.
    Nov 08 02:42:19 avalon systemd[1]: Started Apply Kernel Variables.
    Nov 08 02:42:19 avalon systemd-journal[151]: Journal started
    Nov 08 02:42:19 avalon systemd[1]: Mounting Arbitrary Executable File Formats File System...
    Nov 08 02:42:19 avalon systemd[1]: Started udev Coldplug all Devices.
    Nov 08 02:42:19 avalon systemd[1]: Started udev Kernel Device Manager.
    Nov 08 02:42:19 avalon systemd-udevd[142]: starting version 195
    Nov 08 02:42:19 avalon systemd[1]: Mounted Debug File System.
    Nov 08 02:42:19 avalon systemd[1]: Mounted Huge Pages File System.
    Nov 08 02:42:19 avalon systemd[1]: Mounted Arbitrary Executable File Formats File System.
    Nov 08 02:42:19 avalon systemd[1]: Mounted POSIX Message Queue File System.
    Nov 08 02:42:19 avalon kernel: EXT4-fs (sda5): re-mounted. Opts: (null)
    Nov 08 02:42:19 avalon systemd[1]: Started Remount Root and Kernel File Systems.
    Nov 08 02:42:19 avalon systemd[1]: Starting Local File Systems (Pre).
    Nov 08 02:42:19 avalon systemd[1]: Reached target Local File Systems (Pre).
    Nov 08 02:42:19 avalon systemd[1]: Mounting /tmp...
    Nov 08 02:42:19 avalon systemd[1]: tmp.mount: Directory /tmp to mount over is not empty, mounting anyway. (To see the over-mounted files, please manually mount the underlying file system to a secondary location.)
    Nov 08 02:42:19 avalon systemd[1]: Activating swap /swapfile...
    Nov 08 02:42:19 avalon systemd[1]: Started Set Up Additional Binary Formats.
    Nov 08 02:42:19 avalon systemd[1]: Mounted /tmp.
    Nov 08 02:42:19 avalon systemd[1]: Activated swap /swapfile.
    Nov 08 02:42:19 avalon systemd[1]: Starting Swap.
    Nov 08 02:42:19 avalon systemd[1]: Reached target Swap.
    Nov 08 02:42:19 avalon kernel: Adding 2097148k swap on /swapfile. Priority:-1 extents:5 across:2629632k
    Nov 08 02:42:19 avalon systemd[1]: Started Setup Virtual Console.
    Nov 08 02:42:20 avalon kernel: ACPI: bus type usb registered
    Nov 08 02:42:20 avalon kernel: usbcore: registered new interface driver usbfs
    Nov 08 02:42:20 avalon kernel: usbcore: registered new interface driver hub
    Nov 08 02:42:20 avalon kernel: usbcore: registered new device driver usb
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 1
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 19, io mem 0xf1a00000
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 42 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 43 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 44 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 45 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 46 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 47 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 48 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: irq 49 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: xHCI xhci_add_endpoint called for root hub
    Nov 08 02:42:20 avalon kernel: xHCI xhci_check_bandwidth called for root hub
    Nov 08 02:42:20 avalon kernel: hub 1-0:1.0: USB hub found
    Nov 08 02:42:20 avalon kernel: hub 1-0:1.0: 2 ports detected
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
    Nov 08 02:42:20 avalon kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
    Nov 08 02:42:20 avalon kernel: xHCI xhci_add_endpoint called for root hub
    Nov 08 02:42:20 avalon kernel: xHCI xhci_check_bandwidth called for root hub
    Nov 08 02:42:20 avalon kernel: hub 2-0:1.0: USB hub found
    Nov 08 02:42:20 avalon kernel: hub 2-0:1.0: 2 ports detected
    Nov 08 02:42:20 avalon kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
    Nov 08 02:42:20 avalon kernel: mei 0000:00:16.0: setting latency timer to 64
    Nov 08 02:42:20 avalon kernel: mei 0000:00:16.0: irq 50 for MSI/MSI-X
    Nov 08 02:42:20 avalon kernel: ACPI: Invalid Power Resource to register!
    Nov 08 02:42:20 avalon kernel: ACPI Warning:
    Nov 08 02:42:20 avalon kernel: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
    Nov 08 02:42:20 avalon kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Nov 08 02:42:20 avalon kernel: ACPI Warning: 0x0000000000000500-0x000000000000057f SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
    Nov 08 02:42:20 avalon kernel: ACPI Warning: 0x0000000000000500-0x000000000000057f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20120711/utaddress-251)
    Nov 08 02:42:20 avalon kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Nov 08 02:42:20 avalon kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
    Nov 08 02:42:20 avalon kernel: iTCO_vendor_support: vendor-support=0
    Nov 08 02:42:20 avalon kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    Nov 08 02:42:20 avalon kernel: iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
    Nov 08 02:42:20 avalon kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    Nov 08 02:42:20 avalon kernel: mei 0000:00:16.0: wd: failed to find the client
    Nov 08 02:42:20 avalon kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1a.0: setting latency timer to 64
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1a.0: EHCI Host Controller
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1a.0: debug port 2
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1a.0: irq 16, io mem 0xf1c0a000
    Nov 08 02:42:20 avalon kernel: wmi: Mapper loaded
    Nov 08 02:42:20 avalon kernel: input: PC Speaker as /devices/platform/pcspkr/input/input1
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    Nov 08 02:42:20 avalon kernel: hub 3-0:1.0: USB hub found
    Nov 08 02:42:20 avalon kernel: hub 3-0:1.0: 2 ports detected
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1d.0: setting latency timer to 64
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1d.0: EHCI Host Controller
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1d.0: debug port 2
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1d.0: irq 23, io mem 0xf1c09000
    Nov 08 02:42:20 avalon kernel: ACPI: Requesting acpi_cpufreq
    Nov 08 02:42:20 avalon kernel: thermal LNXTHERM:00: registered as thermal_zone0
    Nov 08 02:42:20 avalon kernel: ACPI: Thermal Zone [TZ00] (66 C)
    Nov 08 02:42:20 avalon kernel: ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    Nov 08 02:42:20 avalon kernel: hub 4-0:1.0: USB hub found
    Nov 08 02:42:20 avalon kernel: hub 4-0:1.0: 2 ports detected
    Nov 08 02:42:20 avalon kernel: ACPI Warning: 0x000000000000efa0-0x000000000000efbf SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
    Nov 08 02:42:20 avalon kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    Nov 08 02:42:20 avalon kernel: thermal LNXTHERM:01: registered as thermal_zone1
    Nov 08 02:42:20 avalon kernel: ACPI: Thermal Zone [TZ01] (66 C)
    Nov 08 02:42:20 avalon kernel: ACPI: Battery Slot [BAT0] (battery present)
    Nov 08 02:42:20 avalon kernel: input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2
    Nov 08 02:42:20 avalon kernel: ACPI: Power Button [PWRB]
    Nov 08 02:42:20 avalon kernel: input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    Nov 08 02:42:20 avalon kernel: ACPI: Sleep Button [SLPB]
    Nov 08 02:42:20 avalon kernel: input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input4
    Nov 08 02:42:20 avalon kernel: ACPI: Lid Switch [LID0]
    Nov 08 02:42:20 avalon kernel: input: Dell WMI hotkeys as /devices/virtual/input/input5
    Nov 08 02:42:20 avalon kernel: usb 1-1: new full-speed USB device number 2 using xhci_hcd
    Nov 08 02:42:20 avalon kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
    Nov 08 02:42:20 avalon kernel: ACPI: Power Button [PWRF]
    Nov 08 02:42:20 avalon kernel: ACPI: AC Adapter [ADP0] (on-line)
    Nov 08 02:42:20 avalon kernel: microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x15
    Nov 08 02:42:20 avalon kernel: sr0: scsi3-mmc drive: 24x/8x wr

  • [SOLVED] Laptop keyboard freezes randomly.

    I have Arch dual booted with Windows 8.1 on an Asus K53SM laptop.
    Laptop specs are:
    * Intel i5 2nd Gen @ 2.5 GHz
    * 8GB RAM
    * 750 GB Hard disk
    * nvidia GT630M 2GB
    Right after installing Arch, I installed GNOME as the DE and everything was working fine. Recently, I uninstalled GNOME and installed KDE. I'm experiencing random keyboard freezes. I've tested it with a USB keyboard, so it is not a hardware issue I guess.
    * The [<Super> + S] combination to display all workspaces works fine.
    * So does the <Alt> + F2, to write commands, but the keys don't work (so can't type anything there).
    These freezes are totally random, and the keyboard works fine after 1-2 minutes. Here is the output for Xorg.0.log ->
    [ 21.228]
    X.Org X Server 1.16.4
    Release Date: 2014-12-20
    [ 21.228] X Protocol Version 11, Revision 0
    [ 21.228] Build Operating System: Linux 3.17.6-1-ARCH x86_64
    [ 21.228] Current Operating System: Linux ape 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:44:05 CET 2015 x86_64
    [ 21.228] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=92ae3f1c-0f63-4de9-9323-487d50c0bd60 rw quiet splash usbcore.old_scheme_first=1
    [ 21.228] Build Date: 11 February 2015 08:10:00AM
    [ 21.228]
    [ 21.228] Current version of pixman: 0.32.6
    [ 21.228] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 21.228] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 21.228] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 15 20:18:09 2015
    [ 21.333] (==) Using config file: "/etc/X11/xorg.conf"
    [ 21.333] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 21.440] (==) ServerLayout "X.org Configured"
    [ 21.440] (**) |-->Screen "Screen0" (0)
    [ 21.440] (**) | |-->Monitor "Monitor0"
    [ 21.456] (**) | |-->Device "Card0"
    [ 21.456] (**) |-->Screen "Screen1" (1)
    [ 21.456] (**) | |-->Monitor "Monitor1"
    [ 21.456] (**) | |-->Device "Card1"
    [ 21.456] (**) |-->Input Device "Mouse0"
    [ 21.456] (**) |-->Input Device "Keyboard0"
    [ 21.456] (==) Automatically adding devices
    [ 21.456] (==) Automatically enabling devices
    [ 21.456] (==) Automatically adding GPU devices
    [ 21.679] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 21.679] Entry deleted from font path.
    [ 21.679] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 21.718] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 21.718] Entry deleted from font path.
    [ 21.718] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 21.728] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 21.728] Entry deleted from font path.
    [ 21.728] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 21.728] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 21.728] Entry deleted from font path.
    [ 21.728] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 21.728] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 21.728] Entry deleted from font path.
    [ 21.728] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 21.728] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 21.728] Entry deleted from font path.
    [ 21.728] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 21.728] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 21.728] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 21.728] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 21.728] (WW) Disabling Mouse0
    [ 21.728] (WW) Disabling Keyboard0
    [ 21.739] (II) Loader magic: 0x819d80
    [ 21.739] (II) Module ABI versions:
    [ 21.739] X.Org ANSI C Emulation: 0.4
    [ 21.739] X.Org Video Driver: 18.0
    [ 21.739] X.Org XInput driver : 21.0
    [ 21.739] X.Org Server Extension : 8.0
    [ 21.742] (EE) systemd-logind: failed to get session: PID 301 does not belong to any known session
    [ 21.743] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 21.745] (--) PCI:*(0:0:2:0) 8086:0126:1043:212e rev 9, Mem @ 0xdc400000/4194304, 0xb0000000/268435456, I/O @ 0x0000e000/64
    [ 21.746] (--) PCI: (0:1:0:0) 10de:0de9:1043:212e rev 161, Mem @ 0xdb000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
    [ 21.746] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 21.763] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 21.763] (II) LoadModule: "glx"
    [ 21.856] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 22.220] (II) Module glx: vendor="X.Org Foundation"
    [ 22.220] compiled for 1.16.4, module version = 1.0.0
    [ 22.220] ABI class: X.Org Server Extension, version 8.0
    [ 22.220] (==) AIGLX enabled
    [ 22.220] (II) LoadModule: "intel"
    [ 22.220] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 22.286] (II) Module intel: vendor="X.Org Foundation"
    [ 22.286] compiled for 1.16.3, module version = 2.99.917
    [ 22.286] Module class: X.Org Video Driver
    [ 22.286] ABI class: X.Org Video Driver, version 18.0
    [ 22.286] (II) LoadModule: "nvidia"
    [ 22.286] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 22.367] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 22.367] compiled for 4.0.2, module version = 1.0.0
    [ 22.367] Module class: X.Org Video Driver
    [ 22.374] (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
    [ 22.375] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    [ 22.375] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    [ 22.375] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    [ 22.375] (II) NVIDIA dlloader X Driver 346.35 Sat Jan 10 20:32:18 PST 2015
    [ 22.375] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 22.386] (++) using VT number 7
    [ 22.429] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20140905
    [ 22.483] (II) Loading sub module "fb"
    [ 22.483] (II) LoadModule: "fb"
    [ 22.483] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 22.502] (II) Module fb: vendor="X.Org Foundation"
    [ 22.502] compiled for 1.16.4, module version = 1.0.0
    [ 22.502] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 22.502] (II) Loading sub module "wfb"
    [ 22.502] (II) LoadModule: "wfb"
    [ 22.502] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 22.510] (II) Module wfb: vendor="X.Org Foundation"
    [ 22.511] compiled for 1.16.4, module version = 1.0.0
    [ 22.511] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 22.511] (II) Loading sub module "ramdac"
    [ 22.511] (II) LoadModule: "ramdac"
    [ 22.511] (II) Module "ramdac" already built-in
    [ 22.704] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 3000
    [ 22.704] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 22.704] (==) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 22.704] (==) intel(0): RGB weight 888
    [ 22.704] (==) intel(0): Default visual is TrueColor
    [ 22.705] (II) intel(0): Output LVDS1 using monitor section Monitor0
    [ 22.705] (--) intel(0): Found backlight control interface acpi_video0 (type 'firmware') for output LVDS1
    [ 22.705] (II) intel(0): Enabled output LVDS1
    [ 22.705] (II) intel(0): Output VGA1 has no monitor section
    [ 22.705] (II) intel(0): Enabled output VGA1
    [ 22.705] (II) intel(0): Output HDMI1 has no monitor section
    [ 22.705] (II) intel(0): Enabled output HDMI1
    [ 22.705] (II) intel(0): Output DP1 has no monitor section
    [ 22.705] (II) intel(0): Enabled output DP1
    [ 22.705] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    [ 22.706] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 22.706] (II) intel(0): Enabled output VIRTUAL1
    [ 22.706] (--) intel(0): Output LVDS1 using initial mode 1366x768 on pipe 0
    [ 22.706] (==) intel(0): TearFree disabled
    [ 22.706] (==) intel(0): DPI set to (96, 96)
    [ 22.706] (II) Loading sub module "dri2"
    [ 22.706] (II) LoadModule: "dri2"
    [ 22.706] (II) Module "dri2" already built-in
    [ 22.706] (II) Loading sub module "present"
    [ 22.706] (II) LoadModule: "present"
    [ 22.706] (II) Module "present" already built-in
    [ 22.706] (==) NVIDIA(1): Depth 24, (==) framebuffer bpp 32
    [ 22.706] (==) NVIDIA(1): RGB weight 888
    [ 22.706] (==) NVIDIA(1): Default visual is TrueColor
    [ 22.706] (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
    [ 22.740] (**) NVIDIA(1): Enabling 2D acceleration
    [ 22.740] (EE) NVIDIA(1): Failed to initialize the GLX module; please check in your X
    [ 22.740] (EE) NVIDIA(1): log file that the GLX module has been loaded in your X
    [ 22.740] (EE) NVIDIA(1): server, and that the module is the NVIDIA GLX module. If
    [ 22.740] (EE) NVIDIA(1): you continue to encounter problems, Please try
    [ 22.740] (EE) NVIDIA(1): reinstalling the NVIDIA driver.
    [ 24.454] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24.455] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 24.456] (II) NVIDIA(1): NVIDIA GPU GeForce GT 630M (GF108) at PCI:1:0:0 (GPU-0)
    [ 24.456] (--) NVIDIA(1): Memory: 2097152 kBytes
    [ 24.456] (--) NVIDIA(1): VideoBIOS: 70.08.92.00.fa
    [ 24.456] (II) NVIDIA(1): Detected PCI Express Link width: 16X
    [ 24.461] (--) NVIDIA(1): Valid display device(s) on GeForce GT 630M at PCI:1:0:0
    [ 24.461] (--) NVIDIA(1): CRT-0 (boot, connected)
    [ 24.461] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
    [ 24.461] (**) NVIDIA(1): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 24.461] (**) NVIDIA(1): device CRT-0 (Using EDID frequencies has been enabled on
    [ 24.461] (**) NVIDIA(1): all display devices.)
    [ 24.463] (==) NVIDIA(1):
    [ 24.463] (==) NVIDIA(1): No modes were requested; the default mode "nvidia-auto-select"
    [ 24.463] (==) NVIDIA(1): will be used as the requested mode.
    [ 24.463] (==) NVIDIA(1):
    [ 24.463] (II) NVIDIA(1): Validated MetaModes:
    [ 24.463] (II) NVIDIA(1): "CRT-0:nvidia-auto-select"
    [ 24.463] (II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
    [ 24.473] (WW) NVIDIA(1): CRT-0 does not have an EDID, or its EDID does not contain a
    [ 24.473] (WW) NVIDIA(1): maximum image size; cannot compute DPI from CRT-0's EDID.
    [ 24.473] (==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
    [ 24.473] (--) Depth 24 pixmap format is 32 bpp
    [ 24.515] (II) intel(0): SNA initialized with Sandybridge (gen6, gt2) backend
    [ 24.515] (==) intel(0): Backing store enabled
    [ 24.515] (==) intel(0): Silken mouse enabled
    [ 24.516] (II) intel(0): HW Cursor enabled
    [ 24.516] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 24.524] (==) intel(0): DPMS enabled
    [ 24.525] (==) intel(0): display hotplug detection enabled
    [ 24.525] (II) intel(0): [DRI2] Setup complete
    [ 24.525] (II) intel(0): [DRI2] DRI driver: i965
    [ 24.525] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 24.525] (II) intel(0): direct rendering: DRI2 enabled
    [ 24.525] (II) intel(0): hardware support for Present enabled
    [ 24.525] (--) RandR disabled
    [ 24.525] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
    [ 24.525] (II) NVIDIA: access.
    [ 24.529] (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 24.529] (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    [ 24.529] (II) NVIDIA(1): configuration option may not be set correctly. When the
    [ 24.530] (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    [ 24.530] (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    [ 24.530] (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    [ 24.530] (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 24.530] (II) NVIDIA(1): Config Options in the README.
    [ 24.536] (II) NVIDIA(1): Setting mode "CRT-0:nvidia-auto-select"
    [ 24.649] (==) NVIDIA(1): Disabling shared memory pixmaps
    [ 24.649] (==) NVIDIA(1): Backing store enabled
    [ 24.649] (==) NVIDIA(1): Silken mouse enabled
    [ 24.649] (==) NVIDIA(1): DPMS enabled
    [ 24.663] (II) Loading sub module "dri2"
    [ 24.663] (II) LoadModule: "dri2"
    [ 24.663] (II) Module "dri2" already built-in
    [ 24.663] (II) NVIDIA(1): [DRI2] Setup complete
    [ 24.663] (II) NVIDIA(1): [DRI2] VDPAU driver: nvidia
    [ 24.663] (--) RandR disabled
    [ 24.872] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 24.872] (II) AIGLX: enabled GLX_ARB_create_context
    [ 24.872] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 24.872] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 24.872] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 24.872] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 24.872] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 24.872] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 24.872] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 24.872] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 24.872] (II) AIGLX: Loaded and initialized i965
    [ 24.872] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 24.873] (II) AIGLX: Screen 1 is not DRI2 capable
    [ 24.873] (EE) AIGLX: reverting to software rendering
    [ 25.619] (II) AIGLX: Loaded and initialized swrast
    [ 25.619] (II) GLX: Initialized DRISWRAST GL provider for screen 1
    [ 25.634] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 25.640] (II) intel(0): Setting screen physical size to 361 x 203
    [ 25.988] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 25.988] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 25.988] (II) LoadModule: "evdev"
    [ 25.988] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 26.030] (II) Module evdev: vendor="X.Org Foundation"
    [ 26.030] compiled for 1.16.2, module version = 2.9.1
    [ 26.030] Module class: X.Org XInput Driver
    [ 26.030] ABI class: X.Org XInput driver, version 21.0
    [ 26.030] (II) Using input driver 'evdev' for 'Power Button'
    [ 26.030] (**) Power Button: always reports core events
    [ 26.031] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 26.031] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 26.031] (--) evdev: Power Button: Found keys
    [ 26.031] (II) evdev: Power Button: Configuring as keyboard
    [ 26.031] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event3"
    [ 26.031] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 26.031] (**) Option "xkb_rules" "evdev"
    [ 26.031] (**) Option "xkb_model" "pc104"
    [ 26.031] (**) Option "xkb_layout" "us"
    [ 26.086] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
    [ 26.086] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 26.086] (II) Using input driver 'evdev' for 'Video Bus'
    [ 26.086] (**) Video Bus: always reports core events
    [ 26.086] (**) evdev: Video Bus: Device: "/dev/input/event6"
    [ 26.086] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 26.086] (--) evdev: Video Bus: Found keys
    [ 26.086] (II) evdev: Video Bus: Configuring as keyboard
    [ 26.086] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input14/event6"
    [ 26.086] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 26.086] (**) Option "xkb_rules" "evdev"
    [ 26.086] (**) Option "xkb_model" "pc104"
    [ 26.086] (**) Option "xkb_layout" "us"
    [ 26.087] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
    [ 26.087] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 26.087] (II) Using input driver 'evdev' for 'Video Bus'
    [ 26.087] (**) Video Bus: always reports core events
    [ 26.087] (**) evdev: Video Bus: Device: "/dev/input/event5"
    [ 26.087] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 26.087] (--) evdev: Video Bus: Found keys
    [ 26.087] (II) evdev: Video Bus: Configuring as keyboard
    [ 26.087] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:4c/LNXVIDEO:00/input/input13/event5"
    [ 26.087] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
    [ 26.087] (**) Option "xkb_rules" "evdev"
    [ 26.088] (**) Option "xkb_model" "pc104"
    [ 26.088] (**) Option "xkb_layout" "us"
    [ 26.088] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
    [ 26.088] (II) No input driver specified, ignoring this device.
    [ 26.088] (II) This device may have been added with another device file.
    [ 26.089] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
    [ 26.089] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
    [ 26.089] (II) Using input driver 'evdev' for 'Sleep Button'
    [ 26.089] (**) Sleep Button: always reports core events
    [ 26.089] (**) evdev: Sleep Button: Device: "/dev/input/event2"
    [ 26.089] (--) evdev: Sleep Button: Vendor 0 Product 0x3
    [ 26.089] (--) evdev: Sleep Button: Found keys
    [ 26.089] (II) evdev: Sleep Button: Configuring as keyboard
    [ 26.089] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6/event2"
    [ 26.089] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
    [ 26.089] (**) Option "xkb_rules" "evdev"
    [ 26.089] (**) Option "xkb_model" "pc104"
    [ 26.089] (**) Option "xkb_layout" "us"
    [ 26.090] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 26.090] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 26.090] (EE) /dev/dri/card1: failed to set DRM interface version 1.4: Permission denied
    [ 26.091] (II) config/udev: Adding input device USB 2.0 UVC VGA WebCam (/dev/input/event12)
    [ 26.091] (**) USB 2.0 UVC VGA WebCam: Applying InputClass "evdev keyboard catchall"
    [ 26.091] (II) Using input driver 'evdev' for 'USB 2.0 UVC VGA WebCam'
    [ 26.091] (**) USB 2.0 UVC VGA WebCam: always reports core events
    [ 26.091] (**) evdev: USB 2.0 UVC VGA WebCam: Device: "/dev/input/event12"
    [ 26.091] (--) evdev: USB 2.0 UVC VGA WebCam: Vendor 0x13d3 Product 0x5710
    [ 26.091] (--) evdev: USB 2.0 UVC VGA WebCam: Found keys
    [ 26.091] (II) evdev: USB 2.0 UVC VGA WebCam: Configuring as keyboard
    [ 26.091] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/input/input19/event12"
    [ 26.091] (II) XINPUT: Adding extended input device "USB 2.0 UVC VGA WebCam" (type: KEYBOARD, id 10)
    [ 26.091] (**) Option "xkb_rules" "evdev"
    [ 26.091] (**) Option "xkb_model" "pc104"
    [ 26.091] (**) Option "xkb_layout" "us"
    [ 26.092] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event9)
    [ 26.092] (II) No input driver specified, ignoring this device.
    [ 26.092] (II) This device may have been added with another device file.
    [ 26.093] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
    [ 26.093] (II) No input driver specified, ignoring this device.
    [ 26.093] (II) This device may have been added with another device file.
    [ 26.093] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event11)
    [ 26.093] (II) No input driver specified, ignoring this device.
    [ 26.093] (II) This device may have been added with another device file.
    [ 26.094] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event13)
    [ 26.094] (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 26.094] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
    [ 26.094] (**) Logitech USB Optical Mouse: always reports core events
    [ 26.094] (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event13"
    [ 26.094] (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05a
    [ 26.094] (--) evdev: Logitech USB Optical Mouse: Found 3 mouse buttons
    [ 26.094] (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
    [ 26.094] (--) evdev: Logitech USB Optical Mouse: Found relative axes
    [ 26.094] (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
    [ 26.094] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
    [ 26.094] (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
    [ 26.094] (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 26.094] (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 26.094] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1:1.0/0003:046D:C05A.0001/input/input20/event13"
    [ 26.094] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 11)
    [ 26.095] (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
    [ 26.095] (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
    [ 26.095] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
    [ 26.095] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
    [ 26.095] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
    [ 26.096] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse1)
    [ 26.096] (II) No input driver specified, ignoring this device.
    [ 26.096] (II) This device may have been added with another device file.
    [ 26.096] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event8)
    [ 26.096] (**) Asus WMI hotkeys: Applying InputClass "evdev keyboard catchall"
    [ 26.096] (II) Using input driver 'evdev' for 'Asus WMI hotkeys'
    [ 26.096] (**) Asus WMI hotkeys: always reports core events
    [ 26.096] (**) evdev: Asus WMI hotkeys: Device: "/dev/input/event8"
    [ 26.096] (--) evdev: Asus WMI hotkeys: Vendor 0 Product 0
    [ 26.096] (--) evdev: Asus WMI hotkeys: Found keys
    [ 26.096] (II) evdev: Asus WMI hotkeys: Configuring as keyboard
    [ 26.096] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input15/event8"
    [ 26.096] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 12)
    [ 26.096] (**) Option "xkb_rules" "evdev"
    [ 26.096] (**) Option "xkb_model" "pc104"
    [ 26.096] (**) Option "xkb_layout" "us"
    [ 26.097] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 26.097] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 26.097] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 26.097] (**) AT Translated Set 2 keyboard: always reports core events
    [ 26.097] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 26.098] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 26.098] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 26.098] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 26.098] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 26.098] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
    [ 26.098] (**) Option "xkb_rules" "evdev"
    [ 26.098] (**) Option "xkb_model" "pc104"
    [ 26.098] (**) Option "xkb_layout" "us"
    [ 26.099] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event7)
    [ 26.099] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 26.099] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
    [ 26.099] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
    [ 26.099] (II) LoadModule: "synaptics"
    [ 26.099] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
    [ 26.109] (II) Module synaptics: vendor="X.Org Foundation"
    [ 26.109] compiled for 1.16.0, module version = 1.8.1
    [ 26.109] Module class: X.Org XInput Driver
    [ 26.109] ABI class: X.Org XInput driver, version 21.0
    [ 26.109] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
    [ 26.109] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 26.109] (**) Option "Device" "/dev/input/event7"
    [ 26.210] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
    [ 26.210] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5762 (res 52)
    [ 26.210] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4902 (res 83)
    [ 26.210] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    [ 26.210] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
    [ 26.210] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
    [ 26.210] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 26.210] (**) Option "TapButton1" "1"
    [ 26.210] (**) Option "TapButton2" "2"
    [ 26.210] (**) Option "TapButton3" "3"
    [ 26.210] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 26.210] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 26.263] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio4/input/input12/event7"
    [ 26.263] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 14)
    [ 26.263] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
    [ 26.263] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
    [ 26.263] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.036
    [ 26.264] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 26.264] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
    [ 26.264] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 26.264] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 26.264] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 26.264] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 26.265] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
    [ 26.265] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 26.265] (II) No input driver specified, ignoring this device.
    [ 26.265] (II) This device may have been added with another device file.
    [ 26.282] removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
    [ 26.282] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 26.282] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 26.282] (EE) /dev/dri/card1: failed to set DRM interface version 1.4: Permission denied
    [ 81.255] (II) intel(0): EDID vendor "AUO", prod id 9964
    [ 81.255] (II) intel(0): Printing DDC gathered Modelines:
    [ 81.255] (II) intel(0): Modeline "1366x768"x0.0 71.80 1366 1414 1446 1526 768 771 777 784 -hsync -vsync (47.1 kHz eP)
    [ 81.277] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 81.293] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 81.644] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 81.660] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 81.678] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 84.668] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 84.685] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 86.539] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 2962.717] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 2962.734] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 2966.160] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 2966.176] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 3045.352] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 3045.370] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 3066.487] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 3066.504] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4507.909] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4507.925] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4568.870] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4568.887] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4749.685] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4749.702] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4841.172] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 4841.189] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 5067.684] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 5067.701] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 5098.091] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 5098.108] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 5231.697] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 5231.715] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 7726.903] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 7726.920] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 7989.858] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 7989.875] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8118.003] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8118.020] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8525.573] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8525.590] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8645.496] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8645.513] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8787.791] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 8787.808] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10010.206] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10010.223] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10511.439] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10511.456] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10576.580] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10576.597] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10758.287] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 10758.304] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 12833.372] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 12833.389] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 14722.424] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 14722.441] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 15499.091] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 15499.108] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 16138.293] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 16138.309] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 16563.842] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 16563.858] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 17097.871] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 17097.888] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 17958.793] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 17958.810] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 18046.490] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 18046.506] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 18286.639] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 18286.655] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 18857.140] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 18857.157] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 19683.981] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 19683.997] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 19746.465] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 19746.483] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 19801.499] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 19801.516] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24516.593] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24516.610] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24714.424] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24714.440] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24733.954] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24733.970] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24794.748] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 24795.935] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 24795.935] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 24795.971] (II) NVIDIA(1): Setting mode "CRT-0:nvidia-auto-select"
    [ 24796.039] (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 24796.039] (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    [ 24796.039] (II) NVIDIA(1): configuration option may not be set correctly. When the
    [ 24796.039] (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    [ 24796.039] (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    [ 24796.039] (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    [ 24796.039] (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 24796.040] (II) NVIDIA(1): Config Options in the README.
    [ 24796.057] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 24796.061] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 25764.817] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 25766.007] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 25766.007] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 25766.036] (II) NVIDIA(1): Setting mode "CRT-0:nvidia-auto-select"
    [ 25766.104] (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 25766.104] (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    [ 25766.104] (II) NVIDIA(1): configuration option may not be set correctly. When the
    [ 25766.104] (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    [ 25766.104] (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    [ 25766.104] (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    [ 25766.104] (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 25766.104] (II) NVIDIA(1): Config Options in the README.
    [ 25766.122] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 25766.129] (EE) evdev: Logitech USB Optical Mouse: Unable to open evdev device "/dev/input/event13".
    [ 25766.129] [dix] couldn't enable device 11
    [ 25766.129] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 25766.132] (II) config/udev: removing device Logitech USB Optical Mouse
    [ 25766.132] (II) evdev: Logitech USB Optical Mouse: Close
    [ 25766.132] (II) UnloadModule: "evdev"
    [ 27662.047] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 27663.314] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 27663.314] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 27663.345] (II) NVIDIA(1): Setting mode "CRT-0:nvidia-auto-select"
    [ 27663.413] (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 27663.413] (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    [ 27663.413] (II) NVIDIA(1): configuration option may not be set correctly. When the
    [ 27663.413] (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    [ 27663.413] (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    [ 27663.413] (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    [ 27663.413] (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 27663.413] (II) NVIDIA(1): Config Options in the README.
    [ 27663.431] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 27663.439] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    [ 27694.770] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event13)
    [ 27694.770] (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 27694.770] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
    [ 27694.770] (**) Logitech USB Optical Mouse: always reports core events
    [ 27694.770] (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event13"
    [ 27694.770] (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc05a
    [ 27694.770] (--) evdev: Logitech USB Optical Mouse: Found 3 mouse buttons
    [ 27694.770] (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
    [ 27694.770] (--) evdev: Logitech USB Optical Mouse: Found relative axes
    [ 27694.770] (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
    [ 27694.770] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
    [ 27694.770] (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
    [ 27694.770] (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 27694.770] (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 27694.770] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.1/4-1.1:1.0/0003:046D:C05A.0002/input/input39/event13"
    [ 27694.770] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 11)
    [ 27694.771] (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
    [ 27694.771] (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
    [ 27694.771] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
    [ 27694.771] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
    [ 27694.771] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
    [ 27694.771] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse1)
    [ 27694.771] (II) No input driver specified, ignoring this device.
    [ 27694.771] (II) This device may have been added with another device file.
    [ 28826.102] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 28826.119] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 28869.273] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 28869.290] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 29665.856] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 29665.873] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 29759.751] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 29759.768] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 30246.231] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 30246.248] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 31539.152] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 31539.168] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 33130.297] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 33130.314] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 35115.805] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 35115.822] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 36739.995] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 36740.011] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37099.972] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37099.988] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37115.693] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37115.709] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37292.799] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37292.816] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37896.583] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 37896.600] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 40947.452] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 40947.469] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 40999.729] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 40999.746] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 41027.146] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 41027.163] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 41198.146] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 41198.162] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 41405.365] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 41405.382] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 43125.113] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 43125.128] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 43212.374] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 43212.391] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 44006.946] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 44008.163] (II) AIGLX: Resuming AIGLX clients after VT switch
    [ 44008.163] (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 44008.193] (II) NVIDIA(1): Setting mode "CRT-0:nvidia-auto-select"
    [ 44008.262] (II) NVIDIA(1): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 44008.262] (II) NVIDIA(1): may not be running or the "AcpidSocketPath" X
    [ 44008.262] (II) NVIDIA(1): configuration option may not be set correctly. When the
    [ 44008.262] (II) NVIDIA(1): ACPI event daemon is available, the NVIDIA X driver will
    [ 44008.262] (II) NVIDIA(1): try to use it to receive ACPI event notifications. For
    [ 44008.262] (II) NVIDIA(1): details, please see the "ConnectToAcpid" and
    [ 44008.262] (II) NVIDIA(1): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 44008.262] (II) NVIDIA(1): Config Options in the README.
    [ 44008.280] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-0
    [ 44008.287] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
    Please help me to resolve this.
    Last edited by vortex_ape (2015-02-22 14:39:47)

    I haven't been experiencing the issue for some hours.
    The issue occurred more frequently when I was compiling something. When I tried to reproduce the issue, it didn't occur.
    The interesting thing to note is that I updated the system twice in the past 2 days. I checked the pacman log and saw that xorg-server-common, xorg-server, xorg-server-devel were among the upgraded packages. I guess they were causing the problem.
    I'll need to test for a couple of days though before I consider the issue to be resolved. I'll update if the issue persists.

  • Random circles in prints from Photoshop

    How do I eliminate these weird random circles, varying sizes +/- 1/2 inch with about .5 line weight and no fill that do not display in my print preview and are not in my image file, from my prints with Photoshop?

    Please provide pertinent details (version, OS, hardware, print process, …) and an example (scan of the print, screenshot of the image with Layers Panel visible).

  • X randomly crashing, cannot ctrl-alt-bksp

    The first crash was a couple of months ago, and I will admit I just ignored it, especially since it didn't crash again for about a month. Then I was starting to think I might have a problem and did a bit of research. I thought turning off compositing might be the solution so I did that and it still crashed about a week later. The crashes were so dispersed that I just forgot about them, but I think I have to do something now.
    Recently I installed xdm. The problem is, now when X crashes, xdm tries to get X to run again, and it goes into an endless cycle of crashes. Ctrl-Alt-Backspace does not work, Ctrl-Alt-F1 does not bring me into a terminal, and manually powering off is the only way to get out of it. Before I installed xdm; after it crashes I can Ctrl-Alt-F1 to go into a virtual terminal and reboot. (Rebooting seemed to be the only way to get it working. There were no X or xorg processes running after the crash to kill, and I couldn't startx again.)
    I also noticed that I'm definately not the only one with this problem, but I can't seem to find a solution anywhere (that works for me):
    http://bbs.archlinux.org/viewtopic.php?id=56079
    http://bbs.archlinux.org/viewtopic.php?id=55071
    http://bbs.archlinux.org/viewtopic.php?id=54733
    http://bbs.archlinux.org/viewtopic.php?id=58389
    http://bbs.archlinux.org/viewtopic.php?id=55416
    No, I don't have ndisswrapper. (I have a laptop but I never use wireless so I haven't set it up yet.)
    I don't believe this is a hardware problem, because I run Windows on the same computer and have never had this problem on it.
    Also I should note that now X is slow to start. Before (a couple of years ago) I could type startx and then I'd immediately be in X, but now the screen turns black and flickers a little before going into X. X has had this problem ever since I returned to Linux.
    While it is going to be hard to find an immediate solution to this, does anoyone know how to get the magic sysreq key working in Arch? I have a very good feeling that the magic sysreq key could save me from manually turning off the power, but it doesn't seem to work for some reason. Would I need to compile a custom kernel? (I sure hope not)
    xorg.conf:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Touchpad" "SendCoreEvents"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "extmod"
    Load "record"
    Load "GLcore"
    Load "dri"
    Load "glx"
    Load "xtrap"
    Load "dbe"
    Load "freetype"
    Load "synaptics"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc105"
    Option "Xkblayout" "us"
    #Option "Xkblayout" "dvorak"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/input/mouse0"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    Option "SHMConfig" "on"
    EndSection
    Section "Monitor"
    DisplaySize 336 210 # mm
    Identifier "Monitor0"
    VendorName "LPL"
    ModelName "LPL0000"
    HorizSync 28.0 - 96.0
    VertRefresh 50.0 - 75.0
    #This no longer seems to work, must startx with DPI arg
    #Option "UseEdidDpi" "false"
    #Option "DCC" "no"
    #Option "DPI" "96 x 96"
    DisplaySize 338 212
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "CacheLines" # <i>
    #Option "Dac6Bit" # [<bool>]
    #Option "DRI" # [<bool>]
    Option "NoDDC" "true" # [<bool>]
    #Option "ShowCache" # [<bool>]
    #Option "XvMCSurfaces" # <i>
    #Option "PageFlip" # [<bool>]
    #Option "DPI" "96 x 96"
    Identifier "Card0"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x800"
    EndSubSection
    EndSection
    #Compositing may cause random crashing
    #Section "Extensions"
    # Option "Composite" "Enable"
    #EndSection
    $ lscpi
    00:00.0 Host bridge: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub (rev 03)
    00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)
    00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)
    00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)
    00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)
    00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)
    00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)
    00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)
    00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)
    00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)
    00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)
    00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)
    00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)
    00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)
    00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)
    02:00.0 Ethernet controller: Intel Corporation 82573L Gigabit Ethernet Controller
    05:00.0 Network controller: Intel Corporation PRO/Wireless 3945ABG Network Connection (rev 02)
    07:06.0 CardBus bridge: Texas Instruments PCIxx12 Cardbus Controller
    07:06.1 FireWire (IEEE 1394): Texas Instruments PCIxx12 OHCI Compliant IEEE 1394 Host Controller
    07:06.2 Mass storage controller: Texas Instruments 5-in-1 Multimedia Card Reader (SD/MMC/MS/MS PRO/xD)
    07:06.3 SD Host controller: Texas Instruments PCIxx12 SDA Standard Compliant SD Host Controller
    I have saved my xorg logs from right after the crash, but I don't see anything funny in them (well I'm not really the person to ask) and they are too big to fit in a post. If they are required I can try to find some way to show them.
    Last edited by sokuban (2008-11-21 23:57:35)

    Hi
    Did that fix you?
    I have been having the issue for a while, seems pretty random though I suspect virtual-box and/or wine to be tricker, but I have seen it crash without either, I think.
    Anyways, black screen, lose keyboard, cold boot.
    gnome, nvidia 177.82,
    2.6.27-ARCH #1 SMP PREEMPT Fri Nov 28 10:56:24 UTC 2008 i686 AMD Athlon(tm) 64 X2 Dual Core Processor 5200+ AuthenticAMD
    Xorg.0.log.old
    X.Org X Server 1.5.3
    Release Date: 5 November 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.27-ARCH i686
    Current Operating System: Linux abbit 2.6.27-ARCH #1 SMP PREEMPT Fri Nov 28 10:56:24 UTC 2008 i686
    Build Date: 05 December 2008 09:10:55PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Dec 7 01:22:37 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd' or 'mouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Loader magic: 0x81d5900
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 4.1
    X.Org XInput driver : 2.1
    X.Org Server Extension : 1.1
    X.Org Font Renderer : 0.6
    (II) Loader running on linux
    (--) using VT number 7
    (--) PCI:*(0@1:0:0) nVidia Corporation G80 [GeForce 8800 GTS] rev 162, Mem @ 0xfa000000/0, 0xe0000000/0, 0xf8000000/0, I/O @ 0x0000ac00/0, BIOS @ 0x????????/131072
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded by default.
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Server Extension
    (II) NVIDIA GLX Module 177.82 Tue Nov 4 14:03:48 PST 2008
    (II) Loading extension GLX
    (II) LoadModule: "xtrap"
    (II) Loading /usr/lib/xorg/modules/extensions//libxtrap.so
    (II) Module xtrap: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DEC-XTRAP
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 1.5.3, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.6
    (II) Loading font FreeType
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.0
    Module class: X.Org Video Driver
    (II) NVIDIA dlloader X Driver 177.82 Tue Nov 4 13:42:45 PST 2008
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01@00:00:0
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "wfb"
    (II) LoadModule: "wfb"
    (II) Loading /usr/lib/xorg/modules//libwfb.so
    (II) Module wfb: vendor="X.Org Foundation"
    compiled for 1.5.3, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Option "TripleBuffer" "True"
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
    (II) NVIDIA(0): enabled.
    (II) NVIDIA(0): NVIDIA GPU GeForce 8800 GTS (G80) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 327680 kBytes
    (--) NVIDIA(0): VideoBIOS: 60.80.0d.00.02
    (II) NVIDIA(0): Detected PCI Express Link width: 16X
    (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce 8800 GTS at PCI:1:0:0:
    (--) NVIDIA(0): LG L1900R (DFP-1)
    (--) NVIDIA(0): LG L1900R (DFP-1): 330.0 MHz maximum pixel clock
    (--) NVIDIA(0): LG L1900R (DFP-1): Internal Dual Link TMDS
    (II) NVIDIA(0): Assigned Display Device: DFP-1
    (==) NVIDIA(0):
    (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    (==) NVIDIA(0): will be used as the requested mode.
    (==) NVIDIA(0):
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "nvidia-auto-select"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    (--) NVIDIA(0): DPI set to (85, 86); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [5] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [6] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [7] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [8] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [9] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [10] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [11] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [12] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [13] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [14] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [15] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [16] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [17] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [18] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [19] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [20] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [21] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [22] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [23] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) NVIDIA(0): Initialized GPU GART.
    (II) NVIDIA(0): Unable to connect to the ACPI daemon; the ACPI daemon may not
    (II) NVIDIA(0): be running or the "AcpidSocketPath" X configuration option
    (II) NVIDIA(0): may not be set correctly. When the ACPI daemon is
    (II) NVIDIA(0): available, the NVIDIA X driver can use it to receive ACPI
    (II) NVIDIA(0): events. For details, please see the "ConnectToAcpid" and
    (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    (II) NVIDIA(0): Config Options in the README.
    (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (**) Option "dpms" "True"
    (**) NVIDIA(0): DPMS enabled
    (II) Loading extension NV-CONTROL
    (II) Loading extension XINERAMA
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) Initializing extension GLX
    (II) config/hal: Adding input device Logitech USB Gaming Mouse
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.5.2, module version = 2.0.7
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 2.1
    (**) Logitech USB Gaming Mouse: always reports core events
    (**) Logitech USB Gaming Mouse: Device: "/dev/input/event2"
    (II) Logitech USB Gaming Mouse: Found x and y relative axes
    (II) Logitech USB Gaming Mouse: Found mouse buttons
    (II) Logitech USB Gaming Mouse: Configuring as mouse
    (II) XINPUT: Adding extended input device "Logitech USB Gaming Mouse" (type: MOUSE)
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "base"
    (**) AT Translated Set 2 keyboard: xkb_rules: "base"
    (**) Option "xkb_model" "evdev"
    (**) AT Translated Set 2 keyboard: xkb_model: "evdev"
    (**) Option "xkb_layout" "dk"
    (**) AT Translated Set 2 keyboard: xkb_layout: "dk"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Found mouse buttons
    (II) Macintosh mouse button emulation: Configuring as mouse
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (II) NVIDIA(0): Initialized GPU GART.
    Backtrace:
    0: /usr/bin/X(xorg_backtrace+0x3b) [0x813017b]
    1: /usr/bin/X(xf86SigHandler+0x51) [0x80d8cb1]
    2: [0xb7fc8400]
    Fatal server error:
    Caught signal 11. Server aborting
    (II) Logitech USB Gaming Mouse: Close
    (II) UnloadModule: "evdev"
    (II) AT Translated Set 2 keyboard: Close
    (II) UnloadModule: "evdev"
    (II) Macintosh mouse button emulation: Close
    (II) UnloadModule: "evdev"
    00:00.0 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
    00:00.1 RAM memory: nVidia Corporation C51 Memory Controller 0 (rev a2)
    00:00.2 RAM memory: nVidia Corporation C51 Memory Controller 1 (rev a2)
    00:00.3 RAM memory: nVidia Corporation C51 Memory Controller 5 (rev a2)
    00:00.4 RAM memory: nVidia Corporation C51 Memory Controller 4 (rev a2)
    00:00.5 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
    00:00.6 RAM memory: nVidia Corporation C51 Memory Controller 3 (rev a2)
    00:00.7 RAM memory: nVidia Corporation C51 Memory Controller 2 (rev a2)
    00:04.0 PCI bridge: nVidia Corporation C51 PCI Express Bridge (rev a1)
    00:08.0 RAM memory: nVidia Corporation MCP55 Memory Controller (rev a1)
    00:09.0 ISA bridge: nVidia Corporation MCP55 LPC Bridge (rev a2)
    00:09.1 SMBus: nVidia Corporation MCP55 SMBus (rev a2)
    00:0a.0 USB Controller: nVidia Corporation MCP55 USB Controller (rev a1)
    00:0a.1 USB Controller: nVidia Corporation MCP55 USB Controller (rev a2)
    00:0c.0 IDE interface: nVidia Corporation MCP55 IDE (rev a1)
    00:0d.0 IDE interface: nVidia Corporation MCP55 SATA Controller (rev a2)
    00:0d.1 IDE interface: nVidia Corporation MCP55 SATA Controller (rev a2)
    00:0d.2 IDE interface: nVidia Corporation MCP55 SATA Controller (rev a2)
    00:0e.0 PCI bridge: nVidia Corporation MCP55 PCI bridge (rev a2)
    00:0e.1 Audio device: nVidia Corporation MCP55 High Definition Audio (rev a2)
    00:10.0 Bridge: nVidia Corporation MCP55 Ethernet (rev a2)
    00:11.0 Bridge: nVidia Corporation MCP55 Ethernet (rev a2)
    00:16.0 PCI bridge: nVidia Corporation MCP55 PCI Express bridge (rev a2)
    00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
    00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
    00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
    00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
    01:00.0 VGA compatible controller: nVidia Corporation G80 [GeForce 8800 GTS] (rev a2)
    02:0b.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link)
    03:00.0 Mass storage controller: Silicon Image, Inc. SiI 3132 Serial ATA Raid II Controller (rev 01)
    Not sure what logs might else be of interest.
    Don't feel like downgrading kernel or update to beta drivers if it's not the pit at all.
    edit;
    running nvidia beta (180.16) for a week or so, no crash, happy it seems to be the fix but not impressed at all.
    Last edited by cell (2008-12-21 10:10:39)

Maybe you are looking for