Cannot find variable taxRate

class Goods {
     //instance variables
     String description;
     double price;
     //constructor
     Goods (String desc, double pri)
          description = desc;
          price = pri;
     public void display()
          System.out.println("item " + description + " price " + price);
class Food extends Goods
     double calories;
     Food (String desc, double pri, double cal)
          super(desc, pri);
          calories = cal;
     public void display()
          super.display();
          System.out.println("Calories " + calories);
interface Taxable
  final double taxRate = 0.06 ;
  double calculateTax() ;
class Toys extends Goods
     int minimumAge;
     Toys (String desc, double pri, int minAge)
          super(desc, pri);
          minimumAge = minAge;
     public void display()
          super.display();
          System.out.println("Minimum Age " + minimumAge);
     public double calculateTax()
    return price * taxRate ;
class Books extends Goods
     String author;
     Books (String desc, double pri, String auth)
          super(desc, pri);
          author = auth;
     public void display()
          System.out.println("Author " + author);
     public double calculateTax()
          return price * taxRate;
public class InterfaceExample
  public static void main ( String[] args )
    Goods[] inventory =  new Goods[10];
    inventory[0] = new Goods( "bubble bath", 1.40 );
    inventory[1] = new Food ( "ox tails", 4.45, 1500 );
    inventory[2] = new Books ( "Emma", 24.95, "Austin" );
    inventory[3] = new Toys  ( "Leggos", 54.45, 8 );
    inventory[0].display();
    inventory[1].display();
    inventory[2].display();
    inventory[3].display();
}on line 57 compile tells me that it cannot find the variable taxRate but i have defined it in the Taxable interface
final double taxRate = 0.06;

You did define that taxRate variable in an interface you never implemented. Make sure your interface is available by addingimplements Taxableto the classes Toys and Books.

Similar Messages

  • APD issue 'Cannot find Variable'

    Hello experts,
    When i am trying to execute APD following error msg recieved.
    Cannot find variable 4T23JCVG9Z4JPGIFX0WFR1GK9 for ZLASTDATE characteristic in selection 0001
    Message no. RSAN_WB010
    Diagnosis
    Technical key for message: CX_RSAN_MDL_DST_FILTER=>FILTER_VAR_RANGE_ERROR
    Procedure
    If you require further assistance, look for a SAP Note containing the key words CX_RSAN_MDL_DST_FILTER=>FILTER_VAR_RANGE_ERROR or RSAN_WB010.
    has anyone had this issue.Please share your experience.
    Regards
    Kranthi.C

    Thanks Vishal for your prompt response. We running APD from an Infoprovider(Infoobject  as Dattarget) called 0BPARTNER. And 'ZLASTDATE'(Refference of ODATE) is attribute of '0BPARTNER'. We stores the values in CRM.
    We also have an alternative  in BI  system for this to fetch the data from Query and stores it in CRM. But problem is in Prod server we have over 1.5 million records of data and the values of these records  may be changed on  a daily basis. If 1.5 million records can uploaded at the first place later we dont expect many records on a daily basis(hardly 5k).So i executed first time  APD using this Query it ends up with error as cannot a upload the load at one stretch after many hours.I have also tried  split the records like 20k in Query but still taking 5 to 6 hrs time.APD process can be done only after business hours so if i follow this procedure it will take many days for me to upload and may be CRM dont have uptodate data.
    Hope you understood wat the problem is .Please let us know if anything you aware which can resolve the issue.
    Regards
    Kranthi

  • Cannot find variable Configuration

    Hi,
    Could anyone pls see these errors? Many thanks.
    516 am =
    517 Configuration.createRootApplicationModule(appModuleName, appModuleConfig);
    518 sb.append("ImageServletRooAppModule ").append(appModuleName);
    519 ULDLAppModuleImpl amULDL = (ULDLAppModuleImpl)am;
    Error(517,2): cannot find variable Configuration
    Error(519,17): cannot find class ULDLAppModuleImpl
    Error(519,45): cannot find class ULDLAppModuleImpl

    Hua,
    again you don't provide your jdev version or a valid use case and expect us to help. You are posting on this forum long enough to know that we need more information to help.
    By know you should have learned how to use java. This is a beginners question: 'Cannot find x' should not be that hard to solve. Hint: import ... and library
    Timo

  • CANNOT FIND VARIABLE AND CONTRUCT

    I get cannot find symbol textio and symbol romanconverter
    I need help to fix this and understand what i did wrong or did not do.
    Im trying to write a program that has the user input numbers and the the program outputs roman numbers
    I hope that i am close to getting there!
    public class RomanConverter{
    public static void main(String[] args){
    System.out.println("Enter a Roman numeral and I will convert it to an ordinary");
    System.out.println("arabic integer. Enter an integer in the range 1 to 3999");
    System.out.println("and I will convert it to a Roman numeral. Press return when");
    System.out.println("you want to quit.");
    while (true) {
    System.out.println();
    System.out.print("? ");
    /* Skip past any blanks at the beginning of the input line.
    Break out of the loop if there is nothing else on the line. */
    while (TextIO.peek() == ' ' || TextIO.peek() == '\t')
    TextIO.getAnyChar();
    if ( TextIO.peek() == '\n' )
    break;
    /* If the first non-blank character is a digit, read an arabic
    numeral and convert it to a Roman numeral. Otherwise, read
    a Roman numeral and convert it to an arabic numeral. */
    if ( Character.isDigit(TextIO.peek()) ) {
    int arabic = TextIO.getlnInt();
    try {
    RomanConverter N = new RomanConverter (arabic);
    TextIO.println(N.Int() + " = " + N.String());
    catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    System.out.println(e.getMessage());
    else {
    String roman = TextIO.getln();
    try {
    RomanConverter N = new RomanConverter(roman);
    System.out.println(N.String() + " = " + N.Int());
    catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    System.out.println(e.getMessage());
    } // end while
    System.out.println("OK. Bye for now.");
    } // end main()
    } // end class RomanConverter

    Here, let me do it!
    I get cannot find symbol textio and symbol
    romanconverter
    I need help to fix this and understand what i did
    wrong or did not do.
    Im trying to write a program that has the user input
    numbers and the the program outputs roman numbers
    I hope that i am close to getting there!
    public class RomanConverter{
        public static void main(String[] args){
    System.out.println("Enter a Roman numeral and I will convert it to an ordinary");
    System.out.println("arabic integer.  Enter an integer in the range 1 to 3999");
    System.out.println("and I will convert it to a Roman numeral.  Press return when");
              System.out.println("you want to quit.");
              while (true) {
               System.out.println();
        System.out.print("? ");
    /* Skip past any blanks at the beginning of the
      input line.
    Break out of the loop if there is
      nothing else on the line. */
    while (TextIO.peek() == ' ' || TextIO.peek() ==
      '\t')
                    TextIO.getAnyChar();
      ( TextIO.peek() == '\n' )
                    break;
    /* If the first non-blank character is a
      digit, read an arabic
    numeral and convert it to a Roman
      numeral.  Otherwise, read
    a Roman numeral and convert it to an
      arabic numeral. */
      ( Character.isDigit(TextIO.peek()) ) {
                    int arabic = TextIO.getlnInt();
      try {
    RomanConverter N = new
      RomanConverter (arabic);
    TextIO.println(N.Int() + " = " +
      N.String());
      catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    ystem.out.println(e.getMessage());
                  else {
        String roman = TextIO.getln();
                  try {
            RomanConverter N = new RomanConverter(roman);
    System.out.println(N.String() + " = " +
      N.Int());
      catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    ystem.out.println(e.getMessage());
           }  // end while
           System.out.println("OK.  Bye for now.");
            }  // end main()
         } // end class RomanConverterHave you added the import statement for TextIO?

  • Cannot find a Vector within a Vector

    Yo. Another noob askin about elements within a Vector.
    I'm working on a OOP project in BlueJ. First time doing so, so my code is still kinda procedural (with many listeners in the same document, etc etc)
    I'm creating a simulation of a 7-a-side football game. I have stored the players of each team into a vector (e.g Vector 'Chelsea' would contain 7 player objects).
    I've only created three teams for simplicity, and stored these three Vectors into another Vector called 'teams'.
    (the whole purpose of storing them in vectors btw, is so I don't have to pass many different player objects as arguments -
    i can just send the vector, and extract them within the Listener classes)
    I'm now in the new class (Start_game) and i've passed the vector to the class.
    When I use the statement:
                     if (teams.contains(Arsenal))
                                  +some code+
                     }I get the error message: cannot find variable 'Arsenal', when I try to compile the program.
    Here's the code for the first class:
    * Write a description of class MainWindow here.
    * @author (your name)
    * @version (a version number or a date)
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.util.Vector;
    import javax.swing.BoxLayout;
    public class Choose_player
        String t_chosen1;
        String t_chosen2;
        TextArea playerinfo1;
        TextArea playerinfo2;
        Vector teams = new Vector();
    //    Vector Arsenal = new Vector(4); // this will store Player objects with "Arsenal" in their team variable
        Vector Arsenal = new Vector(4);
            Player Adebayor = new Striker();
            Player Walcott = new Striker();
            Player Fabregas = new Midfielder();
            Player Denilson = new Midfielder();
            Player Gallas = new Defender();
            Player Eboue = new Defender();
            Player Lehmann = new Goalkeeper();       
    //    Arsenal.insertElementAt(Adebayor, 0);
    //    <Player>Arsenal</Player>.addElement(<Player>Adebayor);
        // learn collections - BIG TYME - refer to java site (url is in txt file)
        Vector Chelsea = new Vector(4); // this vector will store the Player objects whose team variable
                                        // contains the String "Chelsea"
            Player Drogba = new Striker();
            Player Anelka = new Striker();
            Player Lampard = new Midfielder();
            Player Phillips = new Midfielder();
            Player ACole = new Defender();
            Player Terry = new Defender();
            Player Cech = new Goalkeeper();
    //        int w = Chelsea.Size();
        Vector ManU = new Vector(4);    // this vector will store the Player objects whose team variable
                                        // contains the String "ManU"
            Player Rooney = new Striker();
            Player Tevez = new Striker();
            Player Giggs = new Midfielder();
            Player Ronaldo = new Midfielder();
            Player Ferdinand = new Defender();
            Player Brown = new Defender();
            Player Sar = new Goalkeeper();
        public void mainfalse(String t1, String t2)
            this.t_chosen1 = t1;
            this.t_chosen2 = t2;
            Frame m_frame = new mainframe("Select Captain", t_chosen1, t_chosen2, teams);
            m_frame.setSize(1200, 700);
            m_frame.setVisible(true);
        class mainframe extends Frame
            Vector teams;
            public mainframe(String title, String t_chosen1, String t_chosen2, Vector teams)
                super(title);
                this.teams = teams;
                setLayout(new FlowLayout());
    //            setLayout(new GridLayout());
    //            setLayout(new CardLayout());
    //            setLayout(new RelativeLayout());
    //            setLayout(new BoxLayout(m_frame, - FINISH EDITING BoxLayout statement
    // -------- ADD PLAYERS TO VECTOR -------- //           
                Arsenal.addElement(Adebayor);
                Arsenal.addElement(Walcott);
                Arsenal.addElement(Fabregas);
                Arsenal.addElement(Denilson);           
                Arsenal.addElement(Gallas);
                Arsenal.addElement(Eboue);           
                Arsenal.addElement(Lehmann);           
                Chelsea.addElement(Drogba);
                Chelsea.addElement(Anelka);           
                Chelsea.addElement(Lampard);
                Chelsea.addElement(Phillips);           
                Chelsea.addElement(ACole);
                Chelsea.addElement(Terry);           
                Chelsea.addElement(Cech);
                ManU.addElement(Rooney);
                ManU.addElement(Tevez);           
                ManU.addElement(Giggs);
                ManU.addElement(Ronaldo);           
                ManU.addElement(Ferdinand);
                ManU.addElement(Brown);           
                ManU.addElement(Sar);
                teams.addElement(Arsenal);
                teams.addElement(Chelsea);
                teams.addElement(ManU);
    // --------------- FIRST TEAM - CAPTAIN SELECTION ----------------      
                java.awt.List playerList1 = new java.awt.List(5);
                // CREATES A BOX WITH A LIST OF TEAMS (it can view 5 before needing a scroll bar)
                // (full specification needed when declaring -
                // java confused with List in 'awt', and list in 'util'.
                if (t_chosen1.equals("Arsenal"))
                    playerList1.add("Adebayor");
                    playerList1.add("Walcott");
                    playerList1.add("Fabregas");
                    playerList1.add("Denilson");
                    playerList1.add("Gallas");
                    playerList1.add("Eboue");
                    playerList1.add("Lehmann");
                } // if the chosen team is Arsenal, display chosen teams to be Arsenal players
                else if (t_chosen1.equals("Chelsea"))
                    playerList1.add("Lampard");
                    playerList1.add("Drogba");
                    playerList1.add("Anelka");
                    playerList1.add("Wright-Phillips");
                    playerList1.add("Cole");
                    playerList1.add("Terry");
                    playerList1.add("Cech");
                } // if the chosen team is Chelsea, display chosen teams to be Chelsea players
                else if (t_chosen1.equals("Manchester United"))
                    playerList1.add("Ronaldo");
                    playerList1.add("Rooney");
                    playerList1.add("Tevez");
                    playerList1.add("Giggs");
                    playerList1.add("Ferdinand");
                    playerList1.add("Brown");
                    playerList1.add("Sar");
                } // ditto
                add(playerList1);
                playerList1.addItemListener(new p_list_Listener1(playerList1));
                // add itemListener to 'playerList' object
                // - pass playerList object to listener to use getSelected() method
                playerinfo1 = new TextArea(10, 38);
                add(playerinfo1);
    // --------------- SECOND TEAM - CAPTAIN SELECTION ---------------- - same as above, for team2
                java.awt.List playerList2 = new java.awt.List(5); // CREATES A BOX WITH A LIST OF TEAMS (it can view 5 before needing a scroll bar)
    // add "Adebayor" as a selectable Captain for the Arsenal team
                if (t_chosen2.equals("Arsenal"))
                    playerList2.add("Adebayor");
                    playerList2.add("Walcott");
                    playerList2.add("Fabregas");
                    playerList2.add("Denilson");
                    playerList2.add("Gallas");
                    playerList2.add("Eboue");
                    playerList2.add("Lehmann");
                // add "Lampard" as a selectable Captain for the Chelsea team           
                else if (t_chosen2.equals("Chelsea"))
                    playerList2.add("Lampard");
                    playerList2.add("Drogba");
                    playerList2.add("Anelka");
                    playerList2.add("Wright-Phillips");
                    playerList2.add("Cole");
                    playerList2.add("Terry");
                    playerList2.add("Cech");
                // add "Christiano Ronaldo" as a selectable Captain for the Manchester United team           
                else if (t_chosen2.equals("Manchester United"))
                    playerList2.add("Ronaldo");
                    playerList2.add("Rooney");
                    playerList2.add("Tevez");
                    playerList2.add("Giggs");
                    playerList2.add("Ferdinand");
                    playerList2.add("Brown");
                    playerList2.add("Sar");
                add(playerList2);
                playerList2.addItemListener(new p_list_Listener2(playerList2));
                playerinfo2 = new TextArea(10, 38);
                add(playerinfo2);
    // ------ CHOICE MENU & TEXTFIELD - CHOOSE PLAYER TO SHOW ATTRIBUTES IN TEXTFIELD - TEAM 1 ---------
                Choice p_choice1 = new Choice();
                // new dropdown menu - choosing which player's info to display
                p_choice1.add("-- Choose player to display info --");
                if (t_chosen1.equals("Arsenal"))
                    p_choice1.add("Emmanuel Adebayor"); //Striker
                    p_choice1.add("Theo Walcott"); //Striker
                    p_choice1.add("Cesc Fabregas"); //Mid
                    p_choice1.add("Denilson"); //Mid
                    p_choice1.add("William Gallas");//Def
                    p_choice1.add("Emmanuel Ebou�");//Def
                    p_choice1.add("Jens Lehmann");//Keeper
                else if (t_chosen1.equals("Chelsea"))
                    p_choice1.add("Didier Drogba");//Striker
                    p_choice1.add("Nikolas Anelka");//Str
                    p_choice1.add("Frank Lampard");//Mid
                    p_choice1.add("Shaun Wright-Phillips");//Mid
                    p_choice1.add("Ashley Cole");//Def
                    p_choice1.add("John Terry");//Def
                    p_choice1.add("Petr Cech");//Keeper
                else if (t_chosen1.equals("Manchester United"))
                    p_choice1.add("Wayne Rooney");//Str
                    p_choice1.add("Carlos T�vez");//Str
                    p_choice1.add("Ryan Giggs");//Mid
                    p_choice1.add("Christiano Ronaldo");//Mid
                    p_choice1.add("Rio Ferdinand");//Def
                    p_choice1.add("Wes Brown");//Def
                    p_choice1.add("Edwin van der Sar");//Keeper
                add(p_choice1);
                TextField nameField1 = new TextField("", 30);
                add(new Label("Name"));
                add(nameField1);
                TextField ageField1 = new TextField("", 30);
                add(new Label("Age"));
                add(ageField1);
                TextField teamField1 = new TextField("", 30);
                add(new Label("Team"));
                add(teamField1);
                TextField speedField1 = new TextField("", 30);
                add(new Label("Speed"));
                add(speedField1);
                TextField defenceField1 = new TextField("", 30);
                add(new Label("Defence"));
                add(defenceField1);
                TextField accuracyField1 = new TextField("", 30);
                add(new Label("Accuracy"));
                add(accuracyField1);
                TextField positionField1 = new TextField("", 30);
                add(new Label("Position"));
                add(positionField1);
                Vector fields1 = new Vector(8, 2); // PASS TO CHOICE LISTENER
                fields1.add(nameField1);
                fields1.add(ageField1);
                fields1.add(teamField1);
                fields1.add(speedField1);
                fields1.add(defenceField1);
                fields1.add(accuracyField1);
                fields1.add(positionField1);
                p_choice1.addItemListener(new ChoiceListener(fields1, teams, p_choice1, t_chosen1));
                // pass the teams vector to variable, to:
                // 1) create players
                // 2) call methods to show their different attributes in each field
    // ------- CHOICE MENU & TEXTFIELD - CHOOSE PLAYER TO SHOW ATTRIBUTES IN TEXTFIELD - TEAM 2 ---------           
                Choice p_choice2 = new Choice();
                p_choice2.add("-- Choose player to display info --");
                if (t_chosen2.equals("Arsenal"))
                    p_choice2.add("Emmanuel Adebayor"); //Striker
                    p_choice2.add("Theo Walcott"); //Striker
                    p_choice2.add("Cesc Fabregas"); //Mid
                    p_choice2.add("Denilson"); //Mid
                    p_choice2.add("William Gallas");//Def
                    p_choice2.add("Emmanuel Ebou�");//Def
                    p_choice2.add("Jens Lehmann");//Keeper           
                else if (t_chosen2.equals("Chelsea"))
                    p_choice2.add("Didier Drogba");//Striker
                    p_choice2.add("Nikolas Anelka");//Str
                    p_choice2.add("Frank Lampard");//Mid
                    p_choice2.add("Shaun Wright-Phillips");//Mid
                    p_choice2.add("Ashley Cole");//Def
                    p_choice2.add("John Terry");//Def
                    p_choice2.add("Petr Cech");//Keeper
                else if (t_chosen2.equals("Manchester United"))
                    p_choice2.add("Wayne Rooney");//Str
                    p_choice2.add("Carlos T�vez");//Str
                    p_choice2.add("Ryan Giggs");//Mid
                    p_choice2.add("Christiano Ronaldo");//Mid
                    p_choice2.add("Rio Ferdinand");//Def
                    p_choice2.add("Wes Brown");//Def
                    p_choice2.add("Edwin van der Sar");//Keeper
                add(p_choice2);
                TextField nameField2 = new TextField("", 30);
    //            nameField1.setText("Here, you store the name");
                add(new Label("Name"));
                add(nameField2);
                TextField ageField2 = new TextField("", 30);
                add(new Label("Age"));
                add(ageField2);
                TextField teamField2 = new TextField("", 30);
                add(new Label("Team"));
                add(teamField2);
                TextField speedField2 = new TextField("", 30);
                add(new Label("Speed"));
                add(speedField2);
                TextField defenceField2 = new TextField("", 30);
                add(new Label("Defence"));
                add(defenceField2);
                TextField accuracyField2 = new TextField("", 30);
                add(new Label("Accuracy"));
                add(accuracyField2);
                TextField positionField2 = new TextField("", 30);
                add(new Label("Position"));
                add(positionField2);
                Vector fields2 = new Vector(8, 2); // PASS TO CHOICE LISTENER
                fields2.add(nameField2);
                fields2.add(ageField2);
                fields2.add(teamField2);
                fields2.add(speedField2);
                fields2.add(defenceField2);
                fields2.add(accuracyField2);
                fields2.add(positionField2);
                p_choice2.addItemListener(new ChoiceListener(fields2, teams, p_choice2, t_chosen2));
                // pass the teams vector to variable, to:
                // 1) create players
                // 2) call methods to show their different attributes in each field
    // --------------- add START GAME button ----------------           
                Button c = new Button("Start Game");
                add(c);
                c.addActionListener(new startgameListener(teams));
    // --------------- WINDOW CLOSER LISTENER ----------------
                addWindowListener(new WindowCloser()); // no object relation - you are adding a listener to the FRAME
    // --------------------- p_list_listener1 - listener for playerList1 ------------------
        class p_list_Listener1 implements ItemListener
            java.awt.List playerslist;
            public p_list_Listener1(java.awt.List playerslist)
                this.playerslist = playerslist;
            public void itemStateChanged(ItemEvent evt)
                String sth = playerslist.getSelectedItem();
    // ----------- PLAYER BIO'S ------------ //
    // ---- ARSENAL:
                String adebayorBio = "Emmanuel Adebayor (born 26 February 1984 in Lom�) is \na Togolese " +
                                    "football player of Nigerian descent who \ncurrently plays for Arsenal.";
                String walcottBio = "Theo James Walcott (born 16 March 1989 in \nStanmore, London) is an " +
                                    "English footballer of Caribbean \ndescent renowned for his pace, who " +
                                    "currently plays for \nArsenal, having signed there from Southampton on" +
                                    " 20 January 2006.";
                String fabregasBio = "Francesc Cesc F�bregas Soler (born 4 May 1987 in Arenys \nde Mar, " +
                                    "Catalonia, Spain) is a Spanish footballer \nwho plays as a central " +
                                    "midfielder for Arsenal in the \nEnglish Premier League and for the" +
                                    " Spanish national team.";
                String denilsonBio = "Den�lson Pereira Neves, known as Den�lson (born on \nFebruary 16, 1988 " +
                                    "in S�o Paulo, Brazil) is a Brazilian \nfootballer who usually plays as" +
                                    " a midfielder. He plays for English \nside Arsenal and is currently the" +
                                    " captain of \nthe Brazil under-20 national team.";
                String gallasBio =  "William Gallas, (born 17 August 1977 in Asni�res-sur-Seine), \nis a French" +
                                    " international footballer of Guadeloupian \ndescent who currently plays for " +
                                    "and captains \nArsenal in the English Premier League.";                   
                String eboueBio = "Emmanuel Ebou� (born June 4, 1983 in Abidjan, C�te d'Ivoire) \nis an Ivorian " +
                                  "football player who currently plays for \nArsenal.";
                String lehmannBio = "Jens Lehmann (German, born November 10, 1969 in Essen) is an award-winning German football goalkeeper who plays for Arsenal and for the German national team. He was voted Best European Goalkeeper twice in his career, and he has been selected for three World Cup squads.";
    // ---- CHELSEA:        
                String lampardBio = "Frank James Lampard, Jr. (born 20 June 1978) is an \nEnglish football " +
                                    "player currently at Chelsea and \npreviously with West Ham United and Swansea City.";
                String drogbaBio = "Didier Yves Drogba T�bily (born March 11, 1978 in Abidjan, C�te d'Ivoire) is a footballer from C�te d'Ivoire who currently plays for Chelsea in the English Premier League.";                   
                String anelkaBio = "Nicolas Anelka (born March 14, 1979 in Versailles, France) is a French footballer who plays in the forward position.";
                String phillipsBio = "Shaun Cameron Wright-Phillips (born 25 October 1981 in Greenwich, London) is an English football player of Jamaican and Grenadian descent.";
                String coleBio = "Ashley Cole (born 20 December 1980, Stepney, London) is an English footballer of Barbadian descent. Cole plays left back for Chelsea and for the England national team.";
                String terryBio = "John George Terry (born December 7, 1980 in Barking, London) is an English professional footballer. Terry plays as a centre back and is the captain of Chelsea in the English Premier League and officially for the England national football team.";
                String cechBio = "Petr Cech (born 20 May 1982 in Plze?, Czechoslovakia, now Czech Republic) is a Czech international football goalkeeper who is currently contracted to English Premier League football club Chelsea F.C., for whom he has played since July 2004.";
    // ---- MANU:
                String ronaldoBio = "Cristiano Ronaldo dos Santos Aveiro, OIH (pronounced \n[k?i??ti?nu ?u?na?du])," +
                                    "(born 5 February 1985 in Funchal, \nMadeira), better known as Cristiano Ronaldo, is a " +
                                    "\nPortuguese professional footballer. He plays both for \nthe English Premier League club " +
                                    "Manchester United and \nthe Portuguese national team."; 
                String rooneyBio = "Wayne Mark Rooney (born 24 October 1985 in Liverpool, Merseyside) is an English footballer who currently plays for the English Premier League club Manchester United and the England national team.";
                String tevezBio = "Carlos Alberto T�vez (born on 5 February 1984 in Ciudadela, Buenos Aires) is an Argentine footballer who currently plays for Premier League club Manchester United. He was described by Diego Maradona as the 'Argentine prophet for the 21st century.'";
                String giggsBio = "Ryan Joseph Giggs OBE[1] (born Ryan Joseph Wilson on 29 November 1973 in Ely, Cardiff) is a Welsh footballer currently playing for Manchester United in the English Premiership, and formerly for the Welsh national team prior to his retirement from international football on 2 June 2007.";
                String ferdinandBio = "Rio Gavin Ferdinand (born 7 November 1978 in Peckham, London) is an English footballer of mixed St Lucian,and Anglo-Irish descent. He plays at centre-back for Manchester United in the Premier League and at the international level for the England national football team.";
                String brownBio = "Wes 'Baked Bean' Michael Brown (born 13 October 1979 in Longsight, Manchester) is an English football player who plays as a defender for Manchester United.";
                String sarBio = "Edwin van der Sar (born 29 October 1970 in Voorhout) is a Dutch professional footballer who plays as a goalkeeper. He is captain of the Dutch national team and plays club football for Manchester United in the English Premier League.";
    // --------- TEAM BIO'S DONE!!!!!! ---------- //           
                try
                    if (sth.equals("Adebayor")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(adebayorBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Walcott")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(walcottBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Fabregas")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(fabregasBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Denilson")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(denilsonBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Gallas")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(gallasBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Eboue")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(eboueBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Lehmann")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(lehmannBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
    // if CHELSEA TEAMS               
                    else if (sth.equals("Lampard"))  // if the user selects "Chelsea", show Chelsea's Bio
                        playerinfo1.setText("" + lampardBio);
                        playerinfo1.setEditable(false);                        
                        //t_chosen = sth;               
                    else if (sth.equals("Drogba")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(drogbaBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Anelka")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(anelkaBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Wright-Phillips")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(phillipsBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Cole")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(coleBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Terry")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(terryBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Cech")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(cechBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
    // if MANU teams
                    else if (sth.equals("Ronaldo")) // .... and so on and so forth
                        playerinfo1.setText("" + ronaldoBio);
                        playerinfo1.setEditable(false);
                    else if (sth.equals("Rooney")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(rooneyBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Tevez")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(tevezBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Giggs")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(giggsBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Ferdinand")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(ferdinandBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Brown")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(brownBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                    else if (sth.equals("Sar")) // if the user selects "Arsenal", show Arsenal's Bio
                        playerinfo1.setText(sarBio);
                        playerinfo1.setEditable(false);
                        //t_chosen = sth;
                catch (NullPointerException e)
                // if sth equals 'null', catch the exception and continue the program
        } // end class
    // --------------- p_list_Listener2 - listener for playerList2 ------------------
        class p_list_Listener2 implements ItemListener
            java.awt.List playerslist;
            public p_list_Listener2(java.awt.List playerslist)
                this.playerslist = playerslist;
            public void itemStateChanged(ItemEvent evt)
                String sth = playerslist.getSelectedItem();
    // ----------- PLAYER BIO'S ------------                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         

    Ok. Here's my code at last. It comprises of three classes, each creating three different frames:
    Class 1:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Vector;
    class class1
        public static void main(String[] param)
            Frame f = new TestFrame("test");
            f.setSize(600, 450);
            f.setVisible(true); // the first window is shown
    class TestFrame extends Frame
        public TestFrame(String title)
            super(title);
            setLayout(new FlowLayout());
            Button a = new Button("Click Me");
            add(a);
            a.addActionListener(new ButtonListener());
            addWindowListener(new WindowCloser());
        class ButtonListener implements ActionListener
            public void actionPerformed(ActionEvent evt)
                class2 c_instance = new class2();
                c_instance.mainfalse();
    Class 2:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    import java.util.Vector;
    import javax.swing.BoxLayout;
    public class class2
        Vector teams;
        Vector Arsenal = new Vector(4);
            Player Adebayor = new Striker();
            Player Walcott = new Striker();
            Player Fabregas = new Midfielder();
            Player Denilson = new Midfielder();
            Player Gallas = new Defender();
            Player Eboue = new Defender();
            Player Lehmann = new Goalkeeper();
            // ONLY CREATING ONE TEAM FOR THE PURPOSE OF THE SIMPLIFIED PROGRAM
        public void mainfalse()
            Frame m_frame = new mainframe("class3", teams);
            m_frame.setSize(1200, 700);
            m_frame.setVisible(true);
        class mainframe extends Frame
            Vector teams;
            public mainframe(String title, Vector teams)
                super(title);
                this.teams = teams;
                setLayout(new FlowLayout());
                Arsenal.addElement(Adebayor);
                Arsenal.addElement(Walcott);
                Arsenal.addElement(Fabregas);
                Arsenal.addElement(Denilson);           
                Arsenal.addElement(Gallas);
                Arsenal.addElement(Eboue);           
                Arsenal.addElement(Lehmann);    
                teams.addElement(Arsenal);
    // --------------- add START GAME button ----------------           
                Button c = new Button("Start Game");
                add(c);
                c.addActionListener(new startgameListener(teams));
    // --------------- WINDOW CLOSER LISTENER ----------------
                addWindowListener(new WindowCloser());           
        class startgameListener implements ActionListener
            Vector teams;
            public startgameListener(Vector t1)
                this.teams = t1;
            public void actionPerformed(ActionEvent evt)
                class3 c_instance1 = new class3();
                c_instance1.gVector(teams);
    }*... and Class 3:*
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Vector;
    public class class3
        Vector teams;
        public void gVector(Vector t1)
            this.teams = t1;
            Frame main = new mainframe("Main Window", teams);
            main.setSize(1400, 900);
            main.setVisible(true);
        class mainframe extends Frame
            public mainframe(String title, Vector t1)
                super(title);
                setLayout(new FlowLayout());
                addWindowListener(new WindowCloser());
                Vector teams = t1;
                JOptionPane.showMessageDialog(null, "Hello and WELCOME to The FIRST, annual StickMan Footy!");
                if (teams.contains(Arsenal))
                    int t = teams.indexOf(Arsenal);
                    Vector Arsenal = (Vector) teams.elementAt(t);
                // getName() is a method declared in the Player class
                // the Player class is the superclass of the Striker class
    /*            if (teams.contains(Adebayor))
                And my error message after trying to compile Class 2, is "cannot find symbol - variable Arsenal".
    ........... help.
    Shax

  • Issue with - "cannot find symbol - variable JOptionPane"

    need some help, got the below loop and want it to be able to loop by the number input by the input dialog. when i compile it i get an error in BlueJ. the error is "cannot find symbol - variable JOptionPane". Any help. have tried a few things however cannot get this to work at all. any suggestions?
    public void numberLoop()
    String qA = JOptionPane.showInputDialog(null,"How many times should this be completed (e.g. 1,2,3,4)?","Question",JOptionPane.QUESTION_MESSAGE);
    int qA2 = Integer.parseInt(qA);
    for (int startNum = 1; startNum <= qA2; startNum++)
    System.out.println(startNum + " squared is " + (startNum * startNum));
    }

    never mind i fixed it. forgot the below.
    import javax.swing.JOptionPane;
    LOL

  • 5 Errors Left: "Cannot find symbol variable "

    I think I have almost completed my error fixing but I cannot seem to figure out how to fix these last few errors I have.
    Here are my errors:
    --------------------Configuration: MadrigalRPA6 - JDK version 1.6.0_02 <Default> - <Default>--------------------
    E:\MadrigalR\MadrigalRPA6\src\MadrigalRPA6.java:113: cannot find symbol
    symbol : variable size
    location: class ServicesArray
    servicesArray = new PetService[size];
    ^
    E:\MadrigalR\MadrigalRPA6\src\MadrigalRPA6.java:115: cannot find symbol
    symbol : variable io
    location: class ServicesArray
    int size = io.readInt("How many services do you have to enter?");
    ^
    E:\MadrigalR\MadrigalRPA6\src\MadrigalRPA6.java:123: cannot find symbol
    symbol : variable number
    location: class ServicesArray
    for(int i = 0; i < number; ++i)
    ^
    E:\MadrigalR\MadrigalRPA6\src\MadrigalRPA6.java:135: cannot find symbol
    symbol : variable number
    location: class ServicesArray
    for(int i = 0; i < number; ++i)
    ^
    E:\MadrigalR\MadrigalRPA6\src\MadrigalRPA6.java:144: cannot find symbol
    symbol : variable io
    location: class ServicesArray
    io.writeInfo(info);
    ^
    5 errors
    Process completed.
    * @(#)MadrigalRPA6.java
    * MadrigalRPA6 application
    * @author
    * @version 1.00 2007/11/5
    *     Program Purpose: This program is designed to store available services for
    *  Dr. Doolittle's Mobile Pet Clinic.
    import staugIO.StaugIO;
    //DECLARE PET SERVICES CLASS
    class PetService
    private String ServiceCode = " ";
    private String ServiceName = " ";
    private String ServiceDescription = " ";
    private String ServiceType = " ";
    private double price = 0.00;
    private StaugIO io = new StaugIO();
    //CONSTRUCTOR
    public PetService()
    //END CONSTRUCTOR
    //SET PET SERVICES NAME
    public void setServiceCode()
         ServiceCode = io.readString("Enter the service code");
    }//END setServiceCode()
    //SET SERVICE NAME
    public void setServiceName()
         ServiceName = io.readString("Enter the service name");
    }//END setServiceName()
    //SET SERVICE DESCRIPTION
    public void setServiceDescription()
         ServiceDescription = io.readString("Enter the service description");
    }//END setServiceDescription
    //SET SERVICE TYPE
    public void setServiceType()
         ServiceType = io.readString("Enter the service type");
    }//END setServiceType()
    //SET SERVICE PRICE
    public void setPrice()
         price = io.readDouble("Enter the service price");
    }//END setPrice()
    //GET PET SERVICE NAME
    public String getServiceCode()
         return ServiceCode;
    }//END getServiceCode()
    //GET SERVICE NAME
    public String getServiceName()
         return ServiceName;
    }//END getServiceName()
    //GET SERVICE DESCRIPTION
    public String getServiceDescription()
         return ServiceDescription;
    }//END getServiceDescription
    //GET SERVICE TYPE
    public String getServiceType()
         return ServiceType;
    }//END getServiceType
    //GET SERVICE PRICE
    public double getPrice()
         return price;
    }//END getPrice
    }//END PetService CLASS
    class ServicesArray
         PetService[] servicesArray;  // Code the reference to the null array.
    //CONSTRUCTOR
    public ServicesArray()
    //END CONSTRUCTOR     
    public void getSize()
         servicesArray = new PetService[size];     *////////ERROR HERE*
    //READ NUMBER OF SERVICES TO STORE
    int size = io.readInt("How many services do you have to enter?"); *///////ERROR HERE TOO*
    //DYNAMICALLY DEFINE ARRAY OF PET SERVICE OBJECTS
    PetService services[] = new PetService[size];
    //DEFINE PET SERVICE OBJECTS AND FILL ARRAY OF OBJECTS WITH PET SERVICE DATA
    for(int i = 0; i < number; ++i) */////////////ERROR HERE ASWELL*
    services[i] = new PetService();
    services.setServiceCode();
    services[i].setServiceName();
    services[i].setServiceDescription();
    services[i].setServiceType();
    services[i].setPrice();
    }//END FOR
    //BUILD OUTPUT STRING FROM ARRAY OF PET SERVICE OBJECTS
    //AND DISPLAY PET SERVICES ONE AT A TIME
    for(int i = 0; i < number; ++i) *////////HMM WOW THIS DOESN'T SURPRISE ME THAT I HAVE ANOTHER ERROR*
         String info = "PET SERVICE " + (i+1) + " DATA\n";
              info += "\nSERVICE CODE: " + services[i].getServiceCode() + "\n"
                   + "SERVICE: " + services[i].getServiceName() + "\n"
                   + "DESC: " + services[i].getServiceDescription() + "\n"
                   + "TYPE: " + services[i].getServiceType() + "\n"
                   + "PRICE: " + services[i].getPrice() + "\n";
    //DISPLAY PET SERVICE DATA
         io.writeInfo(info); *////////////ERROR HERE AS WELL*
    }//END FOR
    }//END getSize()
    }//END ServicesArray CLASS
    public class MadrigalRPA6
    public static void main(String[]args)
    PetService service = new PetService();
    }//END main()
    }//END MADRIGALRPA6 CLASS

    wow i simply added the
    private StaugIO io = new StaugIO();
    into my ServicesArray class and i got the process completed with no errors, thats awesome but what doesnt make sense is this summary of this assignment that i have:
    Code a program that will store available services for Dr. Doolittle's Mobile Pet Clinic. Let the user determine the size of the array. Once the array has been populated with service information, display the contents of the array one at a time in separate GUI windows. Screen capture your output to a Word file and submit it with everything else. Use the code on pp 365-367 in the textbook to help you. Assume that the spacing is always double after a period and colon. You may limit your array size to no more than 3 as indicated by the sample output below. Use the sample output to test your array.
    PET SERVICE NO. 1
    SERVICE CODE: DG-2478
    SERVICE: Dog Group I
    DESC: DHLPP, Corona, Bordetella, Rabies
    TYPE: Vaccine
    PRICE: $47.50
    PET SERVICE NO. 2
    SERVICE CODE: FL-3182
    SERVICE: Feline Group I
    DESC: FVRCP, FeLV, Rabies
    TYPE: Vaccine
    PRICE: $46.50
    PET SERVICE NO. 3
    SERVICE CODE: DG-4682
    SERVICE: Dog Spay
    DESC: Abdominal surgery to remove the ovaries and/or uterus
    (ovariohysterectomy).
    TYPE: Surgery
    PRICE: $57.50
    No where in my code do i even have any of this so how would the user be able to see this? Is this program designed to just display the SERVICE CODE: and then the user types in the DG-4682? etc etc..
    I ask this because I cannot view my dialog boxes because when I run the program i get nothing, just process completed, nothing else.

  • E.getSource()         cannot find symbol - variable e

    I'm currently developing a program for course I'm in that needs to allow a user to open a file, scan the information out of it and display the results.
    I'm currently stuck on an error that's really confused me. On the line: if (e.getSource() == readButton) { 
    the compiler displays the following <cannot find symbol - variable e>.
    If anyone could advise me as to my mistake I'd be very happy.
       public void readData(){
        this.textArea.setText(""); // clear the text area, ready to append new strings.
        fc = new JFileChooser();
               File file = null;
               FileReader reader = null;
               if (e.getSource() == readButton) {
                int rValue = fc.showOpenDialog(Plotter.this);
                if (rValue == JFileChooser.APPROVE_OPTION) {
                    File file = fc.getSelectedFile();
                    reader = new FileReader(file);
                    log.append("Opening: " + file.getName() + "." + newline);
                else {
                    log.append("Open cancelled by user." + newline);
                log.setCaretPosition(log.getDocument().getLength());
                Scanner input = new Scanner(file);
                while (input.hasNextLine()){
             input.close();
        }

    scphan wrote:
    I guess you probably didn't see the post previous to yours ;). Just 2 minutes difference;Yes I did read that post. That is what prompted me to say I think they are doing it wrong. OP suggested that the readData method needed the ActionEvent to be passed as a parameter. Whereas I believe the actionPerformed method should be handle the event and the readData method should do just that: read data.
    public void actionPerformed(ActionEvent e) {
        if (e.getSource() == readButton) {
            readData();
    private void readData() {
        // method just reads the file
        // no need to handle event here
    }

  • Error: Cannot find symbol: Variable Name

    Hi Guys,
    I'm having some trouble with a piece of code. The error that I'm getting is:
    program.java:17: cannot find symbol
    symbol : variable name
    location: class program
    name.CTI(names[0].charAt(0));
    ^
    My Code is shown here:
    import java.io.*;
    import java.lang.*;
    class program{
         public static void main(String[] args){
              String names [] = {"brian", "stu", "mouse"};
              program name = new program ();
              name.sortArrayStr(names);
              //name.CTI(names[0].charAt(0));
         public void sortArrayStr( String[] names ){
              name.CTI(names[0].charAt(0));
         public int CTI ( char letter ){
              char c = letter;
            int k = (int) c;
            System.out.println("ASCII  = "  + k + ".");
              return k;
    }What I'm trying to do is get the name.CTI method caled from within sortArrayStr. When i call name.CTI from main it works fine, (commented part) but when i try from sortArrayStr I get this problem.
    Anyone have any ideas?
    Many Thanks

    Variable name is a local variable defined in method main, so it can not be referenced by writing name in another method like sortArrayStr.
    The good news is, if you want to call CTI from sortArrayStr, just do it:
    public void sortArrayStr( String[] names ){
        CTI(names[0].charAt(0));
    }

  • The cannot find symbol - variable..... error

    i am recieving the "cannot find symbol variable getResident" error with the following line of code:
    if (Client.getResident=true)
    System.out.printf("Your Medicare Levy Contribution is: $%.2f %n", Client.getMedicare());
    i cant figure out why, maybe someone else may know and be able to help, i know that with int or double type methods u put parenthesis at the end of the method name, such as;
    while((Client.getGrossSalary())<=0)
    but i tried that here and it didnt change anything except the errror message.
    i have also tried putting parenthesis around the client.getResident, this didnt work either. i checked and made sure that the getResident method DOES in fact exist also.
    cheers for any help

    I have tried the following:
    if (Client.getResident()=true)
    if ((Client.getResident=true))
    if ((Client.getResident=(true)))
    if ((Client.getResident(true)))
    and none of these work, most of these alternatives return the error: unexpected type (Resident variable is boolean)

  • Cannot find scope's local variable

    I am doing the soa tutorial. In the step of 5.11.5 Task 5: Reference the RequriesApprovalRule Dictionary in the BPEL Designer, I cannot find the variable of IorderApproved when I add "assign output facts" in the business rule activity.
    A local variable named "lOrderApproved" was defined in the scope Scope_CheckApprovalLimit. According to the tutorial, I create the business rule and refered it in BPEL.
    However, in the step of Assign Input Facts, I cannot see the lOrderApproved under the Scope_CheckApprovalLimit.

    There are lot of sequence of steps in this tutorial. If you miss something you cannot proceed further. I would redo from first step.
    post here in the BPEL forum
    BPEL

  • Cannot find  symbol  : variable componentFactory

    after successfully creating webservice model  when i build my webdynpro dc i got error that "typeRegistry" cannot be resolved
    i sending my error log below. How to solve this problem?
    Mar 28, 2008 11:14:29 AM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: Test: Build failed for asianpaints.com/Test(asianpaints.com_TRY0802SC_1) in variant "default":
    Build log -
    Development Component Build (2008-03-28 11:14:24)
      Component name: Test
      Component vendor: asianpaints.com
      SC compartment: asianpaints.com_TRY0802SC_1
      Configuration: J2E_TEST1402_D
      Location: J2E_TEST1402_D
      Source code location: http://172.25.10.210:50000/dtr/ws/TEST1402/asianpaints.com_TRY0802SC/dev/inactive/DCs/asianpaints.com/Test/_comp/
      DC root folder: C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\
      DC type: Web Dynpro
      Host: RaviShankar
    DC Model check:
              [dcmake] All used DCs are available locally
              [dcmake] validating dependency to build plugin "sap.com/tc/bi/bp/webDynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/cmi"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/ddicruntime"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/ddic/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wd/webdynpro"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/logging"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/tc/wdp/metamodel/content"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.proxy.framework"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.aii.util.misc"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.exception"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/com.sap.mw.jco"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/mail"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/IAIKSecurity"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/activation"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/webservices"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/webservices_lib"
              [dcmake] validating dependency to  public part "default" of DC "sap.com/sapxmltoolkit"
              [dcmake] DC model check OK
    Start build plugin:
              [dcmake] using build plugin: sap.com/tc/bi/bp/webDynpro
              [dcmake] starting build plugin from : C:\Documents and Settings\RaviShankar\.dtc\0\DCs\sap.com\tc\bi\bp\webDynpro\_comp\gen\default\public\webDynpro\
    Build Plugins Version 6.40.0.111  (WebDynproPlugin, 630_VAL_REL ) from 2005-09-08 23:39:44 CEST
    Building development component 'Test', vendor 'asianpaints.com', type 'Web Dynpro'
             software component 'TRY0802SC', vendor 'asianpaints.com'.
             location 'J2E_TEST1402_D'.
             source code location 'http://172.25.10.210:50000/dtr/ws/TEST1402/asianpaints.com_TRY0802SC/dev/inactive/'.
    General options:
    convert *.xlf to *.properties: yes
    include sources for debugging: yes
    Reading BuildInfrastructure extension from DC tc/bi/wdtech (vendor sap.com)
    Reading BuildInfrastructure extension from DC tc/bi/ddictech (vendor sap.com)
    Reading BuildInfrastructure extension from DC tc/bi/javatech (vendor sap.com)
    Reading BuildInfrastructure extension from DC tc/bi/util (vendor sap.com)
    Added technology 'sap.com/tc/bi/core'
    Added technology 'sap.com/tc/bi/javatech'
    Added technology 'sap.com/tc/bi/ddictech'
    Added technology 'sap.com/tc/bi/wdtech'
    Preparing data context..
    Warning: No 'default' JDK_HOME_PATH defined, will use running VM. Please update your configuration.
    Data context prepared in 0.171 seconds
    Executing macro file..
      Using macro file:     C:\Documents and Settings\RaviShankar\.dtc\0\DCs\sap.com\tc\bi\bp\webDynpro\_comp\gen\default\public\webDynpro\macros\build.vm
      Creating output file: C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\gen\default\logs\build.xml
    Macro file executed in 0.125 seconds
    Starting Ant with build file: C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\gen\default\logs\build.xml
    Using temporary directory:    C:\Documents and Settings\RaviShankar\.dtc\0\t\4AA094DB605D8518AA45B40C0795DC90
    Using build target: build
    Ant build started at 2008-03-28 11:14:25 GMT-08:00 (PST)
    Using Ant version 1.5.4
    prepare:
         [mkdir] Created dir: C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\gen\default\deploy
    gen:
         [ddgen]
         [ddgen] [Info]    Property deployment is true: Deployment information is provided!
         [ddgen] [Info]    Property sourcepath: C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\src\packages
         [ddgen] [Info]    Property targetpath: C:\Documents and Settings\RaviShankar\.dtc\0\t\4AA094DB605D8518AA45B40C0795DC90/gdd
         [ddgen] [Info]    Property archivename: asianpaints.com~Test
         [ddgen] [Info]    Property vendor: asianpaints.com
         [ddgen] [Info]    Property dcname: Test
         [ddgen] [Info]    Property language: Available languages are automatically determined!
         [ddgen] [Info]    Property addpaths ...
         [ddgen] [Info]       SapMetamodelDictionaryContent.zip - C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/bi/extmm/_comp/gen/default/public/def/lib/model
         [ddgen] [Info]       SapMetamodelWebdynproContent.zip - C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/bi/extmm/_comp/gen/default/public/def/lib/model
         [ddgen] [Info]    Initialize generation templates from configuration jar:file:/C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/bi/extddic/_comp/gen/default/public/def/lib/java/SapDictionaryGenerationCore.jar!/DictionaryGenerationConfigurationCompiled.xml
         [ddgen] [Info]    Generating dbtables/sdmDeployDd.xml
         [ddgen] [Info]    Generation finished (0 seconds)
         [ddgen]
         [timer] Data dictionary generator finished in 0.344 seconds
         [wdgen]
         [wdgen] [Info]    Property deployment is true: Deployment information is provided!
         [wdgen] [Info]    Property sourcepath: C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\src\packages
         [wdgen] [Info]    Property targetpath: C:\Documents and Settings\RaviShankar\.dtc\0\t\4AA094DB605D8518AA45B40C0795DC90/gwd
         [wdgen] [Info]    Property archivename: asianpaints.com~Test
         [wdgen] [Info]    Property vendor: asianpaints.com
         [wdgen] [Info]    Property dcname: Test
         [wdgen] [Info]    Property language: Available languages are automatically determined!
         [wdgen] [Info]    Property addpaths ...
         [wdgen] [Info]       SapMetamodelDictionaryContent.zip - C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/bi/extmm/_comp/gen/default/public/def/lib/model
         [wdgen] [Info]       SapMetamodelWebdynproContent.zip - C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/bi/extmm/_comp/gen/default/public/def/lib/model
         [wdgen] [Info]       SapMetamodelWebdynproContent.zip - C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/wdp/metamodel/content/_comp/gen/default/public/default/lib/java
         [wdgen] [Info]       SapMetamodelDictionaryContent.zip - C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/ddic/metamodel/content/_comp/gen/default/public/default/lib/java
         [wdgen] [Info]    Initialize generation templates from configuration jar:file:/C:/Documents and Settings/RaviShankar/.dtc/0/DCs/sap.com/tc/bi/extwd/_comp/gen/default/public/def/lib/java/SapWebDynproGenerationCore.jar!/WebDynproGenerationConfigurationCompiled.xml
         [wdgen] [Info]    com.apl.test.TestView --> TextView DefaultTextView: UIElement does not have a label
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPrivateTestView.java
         [wdgen] [Info]    Generating packages/com/apl/test/TestView.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/InternalTestView.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPublicTestComp.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPrivateTestComp.java
         [wdgen] [Info]    Generating packages/com/apl/test/TestComp.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/InternalTestComp.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPublicTestCompInterfaceView.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPrivateTestCompInterfaceView.java
         [wdgen] [Info]    Generating packages/com/apl/test/TestCompInterfaceView.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/InternalTestCompInterfaceView.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPublicTestCompInterfaceCfg.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IExternalTestCompInterfaceCfg.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPrivateTestCompInterfaceCfg.java
         [wdgen] [Info]    Generating packages/com/apl/test/TestCompInterfaceCfg.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/InternalTestCompInterfaceCfg.java
         [wdgen] [Info]    Generating packages/com/apl/test/TestCompInterfaceCfg.wdcontroller
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPublicTestCompInterface.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IExternalTestCompInterface.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IPrivateTestCompInterface.java
         [wdgen] [Info]    Generating packages/com/apl/test/TestCompInterface.java
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/InternalTestCompInterface.java
         [wdgen] [Info]    Generating packages/com/apl/test/TestCompInterface.wdcontroller
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/IMessageTestComp.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/TestModel.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getbyname.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_gettwodept.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_adddeptDTO.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_adddeptDTO
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=depdet
           [Ant] getParameterStringForWSInvoke:result=this.depdet.getOriginalBean()
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getdeptDTO.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getdeptDTO
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=empid
           [Ant] getParameterStringForWSInvoke:result=this.empid
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_addempDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_gettwodept.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_gettwodept
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=d1,d2
           [Ant] getParameterStringForWSInvoke:result=this.d1, this.d2
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getdeptDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/ComplexType_EmpdetDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getReg.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getReg
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=regid
           [Ant] getParameterStringForWSInvoke:result=this.regid
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getbyname.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getbyname
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=name
           [Ant] getParameterStringForWSInvoke:result=this.name
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getbetsal.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_addempDTO.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_addempDTO
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=empdet
           [Ant] getParameterStringForWSInvoke:result=this.empdet.getOriginalBean()
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getempdetdeptDTO.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getempdetdeptDTO
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=empid,name,age,salary,address,empdept
           [Ant] getParameterStringForWSInvoke:result=this.empid, this.name, this.age, this.salary, this.address, this.empdept.getOriginalBean()
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getbetsal.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getbetsal
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=sal1,sal2
           [Ant] getParameterStringForWSInvoke:result=this.sal1, this.sal2
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getempDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getdept2.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_adddeptDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getsalary.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getReg.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getdept0.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getdept0
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=empid
           [Ant] getParameterStringForWSInvoke:result=this.empid
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/ComplexType_EmpdetdeptDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_addemp0.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_addemp0
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=empid,name,age,salary,address
           [Ant] getParameterStringForWSInvoke:result=this.empid, this.name, this.age, this.salary, this.address
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getdeptwise.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getdeptwise.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getdeptwise
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=deptid
           [Ant] getParameterStringForWSInvoke:result=this.deptid
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_getempdetdeptDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Response_HaiViDocument_addemp1.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getempDTO.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getempDTO
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=empid
           [Ant] getParameterStringForWSInvoke:result=this.empid
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/ComplexType_EmpdeptDTO.java
         [wdgen] [Info]    Generating packages/com/apl/test/model/testmodel/Request_HaiViDocument_getsalary.java
           [Ant] getParameterStringForWSInvoke:modelclassname=Request_HaiViDocument_getsalary
           [Ant] getParameterStringForWSInvoke:modeltype=Request
           [Ant] getParameterStringForWSInvoke:modeltype=salary
           [Ant] getParameterStringForWSInvoke:result=this.salary
         [wdgen] [Info]    Generating configuration/Components/com.apl.test.TestComp/TestComp.xml
         [wdgen] [Info]    Generating packages/com/apl/test/wdp/ResourceTestComp.properties
         [wdgen] [Info]    Generating portalapp.xml
         [wdgen] [Info]    Generating wd.xml
         [wdgen] [Info]    Generating application.xml
         [wdgen] [Info]    Generating application-j2ee-engine.xml
         [wdgen] [Info]    Generating PublicPartFileList.properties
         [wdgen] [Info]    Generating PublicPartFileList.xml
         [wdgen] [Info]    Generation finished (0 seconds)
         [wdgen]
         [timer] WebDynpro generator finished in 0.953 seconds
         [mkdir] Created dir: C:\Documents and Settings\RaviShankar\.dtc\0\t\4AA094DB605D8518AA45B40C0795DC90\classes
         [javac] Compiling 88 source files to C:\Documents and Settings\RaviShankar\.dtc\0\t\4AA094DB605D8518AA45B40C0795DC90\classes
    C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\src\packages\com\apl\test\model\testmodel\proxies\HaiImpl.java:12: cannot find symbol
    symbol  : variable _typeRegistry
    location: class com.apl.test.model.testmodel.proxies.HaiImpl
        this._typeRegistry = new com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingRegistryImpl();
            ^
    C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\src\packages\com\apl\test\model\testmodel\proxies\HaiImpl.java:13: cannot find symbol
    symbol  : variable _typeRegistry
    location: class com.apl.test.model.testmodel.proxies.HaiImpl
        this._typeRegistry.fromXML(this.getClass().getClassLoader().getResourceAsStream("com/apl/test/model/testmodel/proxies/types.xml"),this.getClass().getClassLoader());
            ^
    C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\src\packages\com\apl\test\model\testmodel\proxies\HaiImpl.java:18: cannot find symbol
    symbol  : variable componentFactory
    location: class com.apl.test.model.testmodel.proxies.HaiImpl
        this.componentFactory = componentFactory;
            ^
    C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\src\packages\com\apl\test\model\testmodel\proxies\HaiImpl.java:20: cannot find symbol
    symbol  : variable _typeRegistry
    location: class com.apl.test.model.testmodel.proxies.HaiImpl
        this._typeRegistry = new com.sap.engine.services.webservices.jaxrpc.encoding.TypeMappingRegistryImpl();
            ^
    C:\Documents and Settings\RaviShankar\.dtc\0\DCs\asianpaints.com\Test\_comp\src\packages\com\apl\test\model\testmodel\proxies\HaiImpl.java:21: cannot find symbol
    symbol  : variable _typeRegistry
    location: class com.apl.test.model.testmodel.proxies.HaiImpl
        this._typeRegistry.fromXML(this.getClass().getClassLoader().getResourceAsStream("com/apl/test/model/testmodel/proxies/types.xml"),this.getClass().getClassLoader());
            ^
    5 errors
    Ant build finished with ERRORS
    file:C:/Documents and Settings/RaviShankar/.dtc/0/DCs/asianpaints.com/Test/_comp/gen/default/logs/build.xml:137: Compile failed; see the compiler error output for details.
    Ant build finished at 2008-03-28 11:14:29 GMT-08:00 (PST), Duration: 3 seconds
    Build finished with ERROR
    Cleaning up.

    Hi
        I tried that but still i'm getting the same error
    I have also tried to create web service model for the same webservice in local web dynpro project there it got build and deployed succesfully and i'm getting this error only with DC project (Track)
    with regards
    Ravi shankar
    Edited by: Ravi Shankar on Mar 10, 2008 12:53 PM

  • Xorg cannot find screens with nvidia module

    I know that this question is very common, but I cannot find solution,
    I should use "nvidia" drivers on Lenovo notebook with two videocards (work with Cuda technology).
    Xorg cannot load nvidia module with this xorg.conf. Can anybody help?
    Thanks.
    lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    01:00.0 VGA compatible controller: NVIDIA Corporation GF108 [GeForce GT 630M] (rev a1)
    xorg.conf:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    # Screen 0 "Screen1" 0 0
    # Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "SWcursor" # [<bool>]
    #Option "HWcursor" # [<bool>]
    #Option "NoAccel" # [<bool>]
    #Option "ShadowFB" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "Rotate" # [<str>]
    #Option "VideoKey" # <i>
    #Option "FlatPanel" # [<bool>]
    #Option "FPDither" # [<bool>]
    #Option "CrtcNumber" # <i>
    #Option "FPScale" # [<bool>]
    #Option "FPTweak" # <i>
    #Option "DualHead" # [<bool>]
    Identifier "Card0"
    Driver "nvidia"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "Backlight" # <str>
    #Option "DRI" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "VideoKey" # <i>
    #Option "Tiling" # [<bool>]
    #Option "LinearFramebuffer" # [<bool>]
    #Option "SwapbuffersWait" # [<bool>]
    #Option "XvPreferOverlay" # [<bool>]
    #Option "HotPlug" # [<bool>]
    #Option "RelaxedFencing" # [<bool>]
    #Option "XvMC" # [<bool>]
    #Option "Throttle" # [<bool>]
    #Option "ZaphodHeads" # <str>
    #Option "DelayedFlush" # [<bool>]
    #Option "TearFree" # [<bool>]
    #Option "PerCrtcPixmaps" # [<bool>]
    #Option "FallbackDebug" # [<bool>]
    #Option "DebugFlushBatches" # [<bool>]
    #Option "DebugFlushCaches" # [<bool>]
    #Option "DebugWait" # [<bool>]
    #Option "BufferCache" # [<bool>]
    #Option "TripleBuffer" # [<bool>]
    Identifier "Card1"
    Driver "intel"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1366x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1366x768"
    EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 32
    # Modes "1366x768"
    # EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1366x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1366x768"
    EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 32
    # Modes "1366x768"
    # EndSubSection
    EndSection
    Xorg.0.log:
    [ 27.732]
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    [ 27.732] X Protocol Version 11, Revision 0
    [ 27.732] Build Operating System: Linux 3.6.2-1-ARCH x86_64
    [ 27.732] Current Operating System: Linux kot_dymok 3.5.6-1-ARCH #1 SMP PREEMPT Sun Oct 7 19:30:49 CEST 2012 x86_64
    [ 27.732] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fc9d19b7-8701-471d-bf1f-867196c6d392 resume=/dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff ro quiet
    [ 27.732] Build Date: 19 October 2012 03:54:56PM
    [ 27.732]
    [ 27.732] Current version of pixman: 0.26.2
    [ 27.732] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 27.732] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 27.732] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Oct 26 01:54:00 2012
    [ 27.732] (==) Using config file: "/etc/X11/xorg.conf"
    [ 27.732] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 27.732] (==) ServerLayout "X.org Configured"
    [ 27.732] (**) |-->Screen "Screen0" (0)
    [ 27.732] (**) | |-->Monitor "Monitor0"
    [ 27.732] (**) | |-->Device "Card0"
    [ 27.732] (**) |-->Input Device "Mouse0"
    [ 27.733] (**) |-->Input Device "Keyboard0"
    [ 27.733] (==) Automatically adding devices
    [ 27.733] (==) Automatically enabling devices
    [ 27.733] (==) Automatically adding GPU devices
    [ 27.733] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 27.733] Entry deleted from font path.
    [ 27.733] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 27.733] Entry deleted from font path.
    [ 27.733] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 27.733] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 27.733] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 27.733] (WW) Disabling Mouse0
    [ 27.733] (WW) Disabling Keyboard0
    [ 27.733] (II) Loader magic: 0x7fcc20
    [ 27.733] (II) Module ABI versions:
    [ 27.733] X.Org ANSI C Emulation: 0.4
    [ 27.733] X.Org Video Driver: 13.0
    [ 27.733] X.Org XInput driver : 18.0
    [ 27.733] X.Org Server Extension : 7.0
    [ 27.733] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 27.734] (--) PCI:*(0:0:2:0) 8086:0166:17aa:3901 rev 9, Mem @ 0xd3400000/4194304, 0xe0000000/268435456, I/O @ 0x00004000/64
    [ 27.734] (--) PCI: (0:1:0:0) 10de:0de9:17aa:3901 rev 161, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
    [ 27.734] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 27.734] Initializing built-in extension Generic Event Extension
    [ 27.734] Initializing built-in extension SHAPE
    [ 27.734] Initializing built-in extension MIT-SHM
    [ 27.734] Initializing built-in extension XInputExtension
    [ 27.734] Initializing built-in extension XTEST
    [ 27.734] Initializing built-in extension BIG-REQUESTS
    [ 27.734] Initializing built-in extension SYNC
    [ 27.734] Initializing built-in extension XKEYBOARD
    [ 27.734] Initializing built-in extension XC-MISC
    [ 27.734] Initializing built-in extension SECURITY
    [ 27.734] Initializing built-in extension XINERAMA
    [ 27.734] Initializing built-in extension XFIXES
    [ 27.734] Initializing built-in extension RENDER
    [ 27.734] Initializing built-in extension RANDR
    [ 27.734] Initializing built-in extension COMPOSITE
    [ 27.734] Initializing built-in extension DAMAGE
    [ 27.734] Initializing built-in extension MIT-SCREEN-SAVER
    [ 27.734] Initializing built-in extension DOUBLE-BUFFER
    [ 27.734] Initializing built-in extension RECORD
    [ 27.734] Initializing built-in extension DPMS
    [ 27.735] Initializing built-in extension X-Resource
    [ 27.735] Initializing built-in extension XVideo
    [ 27.735] Initializing built-in extension XVideo-MotionCompensation
    [ 27.735] Initializing built-in extension XFree86-VidModeExtension
    [ 27.735] Initializing built-in extension XFree86-DGA
    [ 27.735] Initializing built-in extension XFree86-DRI
    [ 27.735] Initializing built-in extension DRI2
    [ 27.735] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 27.735] (II) LoadModule: "glx"
    [ 27.735] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 27.741] (II) Module glx: vendor="NVIDIA Corporation"
    [ 27.741] compiled for 4.0.2, module version = 1.0.0
    [ 27.741] Module class: X.Org Server Extension
    [ 27.741] (II) NVIDIA GLX Module 304.43 Sun Aug 19 20:34:01 PDT 2012
    [ 27.741] Loading extension GLX
    [ 27.741] (II) LoadModule: "nvidia"
    [ 27.741] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 27.742] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 27.742] compiled for 4.0.2, module version = 1.0.0
    [ 27.742] Module class: X.Org Video Driver
    [ 27.815] (EE) NVIDIA: Failed to load the NVIDIA kernel module. Please check your
    [ 27.815] (EE) NVIDIA: system's kernel log for additional error messages.
    [ 27.815] (II) UnloadModule: "nvidia"
    [ 27.815] (II) Unloading nvidia
    [ 27.815] (EE) Failed to load module "nvidia" (module-specific error, 0)
    [ 27.815] (EE) No drivers available.
    [ 27.815]
    Fatal server error:
    [ 27.815] no screens found
    [ 27.815] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 27.815] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 27.815] (EE)
    dmesg.log
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.5.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Oct 7 19:30:49 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fc9d19b7-8701-471d-bf1f-867196c6d392 resume=/dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000baabefff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baabf000-0x00000000baebefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: LENOVO Lenovo G580/Product Name, BIOS 5ECN33WW(V2.03) 06/06/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x13f600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 5 base 100000000 mask FC0000000 write-back
    [ 0.000000] 6 base 13F600000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 13F800000 mask FFF800000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fe1b0-0x000fe1bf] mapped at [ffff8800000fe1b0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
    [ 0.000000] [mem 0x00000000-0xbaffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fa24000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x13f5fffff]
    [ 0.000000] [mem 0x100000000-0x13f5fffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x13f5fffff @ [mem 0xbaab9000-0xbaabefff]
    [ 0.000000] RAMDISK: [mem 0x37a12000-0x37d00fff]
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000baffe210 00094 (v01 LENOVO CB-01 00000001 01000013)
    [ 0.000000] ACPI: FACP 00000000baffb000 000F4 (v04 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: DSDT 00000000bafee000 09755 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FACS 00000000bafbb000 00040
    [ 0.000000] ACPI: UEFI 00000000baffd000 00236 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASF! 00000000baffc000 000A5 (v32 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: HPET 00000000baffa000 00038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: APIC 00000000baff9000 0008C (v02 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: MCFG 00000000baff8000 0003C (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SLIC 00000000bafed000 00176 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafec000 006FE (v01 LENOVO CB-01 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 00000000bafea000 00028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASPT 00000000bafe5000 00034 (v07 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FPDT 00000000bafe3000 00044 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafe2000 00968 (v01 LENOVO CB-01 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafdf000 01EDD (v01 LENOVO CB-01 00001000 ACPI 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x13f5fffff]
    [ 0.000000] NODE_DATA [mem 0x13f5fc000-0x13f5fffff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013ac00000-ffff88013ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xbaabefff]
    [ 0.000000] node 0: [mem 0xbafff000-0xbaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x13f5fffff]
    [ 0.000000] On node 0 totalpages: 1023564
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3911 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 743679 pages, LIFO batch:31
    [ 0.000000] Normal zone: 4056 pages used for memmap
    [ 0.000000] Normal zone: 255528 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
    [ 0.000000] PM: Registered nosave memory: 00000000baabf000 - 00000000baebf000
    [ 0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
    [ 0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
    [ 0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
    [ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
    [ 0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
    [ 0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
    [ 0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013f200000 s83392 r8192 d23104 u262144
    [ 0.000000] pcpu-alloc: s83392 r8192 d23104 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1003118
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fc9d19b7-8701-471d-bf1f-867196c6d392 resume=/dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3947540k/5232640k available (4661k kernel code, 1138384k absent, 146716k reserved, 4191k data, 760k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 2494.278 MHz processor.
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4990.41 BogoMIPS (lpj=8314260)
    [ 0.000004] pid_max: default: 32768 minimum: 301
    [ 0.000025] Security Framework initialized
    [ 0.000028] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000250] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001230] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.001662] Mount-cache hash table entries: 256
    [ 0.001817] Initializing cgroup subsys cpuacct
    [ 0.001818] Initializing cgroup subsys memory
    [ 0.001825] Initializing cgroup subsys devices
    [ 0.001826] Initializing cgroup subsys freezer
    [ 0.001827] Initializing cgroup subsys net_cls
    [ 0.001828] Initializing cgroup subsys blkio
    [ 0.001850] CPU: Physical Processor ID: 0
    [ 0.001850] CPU: Processor Core ID: 0
    [ 0.001854] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.002211] mce: CPU supports 7 MCE banks
    [ 0.002221] CPU0: Thermal monitoring enabled (TM1)
    [ 0.002227] using mwait in idle threads.
    [ 0.003141] ACPI: Core revision 20120320
    [ 0.021624] ftrace: allocating 18032 entries in 71 pages
    [ 0.029975] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.062936] CPU0: Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz stepping 09
    [ 0.166795] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
    [ 0.166800] ... version: 3
    [ 0.166801] ... bit width: 48
    [ 0.166802] ... generic registers: 4
    [ 0.166803] ... value mask: 0000ffffffffffff
    [ 0.166804] ... max period: 000000007fffffff
    [ 0.166804] ... fixed-purpose events: 3
    [ 0.166805] ... event mask: 000000070000000f
    [ 0.186863] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.200098] Booting Node 0, Processors #1 #2 #3
    [ 0.266902] Brought up 4 CPUs
    [ 0.266905] Total of 4 processors activated (19962.65 BogoMIPS).
    [ 0.269981] devtmpfs: initialized
    [ 0.270796] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
    [ 0.271536] NET: Registered protocol family 16
    [ 0.271635] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.271637] ACPI: bus type pci registered
    [ 0.271695] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.271697] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.277539] PCI: Using configuration type 1 for base access
    [ 0.277665] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.277666] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.277666] mtrr: corrected configuration.
    [ 0.277952] bio: create slab <bio-0> at 0
    [ 0.277994] ACPI: Added _OSI(Module Device)
    [ 0.277995] ACPI: Added _OSI(Processor Device)
    [ 0.277996] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.277997] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.279372] ACPI: EC: Look up EC in DSDT
    [ 0.280773] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.283353] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.284330] ACPI: SSDT 00000000bae18018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20100121)
    [ 0.284681] ACPI: Dynamic OEM Table Load:
    [ 0.284683] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20100121)
    [ 0.284902] ACPI: SSDT 00000000bae19a98 00303 (v01 PmRef ApIst 00003000 INTL 20100121)
    [ 0.285275] ACPI: Dynamic OEM Table Load:
    [ 0.285277] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20100121)
    [ 0.285380] ACPI: SSDT 00000000bae17d98 00119 (v01 PmRef ApCst 00003000 INTL 20100121)
    [ 0.285725] ACPI: Dynamic OEM Table Load:
    [ 0.285726] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20100121)
    [ 0.286579] ACPI: Interpreter enabled
    [ 0.286581] ACPI: (supports S0 S3 S4 S5)
    [ 0.286600] ACPI: Using IOAPIC for interrupt routing
    [ 0.409275] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.409424] ACPI: No dock devices found.
    [ 0.409427] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.409682] \_SB_.PCI0:_OSC invalid UUID
    [ 0.409683] _OSC request data:1 8 1f
    [ 0.409687] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.410085] pci_root PNP0A08:00: >host bridge window [io 0x0000-0x0cf7]
    [ 0.410087] pci_root PNP0A08:00: >host bridge window [io 0x0d00-0xffff]
    [ 0.410089] pci_root PNP0A08:00: >host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.410091] pci_root PNP0A08:00: >host bridge window [mem 0xbfa00000-0xfeafffff]
    [ 0.410117] PCI host bridge to bus 0000:00
    [ 0.410119] pci_bus 0000:00: >root bus resource [io 0x0000-0x0cf7]
    [ 0.410121] pci_bus 0000:00: >root bus resource [io 0x0d00-0xffff]
    [ 0.410122] pci_bus 0000:00: >root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.410123] pci_bus 0000:00: >root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 0.410131] pci 0000:00:00.0: >[8086:0154] type 00 class 0x060000
    [ 0.410164] pci 0000:00:01.0: >[8086:0151] type 01 class 0x060400
    [ 0.410192] pci 0000:00:01.0: >PME# supported from D0 D3hot D3cold
    [ 0.410210] pci 0000:00:02.0: >[8086:0166] type 00 class 0x030000
    [ 0.410220] pci 0000:00:02.0: >reg 10: [mem 0xd3400000-0xd37fffff 64bit]
    [ 0.410226] pci 0000:00:02.0: >reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.410231] pci 0000:00:02.0: >reg 20: [io 0x4000-0x403f]
    [ 0.410281] pci 0000:00:14.0: >[8086:1e31] type 00 class 0x0c0330
    [ 0.410303] pci 0000:00:14.0: >reg 10: [mem 0xd3a00000-0xd3a0ffff 64bit]
    [ 0.410373] pci 0000:00:14.0: >PME# supported from D3hot D3cold
    [ 0.410396] pci 0000:00:16.0: >[8086:1e3a] type 00 class 0x078000
    [ 0.410419] pci 0000:00:16.0: >reg 10: [mem 0xd3a14000-0xd3a1400f 64bit]
    [ 0.410494] pci 0000:00:16.0: >PME# supported from D0 D3hot D3cold
    [ 0.410528] pci 0000:00:1a.0: >[8086:1e2d] type 00 class 0x0c0320
    [ 0.410779] pci 0000:00:1a.0: >reg 10: [mem 0xd3a19000-0xd3a193ff]
    [ 0.412197] pci 0000:00:1a.0: >PME# supported from D0 D3hot D3cold
    [ 0.412223] pci 0000:00:1b.0: >[8086:1e20] type 00 class 0x040300
    [ 0.412237] pci 0000:00:1b.0: >reg 10: [mem 0xd3a10000-0xd3a13fff 64bit]
    [ 0.412305] pci 0000:00:1b.0: >PME# supported from D0 D3hot D3cold
    [ 0.412329] pci 0000:00:1c.0: >[8086:1e10] type 01 class 0x060400
    [ 0.412408] pci 0000:00:1c.0: >PME# supported from D0 D3hot D3cold
    [ 0.412433] pci 0000:00:1c.1: >[8086:1e12] type 01 class 0x060400
    [ 0.412512] pci 0000:00:1c.1: >PME# supported from D0 D3hot D3cold
    [ 0.412546] pci 0000:00:1d.0: >[8086:1e26] type 00 class 0x0c0320
    [ 0.412788] pci 0000:00:1d.0: >reg 10: [mem 0xd3a18000-0xd3a183ff]
    [ 0.414203] pci 0000:00:1d.0: >PME# supported from D0 D3hot D3cold
    [ 0.414230] pci 0000:00:1f.0: >[8086:1e59] type 00 class 0x060100
    [ 0.414353] pci 0000:00:1f.2: >[8086:1e03] type 00 class 0x010601
    [ 0.414371] pci 0000:00:1f.2: >reg 10: [io 0x4088-0x408f]
    [ 0.414379] pci 0000:00:1f.2: >reg 14: [io 0x4094-0x4097]
    [ 0.414387] pci 0000:00:1f.2: >reg 18: [io 0x4080-0x4087]
    [ 0.414396] pci 0000:00:1f.2: >reg 1c: [io 0x4090-0x4093]
    [ 0.414404] pci 0000:00:1f.2: >reg 20: [io 0x4060-0x407f]
    [ 0.414412] pci 0000:00:1f.2: >reg 24: [mem 0xd3a17000-0xd3a177ff]
    [ 0.414457] pci 0000:00:1f.2: >PME# supported from D3hot
    [ 0.414475] pci 0000:00:1f.3: >[8086:1e22] type 00 class 0x0c0500
    [ 0.414491] pci 0000:00:1f.3: >reg 10: [mem 0xd3a15000-0xd3a150ff 64bit]
    [ 0.414512] pci 0000:00:1f.3: >reg 20: [io 0x4040-0x405f]
    [ 0.414568] pci 0000:01:00.0: >[10de:0de9] type 00 class 0x030000
    [ 0.414578] pci 0000:01:00.0: >reg 10: [mem 0xd2000000-0xd2ffffff]
    [ 0.414589] pci 0000:01:00.0: >reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.414600] pci 0000:01:00.0: >reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.414607] pci 0000:01:00.0: >reg 24: [io 0x3000-0x307f]
    [ 0.414615] pci 0000:01:00.0: >reg 30: [mem 0xfff80000-0xffffffff pref]
    [ 0.419807] pci 0000:00:01.0: >PCI bridge to [bus 01-01]
    [ 0.419812] pci 0000:00:01.0: > bridge window [io 0x3000-0x3fff]
    [ 0.419816] pci 0000:00:01.0: > bridge window [mem 0xd2000000-0xd30fffff]
    [ 0.419834] pci 0000:00:01.0: > bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.419945] pci 0000:02:00.0: >[1969:1090] type 00 class 0x020000
    [ 0.420065] pci 0000:02:00.0: >reg 10: [mem 0xd3900000-0xd393ffff 64bit]
    [ 0.420115] pci 0000:02:00.0: >reg 18: [io 0x2000-0x207f]
    [ 0.420574] pci 0000:02:00.0: >PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.426507] pci 0000:00:1c.0: >PCI bridge to [bus 02-02]
    [ 0.426512] pci 0000:00:1c.0: > bridge window [io 0x2000-0x2fff]
    [ 0.426516] pci 0000:00:1c.0: > bridge window [mem 0xd3900000-0xd39fffff]
    [ 0.426588] pci 0000:03:00.0: >[168c:002b] type 00 class 0x028000
    [ 0.426615] pci 0000:03:00.0: >reg 10: [mem 0xd3800000-0xd380ffff 64bit]
    [ 0.426744] pci 0000:03:00.0: >supports D1
    [ 0.426746] pci 0000:03:00.0: >PME# supported from D0 D1 D3hot
    [ 0.433127] pci 0000:00:1c.1: >PCI bridge to [bus 03-03]
    [ 0.433150] pci 0000:00:1c.1: > bridge window [mem 0xd3800000-0xd38fffff]
    [ 0.433170] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.433258] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.433280] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.433313] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
    [ 0.433378] \_SB_.PCI0:_OSC invalid UUID
    [ 0.433379] _OSC request data:1 1f 1f
    [ 0.433382] pci0000:00: >Requesting ACPI _OSC control (0x1d)
    [ 0.433416] \_SB_.PCI0:_OSC invalid UUID
    [ 0.433417] _OSC request data:1 0 1d
    [ 0.433420] pci0000:00: >ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
    [ 0.433421] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.435631] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.435669] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.435705] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.435740] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.435774] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.435809] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    [ 0.435844] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    [ 0.435879] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.435945] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.435951] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.435952] vgaarb: loaded
    [ 0.435953] vgaarb: bridge control possible 0000:01:00.0
    [ 0.435954] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.435977] PCI: Using ACPI for IRQ routing
    [ 0.437526] PCI: pci_cache_line_size set to 64 bytes
    [ 0.437598] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.437599] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.437600] e820: reserve RAM buffer [mem 0xbaabf000-0xbbffffff]
    [ 0.437602] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
    [ 0.437603] e820: reserve RAM buffer [mem 0x13f600000-0x13fffffff]
    [ 0.437671] NetLabel: Initializing
    [ 0.437672] NetLabel: domain hash size = 128
    [ 0.437673] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.437681] NetLabel: unlabeled traffic allowed by default
    [ 0.437696] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.437700] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.439709] Switching to clocksource hpet
    [ 0.443743] pnp: PnP ACPI init
    [ 0.443758] ACPI: bus type pnp registered
    [ 0.444001] pnp 00:00: >[bus 00-3e]
    [ 0.444004] pnp 00:00: >[io 0x0000-0x0cf7 window]
    [ 0.444005] pnp 00:00: >[io 0x0cf8-0x0cff]
    [ 0.444007] pnp 00:00: >[io 0x0d00-0xffff window]
    [ 0.444008] pnp 00:00: >[mem 0x000a0000-0x000bffff window]
    [ 0.444010] pnp 00:00: >[mem 0x000c0000-0x000c3fff window]
    [ 0.444011] pnp 00:00: >[mem 0x000c4000-0x000c7fff window]
    [ 0.444012] pnp 00:00: >[mem 0x000c8000-0x000cbfff window]
    [ 0.444013] pnp 00:00: >[mem 0x000cc000-0x000cffff window]
    [ 0.444015] pnp 00:00: >[mem 0x000d0000-0x000d3fff window]
    [ 0.444016] pnp 00:00: >[mem 0x000d4000-0x000d7fff window]
    [ 0.444017] pnp 00:00: >[mem 0x000d8000-0x000dbfff window]
    [ 0.444019] pnp 00:00: >[mem 0x000dc000-0x000dffff window]
    [ 0.444021] pnp 00:00: >[mem 0x000e0000-0x000e3fff window]
    [ 0.444023] pnp 00:00: >[mem 0x000e4000-0x000e7fff window]
    [ 0.444024] pnp 00:00: >[mem 0x000e8000-0x000ebfff window]
    [ 0.444025] pnp 00:00: >[mem 0x000ec000-0x000effff window]
    [ 0.444027] pnp 00:00: >[mem 0x000f0000-0x000fffff window]
    [ 0.444028] pnp 00:00: >[mem 0xbfa00000-0xfeafffff window]
    [ 0.444029] pnp 00:00: >[mem 0x00010000-0x0001ffff window]
    [ 0.444084] pnp 00:00: >Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.444094] pnp 00:01: >[io 0x0000-0x001f]
    [ 0.444095] pnp 00:01: >[io 0x0081-0x0091]
    [ 0.444096] pnp 00:01: >[io 0x0093-0x009f]
    [ 0.444097] pnp 00:01: >[io 0x00c0-0x00df]
    [ 0.444099] pnp 00:01: >[dma 4]
    [ 0.444115] pnp 00:01: >Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.444121] pnp 00:02: >[mem 0xff010000-0xffffffff]
    [ 0.444135] pnp 00:02: >Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.444191] pnp 00:03: >[mem 0xfed00000-0xfed003ff]
    [ 0.444207] pnp 00:03: >Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.444214] pnp 00:04: >[io 0x00f0]
    [ 0.444222] pnp 00:04: >[irq 13]
    [ 0.444238] pnp 00:04: >Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.444246] pnp 00:05: >[io 0x002e-0x002f]
    [ 0.444247] pnp 00:05: >[io 0x004e-0x004f]
    [ 0.444248] pnp 00:05: >[io 0x0061]
    [ 0.444249] pnp 00:05: >[io 0x0063]
    [ 0.444251] pnp 00:05: >[io 0x0065]
    [ 0.444252] pnp 00:05: >[io 0x0067]
    [ 0.444253] pnp 00:05: >[io 0x0070]
    [ 0.444254] pnp 00:05: >[io 0x0080]
    [ 0.444255] pnp 00:05: >[io 0x0092]
    [ 0.444256] pnp 00:05: >[io 0x00b2-0x00b3]
    [ 0.444257] pnp 00:05: >[io 0x0680-0x069f]
    [ 0.444259] pnp 00:05: >[io 0x1000-0x100f]
    [ 0.444260] pnp 00:05: >[io 0xffff]
    [ 0.444261] pnp 00:05: >[io 0xffff]
    [ 0.444262] pnp 00:05: >[io 0x0400-0x0453]
    [ 0.444263] pnp 00:05: >[io 0x0458-0x047f]
    [ 0.444264] pnp 00:05: >[io 0x0500-0x057f]
    [ 0.444266] pnp 00:05: >[io 0x164e-0x164f]
    [ 0.444267] pnp 00:05: >[io 0xfd60-0xfd63]
    [ 0.444300] system 00:05: >[io 0x0680-0x069f] has been reserved
    [ 0.444302] system 00:05: >[io 0x1000-0x100f] has been reserved
    [ 0.444303] system 00:05: >[io 0xffff] has been reserved
    [ 0.444305] system 00:05: >[io 0xffff] has been reserved
    [ 0.444306] system 00:05: >[io 0x0400-0x0453] has been reserved
    [ 0.444308] system 00:05: >[io 0x0458-0x047f] has been reserved
    [ 0.444309] system 00:05: >[io 0x0500-0x057f] has been reserved
    [ 0.444311] system 00:05: >[io 0x164e-0x164f] has been reserved
    [ 0.444312] system 00:05: >[io 0xfd60-0xfd63] has been reserved
    [ 0.444315] system 00:05: >Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.444322] pnp 00:06: >[io 0x0070-0x0077]
    [ 0.444327] pnp 00:06: >[irq 8]
    [ 0.444341] pnp 00:06: >Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.444360] pnp 00:07: >[io 0x0454-0x0457]
    [ 0.444385] system 00:07: >[io 0x0454-0x0457] has been reserved
    [ 0.444387] system 00:07: >Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.444394] pnp 00:08: >[io 0x0060]
    [ 0.444396] pnp 00:08: >[io 0x0064]
    [ 0.444400] pnp 00:08: >[irq 1]
    [ 0.444416] pnp 00:08: >Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.444460] pnp 00:09: >[irq 12]
    [ 0.444479] pnp 00:09: >Plug and Play ACPI device, IDs ETD0613 ETD0001 PNP0f13 (active)
    [ 0.503108] pnp 00:0a: >[mem 0xfed1c000-0xfed1ffff]
    [ 0.503110] pnp 00:0a: >[mem 0xfed10000-0xfed17fff]
    [ 0.503111] pnp 00:0a: >[mem 0xfed18000-0xfed18fff]
    [ 0.503113] pnp 00:0a: >[mem 0xfed19000-0xfed19fff]
    [ 0.503114] pnp 00:0a: >[mem 0xf0000000-0xf3ffffff]
    [ 0.503115] pnp 00:0a: >[mem 0xfed20000-0xfed3ffff]
    [ 0.503116] pnp 00:0a: >[mem 0xfed90000-0xfed93fff]
    [ 0.503117] pnp 00:0a: >[mem 0xff000000-0xff000fff]
    [ 0.503119] pnp 00:0a: >[mem 0xff010000-0xffffffff]
    [ 0.503120] pnp 00:0a: >[mem 0xfee00000-0xfeefffff]
    [ 0.503121] pnp 00:0a: >[mem 0xbfa00000-0xbfa00fff]
    [ 0.503153] system 00:0a: >[mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.503154] system 00:0a: >[mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.503156] system 00:0a: >[mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.503159] system 00:0a: >[mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.503161] system 00:0a: >[mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.503162] system 00:0a: >[mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.503164] system 00:0a: >[mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.503165] system 00:0a: >[mem 0xff000000-0xff000fff] has been reserved
    [ 0.503167] system 00:0a: >[mem 0xff010000-0xffffffff] could not be reserved
    [ 0.503169] system 00:0a: >[mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.503170] system 00:0a: >[mem 0xbfa00000-0xbfa00fff] has been reserved
    [ 0.503173] system 00:0a: >Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.503426] pnp 00:0b: >[mem 0x20000000-0x201fffff]
    [ 0.503428] pnp 00:0b: >[mem 0x40004000-0x40004fff]
    [ 0.503467] system 00:0b: >[mem 0x20000000-0x201fffff] has been reserved
    [ 0.503469] system 00:0b: >[mem 0x40004000-0x40004fff] has been reserved
    [ 0.503471] system 00:0b: >Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.503484] pnp: PnP ACPI: found 12 devices
    [ 0.503485] ACPI: ACPI bus type pnp unregistered
    [ 0.509719] pci 0000:01:00.0: >no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.509749] pci 0000:01:00.0: >BAR 6: assigned [mem 0xd3000000-0xd307ffff pref]
    [ 0.509751] pci 0000:00:01.0: >PCI bridge to [bus 01-01]
    [ 0.509753] pci 0000:00:01.0: > bridge window [io 0x3000-0x3fff]
    [ 0.509756] pci 0000:00:01.0: > bridge window [mem 0xd2000000-0xd30fffff]
    [ 0.509758] pci 0000:00:01.0: > bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.509761] pci 0000:00:1c.0: >PCI bridge to [bus 02-02]
    [ 0.509764] pci 0000:00:1c.0: > bridge window [io 0x2000-0x2fff]
    [ 0.509769] pci 0000:00:1c.0: > bridge window [mem 0xd3900000-0xd39fffff]
    [ 0.509778] pci 0000:00:1c.1: >PCI bridge to [bus 03-03]
    [ 0.509783] pci 0000:00:1c.1: > bridge window [mem 0xd3800000-0xd38fffff]
    [ 0.509815] pci_bus 0000:00: >resource 4 [io 0x0000-0x0cf7]
    [ 0.509816] pci_bus 0000:00: >resource 5 [io 0x0d00-0xffff]
    [ 0.509818] pci_bus 0000:00: >resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.509819] pci_bus 0000:00: >resource 7 [mem 0xbfa00000-0xfeafffff]
    [ 0.509821] pci_bus 0000:01: >resource 0 [io 0x3000-0x3fff]
    [ 0.509822] pci_bus 0000:01: >resource 1 [mem 0xd2000000-0xd30fffff]
    [ 0.509824] pci_bus 0000:01: >resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.509825] pci_bus 0000:02: >resource 0 [io 0x2000-0x2fff]
    [ 0.509827] pci_bus 0000:02: >resource 1 [mem 0xd3900000-0xd39fffff]
    [ 0.509828] pci_bus 0000:03: >resource 1 [mem 0xd3800000-0xd38fffff]
    [ 0.509849] NET: Registered protocol family 2
    [ 0.509940] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.510462] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.511934] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.512121] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.512123] TCP: reno registered
    [ 0.512131] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.512148] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.512215] NET: Registered protocol family 1
    [ 0.512227] pci 0000:00:02.0: >Boot video device
    [ 0.539686] PCI: CLS 64 bytes, default 64
    [ 0.539720] Unpacking initramfs...
    [ 0.587463] Freeing initrd memory: 3004k freed
    [ 0.587782] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.587786] software IO TLB [mem 0xb6ab9000-0xbaab8fff] (64MB) mapped at [ffff8800b6ab9000-ffff8800baab8fff]
    [ 0.587808] Simple Boot Flag at 0x44 set to 0x1
    [ 0.588188] audit: initializing netlink socket (disabled)
    [ 0.588201] type=2000 audit(1351239412.473:1): initialized
    [ 0.598216] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.599469] VFS: Disk quotas dquot_6.5.2
    [ 0.599501] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.599601] msgmni has been set to 7715
    [ 0.599760] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.599785] io scheduler noop registered
    [ 0.599786] io scheduler deadline registered
    [ 0.599824] io scheduler cfq registered (default)
    [ 0.599901] pcieport 0000:00:01.0: >irq 40 for MSI/MSI-X
    [ 0.600058] vesafb: mode is 1366x768x32, linelength=5504, pages=0
    [ 0.600059] vesafb: scrolling: redraw
    [ 0.600061] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.600464] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005100000, using 4160k, total 4160k
    [ 0.667429] Console: switching to colour frame buffer device 170x48
    [ 0.734140] fb0: VESA VGA frame buffer device
    [ 0.734147] intel_idle: does not run on family 6 model 58
    [ 0.734170] GHES: HEST is not enabled!
    [ 0.734209] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.734579] Linux agpgart interface v0.103
    [ 0.734634] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS4] at 0x60,0x64 irq 1,12
    [ 0.748568] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.748578] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.748663] mousedev: PS/2 mouse device common for all mice
    [ 0.748692] rtc_cmos 00:06: >RTC can wake from S4
    [ 0.748829] rtc_cmos 00:06: >rtc core: registered rtc_cmos as rtc0
    [ 0.748861] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.748868] cpuidle: using governor ladder
    [ 0.748870] cpuidle: using governor menu
    [ 0.748966] drop_monitor: Initializing network drop monitor service
    [ 0.749023] TCP: cubic registered
    [ 0.749094] NET: Registered protocol family 10
    [ 0.749220] NET: Registered protocol family 17
    [ 0.749227] Key type dns_resolver registered
    [ 0.749314] PM: Checking hibernation image partition /dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff
    [ 0.762323] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.775385] PM: Hibernation image not present or could not be loaded.
    [ 0.775393] registered taskstats version 1
    [ 0.775839] rtc_cmos 00:06: >setting system clock to 2012-10-26 08:16:53 UTC (1351239413)
    [ 0.776874] Freeing unused kernel memory: 760k freed
    [ 0.776957] Write protecting the kernel read-only data: 8192k
    [ 0.780137] Freeing unused kernel memory: 1472k freed
    [ 0.781606] Freeing unused kernel memory: 608k freed
    [ 0.787240] systemd-udevd[47]: starting version 194
    [ 0.813888] ACPI: bus type usb registered
    [ 0.813910] usbcore: registered new interface driver usbfs
    [ 0.813918] usbcore: registered new interface driver hub
    [ 0.813955] usbcore: registered new device driver usb
    [ 0.815211] SCSI subsystem initialized
    [ 0.816356] libata version 3.00 loaded.
    [ 0.816442] xhci_hcd 0000:00:14.0: >setting latency timer to 64
    [ 0.816447] xhci_hcd 0000:00:14.0: >xHCI Host Controller
    [ 0.816456] xhci_hcd 0000:00:14.0: >new USB bus registered, assigned bus number 1
    [ 0.816560] xhci_hcd 0000:00:14.0: >cache line size of 64 is not supported
    [ 0.816578] xhci_hcd 0000:00:14.0: >irq 21, io mem 0xd3a00000
    [ 0.816632] xhci_hcd 0000:00:14.0: >irq 41 for MSI/MSI-X
    [ 0.816791] xHCI xhci_add_endpoint called for root hub
    [ 0.816793] xHCI xhci_check_bandwidth called for root hub
    [ 0.816874] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.816904] hub 1-0:1.0: >USB hub found
    [ 0.816914] hub 1-0:1.0: >4 ports detected
    [ 0.817280] xhci_hcd 0000:00:14.0: >xHCI Host Controller
    [ 0.817286] xhci_hcd 0000:00:14.0: >new USB bus registered, assigned bus number 2
    [ 0.817469] xHCI xhci_add_endpoint called for root hub
    [ 0.817471] xHCI xhci_check_bandwidth called for root hub
    [ 0.817493] hub 2-0:1.0: >USB hub found
    [ 0.817500] hub 2-0:1.0: >4 ports detected
    [ 0.822755] ehci_hcd 0000:00:1a.0: >setting latency timer to 64
    [ 0.822761] ehci_hcd 0000:00:1a.0: >EHCI Host Controller
    [ 0.822768] ehci_hcd 0000:00:1a.0: >new USB bus registered, assigned bus number 3
    [ 0.822798] ehci_hcd 0000:00:1a.0: >debug port 2
    [ 0.826690] ehci_hcd 0000:00:1a.0: >cache line size of 64 is not supported
    [ 0.826709] ehci_hcd 0000:00:1a.0: >irq 16, io mem 0xd3a19000
    [ 0.835913] ehci_hcd 0000:00:1a.0: >USB 2.0 started, EHCI 1.00
    [ 0.836049] hub 3-0:1.0: >USB hub found
    [ 0.836052] hub 3-0:1.0: >2 ports detected
    [ 0.836166] ehci_hcd 0000:00:1d.0: >setting latency timer to 64
    [ 0.836170] ehci_hcd 0000:00:1d.0: >EHCI Host Controller
    [ 0.836177] ehci_hcd 0000:00:1d.0: >new USB bus registered, assigned bus number 4
    [ 0.836203] ehci_hcd 0000:00:1d.0: >debug port 2
    [ 0.840097] ehci_hcd 0000:00:1d.0: >cache line size of 64 is not supported
    [ 0.840110] ehci_hcd 0000:00:1d.0: >irq 23, io mem 0xd3a18000
    [ 0.849231] ehci_hcd 0000:00:1d.0: >USB 2.0 started, EHCI 1.00
    [ 0.849353] hub 4-0:1.0: >USB hub found
    [ 0.849356] hub 4-0:1.0: >2 ports detected
    [ 0.849406] ahci 0000:00:1f.2: >version 3.0
    [ 0.849473] ahci 0000:00:1f.2: >irq 42 for MSI/MSI-X
    [ 0.849524] ahci: SSS flag set, parallel bus scan disabled
    [ 0.862579] ahci 0000:00:1f.2: >AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
    [ 0.862582] ahci 0000:00:1f.2: >flags: 64bit ncq stag pm led clo pio slum part ems apst
    [ 0.862586] ahci 0000:00:1f.2: >setting latency timer to 64
    [ 0.869649] scsi0 : ahci
    [ 0.869722] scsi1 : ahci
    [ 0.869780] scsi2 : ahci
    [ 0.869834] scsi3 : ahci
    [ 0.869889] scsi4 : ahci
    [ 0.869943] scsi5 : ahci
    [ 0.870010] ata1: SATA max UDMA/133 abar m2048@0xd3a17000 port 0xd3a17100 irq 42
    [ 0.870011] ata2: DUMMY
    [ 0.870014] ata3: SATA max UDMA/133 abar m2048@0xd3a17000 port 0xd3a17200 irq 42
    [ 0.870015] ata4: DUMMY
    [ 0.870016] ata5: DUMMY
    [ 0.870016] ata6: DUMMY
    [ 1.142189] usb 3-1: >new high-speed USB device number 2 using ehci_hcd
    [ 1.188798] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.242364] ata1.00: ATA-8: ST9500325AS, 0011LVM1, max UDMA/100
    [ 1.242367] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.244122] ata1.00: configured for UDMA/100
    [ 1.244233] scsi 0:0:0:0: >Direct-Access ATA ST9500325AS 0011 PQ: 0 ANSI: 5
    [ 1.265963] hub 3-1:1.0: >USB hub found
    [ 1.266053] hub 3-1:1.0: >6 ports detected
    [ 1.371886] usb 4-1: >new high-speed USB device number 2 using ehci_hcd
    [ 1.495531] hub 4-1:1.0: >USB hub found
    [ 1.495628] hub 4-1:1.0: >6 ports detected
    [ 1.561668] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.561806] usb 3-1.3: >new full-speed USB device number 3 using ehci_hcd
    [ 1.566490] ata3.00: ATAPI: PLDS DVD-RW DS8A8SH, KL31, max UDMA/100
    [ 1.567395] ata3.00: configured for UDMA/100
    [ 1.569763] scsi 2:0:0:0: >CD-ROM PLDS DVD-RW DS8A8SH KL31 PQ: 0 ANSI: 5
    [ 1.572713] sd 0:0:0:0: >[sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.572771] sd 0:0:0:0: >[sda] Write Protect is off
    [ 1.572774] sd 0:0:0:0: >[sda] Mode Sense: 00 3a 00 00
    [ 1.572806] sd 0:0:0:0: >[sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.579557] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.579561] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.579683] sr 2:0:0:0: >Attached scsi CD-ROM sr0
    [ 1.588282] Refined TSC clocksource calibration: 2494.333 MHz.
    [ 1.588300] Switching to clocksource tsc
    [ 1.646147] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 sda9 >
    [ 1.646510] sd 0:0:0:0: >[sda] Attached SCSI disk
    [ 1.711612] usb 3-1.4: >new high-speed USB device number 4 using ehci_hcd
    [ 1.861415] usb 4-1.6: >new high-speed USB device number 3 using ehci_hcd
    [ 3.905748] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    [ 6.297029] systemd-udevd[165]: starting version 194
    [ 6.879435] ACPI: Requesting acpi_cpufreq
    [ 6.901533] Monitor-Mwait will be used to enter C-1 state
    [ 6.901538] Monitor-Mwait will be used to enter C-2 state
    [ 6.901542] ACPI: acpi_idle registered with cpuidle
    [ 7.242423] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input1
    [ 7.242428] ACPI: Power Button [PWRB]
    [ 7.243055] ACPI: AC Adapter [ACAD] (on-line)
    [ 7.243224] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input2
    [ 7.243227] ACPI: Sleep Button [SLPB]
    [ 7.243264] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 7.243282] ACPI: Lid Switch [LID0]
    [ 7.243312] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 7.243314] ACPI: Power Button [PWRF]
    [ 7.250773] thermal LNXTHERM:00: >registered as thermal_zone0
    [ 7.250778] ACPI: Thermal Zone [TZ00] (54 C)
    [ 7.450794] ACPI: Battery Slot [BAT1] (battery present)
    [ 7.582945] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612108] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612381] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612637] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612948] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 7.634516] input: Ideapad extra buttons as /devices/platform/ideapad/input/input5
    [ 7.648434] Compat-wireless backport release: compat-wireless-v3.6-rc6-1-npc
    [ 7.648436] Backport based on linux-stable.git v3.6-rc6
    [ 7.648436] compat.git: linux-stable.git
    [ 7.734886] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120320/utaddress-251)
    [ 7.734890] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.734893] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20120320/utaddress-251)
    [ 7.734896] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20120320/utaddress-251)
    [ 7.734898] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.734899] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.737294] mei 0000:00:16.0: >setting latency timer to 64
    [ 7.737362] mei 0000:00:16.0: >irq 43 for MSI/MSI-X
    [ 7.743686] mei 0000:00:16.0: >wd: failed to find the client
    [ 7.757142] agpgart-intel 0000:00:00.0: >Intel Ivybridge Chipset
    [ 7.757223] agpgart-intel 0000:00:00.0: >detected gtt size: 2097152K total, 262144K mappable
    [ 7.758105] agpgart-intel 0000:00:00.0: >detected 65536K stolen memory
    [ 7.758213] agpgart-intel 0000:00:00.0: >AGP aperture is 256M @ 0xe0000000
    [ 7.972440] Qualcomm Atheros(R) AR813x/AR815x/AR816x PCI-E Ethernet Network Driver
    [ 7.972474] alx 0000:02:00.0: >DMA to 64-BIT addresses
    [ 7.972555] alx 0000:02:00.0: >(unregistered net_device): HW Flags = 0x15
    [ 7.973019] alx 0000:02:00.0: >(unregistered net_device): reset PHY, pws = 1, az = 0, ptp = 0
    [ 7.974361] alx 0000:02:00.0: >(unregistered net_device): speed = 0x2f, autoneg = 1
    [ 7.975707] alx 0000:02:00.0: >irq 44 for MSI/MSI-X
    [ 7.975824] alx: Atheros Gigabit Network Connection
    [ 7.977650] snd_hda_intel 0000:00:1b.0: >irq 45 for MSI/MSI-X
    [ 8.008080] [drm] Initialized drm 1.1.0 20060810
    [ 8.066122] iTCO_vendor_support: vendor-support=0
    [ 8.075437] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 8.078855] scsi6 : SCSI emulation for RTS5139 USB card reader
    [ 8.078971] scsi 6:0:0:0: >Direct-Access Generic- xD/SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
    [ 8.080194] sd 6:0:0:0: >[sdb] Attached SCSI removable disk
    [ 8.080898] usbcore: registered new interface driver rts5139
    [ 8.166428] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.175247] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 8.175288] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 8.175343] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 8.188460] Linux media interface: v0.10
    [ 8.307532] Linux video capture interface: v2.00
    [ 8.337832] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2e2)
    [ 8.339661] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input6
    [ 8.339707] usbcore: registered new interface driver uvcvideo
    [ 8.339708] USB Video Class driver (1.1.1)
    [ 8.477762] Bluetooth: Core ver 2.16
    [ 8.477776] NET: Registered protocol family 31
    [ 8.477777] Bluetooth: HCI device and connection manager initialized
    [ 8.477779] Bluetooth: HCI socket layer initialized
    [ 8.477780] Bluetooth: L2CAP socket layer initialized
    [ 8.477784] Bluetooth: SCO socket layer initialized
    [ 8.491954] usbcore: registered new interface driver btusb
    [ 8.639211] hda_codec: CX20590: BIOS auto-probing.
    [ 8.640020] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 8.672690] psmouse serio1: >elantech: assuming hardware version 3 (with firmware version 0x450f02)
    [ 8.697264] psmouse serio1: >elantech: Synaptics capabilities query result 0x78, 0x17, 0x0b.
    [ 8.709692] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 8.709766] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 8.709813] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 8.710242] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
    [ 8.710247] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.710479] checking generic (e0000000 410000) vs hw (e0000000 10000000)
    [ 8.710481] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 8.710502] Console: switching to colour dummy device 80x25
    [ 8.710580] i915 0000:00:02.0: >setting latency timer to 64
    [ 8.744483] i915 0000:00:02.0: >irq 46 for MSI/MSI-X
    [ 8.744490] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 8.744491] [drm] Driver supports precise vblank timestamp query.
    [ 8.745029] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 8.745030] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
    [ 8.825185] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input11
    [ 9.132101] nvidia: disagrees about version of symbol module_layout
    [ 9.243757] usbcore: registered new interface driver ath3k
    [ 9.265032] usb 3-1.3: >USB disconnect, device number 3
    [ 9.265920] systemd-udevd[329]: failed to execute '/opt/VirtualBox/VBoxCreateUSBNode.sh' '/opt/VirtualBox/VBoxCreateUSBNode.sh --remove 189 258': No such file or directory
    [ 9.273016] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
    [ 9.400084] ath: EEPROM regdomain: 0x65
    [ 9.400085] ath: EEPROM indicates we should expect a direct regpair map
    [ 9.400087] ath: Country alpha2 being used: 00
    [ 9.400088] ath: Regpair used: 0x65
    [ 9.421060] fbcon: inteldrmfb (fb0) is primary device
    [ 9.487637] ieee80211 phy0: >Selected rate control algorithm 'ath9k_rate_control'
    [ 9.487781] Registered led device: ath9k-phy0
    [ 9.487785] ieee80211 phy0: >Atheros AR9285 Rev:2 mem=0xffffc900050e0000, irq=17
    [ 9.552614] kvm: disabled by bios
    [ 9.556577] kvm: disabled by bios
    [ 9.601270] Console: switching to colour frame buffer device 170x48
    [ 9.602975] fb0: inteldrmfb frame buffer device
    [ 9.602976] drm: registered panic notifier
    [ 9.603101] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 9.605310] acpi device:38: >registered as cooling_device4
    [ 9.605524] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 9.605938] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:36/LNXVIDEO:00/input/input12
    [ 9.611483] acpi device:44: >registered as cooling_device5
    [ 9.611810] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 9.611971] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input13
    [ 9.612048] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 9.960891] usb 3-1.3: >new full-speed USB device number 5 using ehci_hcd
    [ 10.048160] systemd-udevd[343]: failed to execute '/opt/VirtualBox/VBoxCreateUSBNode.sh' '/opt/VirtualBox/VBoxCreateUSBNode.sh 189 260 e0': No such file or directory
    [ 11.761061] EXT4-fs (sda7): re-mounted. Opts: data=ordered
    [ 11.956330] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 12.074341] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 12.321742] fuse init (API version 7.19)
    [ 12.703502] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 12.770085] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 12.840886] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    [ 12.906640] Adding 16016768k swap on /dev/sda6. Priority:-1 extents:1 across:16016768k
    I'm sorry for my English.
    Last edited by Kot Dymok (2012-10-26 08:29:53)

    I don't see any messages of loading nvidia ("NVRM") or nouveau. Are you sure that you have installed a module that is compatible with your current kernel?
    You'll also need to patch your ACPI handle or the nouveau/nvidia driver will refuse to load at all, see https://github.com/Bumblebee-Project/bbswitch/issues/2 (this is specific to some machines, your Lenovo G580 machine included)
    Last edited by Lekensteyn (2012-10-29 14:52:55)

  • Cannot find javac compiler

    I have recently installed apache tomcat and the J2SE SDk on my windows machine and have managed to get tomcat to run. However, when i try to test a jsp page I get an error saying ii cannot find the javac compiler. The error I amgetting is shown below.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:97)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:346)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:414)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
         org.apache.tools.ant.taskdefs.compilers.CompilerAdapterFactory.getCompiler(CompilerAdapterFactory.java:106)
         org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:935)
         org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:764)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:382)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    I have checked my environment variables that I set up and I cannot finad anything wrong with them as they all seem to point to the right directory. Here are my environment variables.
    CLASSPATH = C:\jdk1.5.0_02\lib\tools.jar;C:\Servers\Tomcat 5.0\common\lib\servlet-api.jar;C:\Servers\Tomcat 5.0\common\lib\jsp-api.jar
    JAVA_HOME = C:\jdk1.5.0_02
    PATH = %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\ATI-CPanel;C:\Program Files\Pragma\Clients;C:\Program Files\MySQL\MySQL Server 4.1\bin;C:\jdk1.5.0_02\bin
    Does anyone have any idea what the problem could be? Any solutions would be much appreciated.
    Thanks

    I have recently installed apache tomcat and the J2SE SDk on my windows machine and have managed to get tomcat to run.
    the error i have got is below:
    Exception:
    Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
         at org.apache.tools.ant.taskdefs.compilers.CompilerAdapterFactory.getCompiler(CompilerAdapterFactory.java:106)
         at org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:935)
         at org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:764)
         at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:282)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:328)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:427)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:142)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:536)
    Does anyone have any idea what the problem could be? Any solutions would be much appreciated.
    Thanks

  • : Cannot find any information on property 'Product' in a bean of type '

    /********jsp file ********/
    <%@ page language="java" import="taxrate.*" %>
    <HTML>
    <BODY>
    <jsp:useBean id="TaxRate" scope="application" class="taxrate.TaxRate" />
    before modify
    <br>
    product :<jsp:getProperty name="TaxRate" property="Product"/>
    �@ <br>
    rate :<jsp:getProperty name="TaxRate" property="Rate" />
    <jsp:setProperty name="TaxRate" property="Product" value="Hello" />
    <jsp:setProperty name="TaxRate" property="Rate" value="2.9" />
    after modify�F
    <br>
    product : <jsp:getProperty name="TaxRate" property="Product" />
    �@ <br>
    rate : <jsp:getProperty name="TaxRate" property="Rate" />
    </BODY></HTML>="TaxRate" property="Rate" />
    </BODY></HTML>
    /*******bean file********/
    package taxrate;
    import java.sql.*;
    public class TaxRate{
    String Product;
    double Rate;
    public TaxRate(){
    this.Product = "A001";
    this.Rate = 5;}
    public void setProduct (String ProductName)
    {this.Product = ProductName;}
    public String getProduct(){return(this.Product);}
    public void setRate (double rateValue)
    this.Rate = rateValue;
    public double getRate()
    return (this.Rate);
    /******the error is********/
    Error: 500
    Location: /client/taxrate.jsp
    Internal Servlet Error:
    org.apache.jasper.JasperException: Cannot find any information on property 'Product' in a bean of type 'com.nokianeu.client.TaxRate'
         at org.apache.jasper.runtime.JspRuntimeLibrary.getReadMethod(JspRuntimeLibrary.java:619)
         at org.apache.jasper.compiler.GetPropertyGenerator.generate(GetPropertyGenerator.java:101)
         at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.generate(JspParseEventListener.java:730)
         at org.apache.jasper.compiler.JspParseEventListener.generateAll(JspParseEventListener.java:200)
         at org.apache.jasper.compiler.JspParseEventListener.endPageProcessing(JspParseEventListener.java:169)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:183)
         at org.apache.jasper.runtime.JspServlet.loadJSP(JspServlet.java:413)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:149)
         at org.apache.jasper.runtime.JspServlet$JspServletWrapper.service(JspServlet.java:161)
         at org.apache.jasper.runtime.JspServlet.serviceJspFile(JspServlet.java:261)
         at org.apache.jasper.runtime.JspServlet.service(JspServlet.java:369)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.tomcat.core.ServletWrapper.handleRequest(ServletWrapper.java:503)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:559)
         at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:160)
         at org.apache.tomcat.service.TcpConnectionThread.run(SimpleTcpEndpoint.java:338)
         at java.lang.Thread.run(Unknown Source)
    /******* use tomcat 3.11**********/
    please give me the right answer
    thank you!

    Hi xzwsun.
    Where did you put your class taxrate.TaxRate ?
    In which folder? is it in \WEB-INF\classes ?
    so that you have \WEB-INF\classes\taxrate\TaxRate.class
    --Paul.                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for