Symbol referencing errors

The calling subroutine failed to call other subroutines which were identified as undefined symbols within it. What are the problems actually? It looks like everything is well defined. Please help. Thanks in advance.

I don't know if this is still an issue for you.
In general in recounting these kinds of problems
you need to supply more specfics such as in this
case were the subroutines and the routine in the same
source document? What is the compile step? What
specfically are the compile or runtime error messages?
Do you have a simplified code example you can show
that still illustrates the error? What is your
config, some system and OS information and the version
of the compiler, the compile command or Makefile?

Similar Messages

  • Ld: fatal symbol referencing errors when linking g++

    I have setup gcc with path=/usr/bin:/usr/sbin:/opt/sfw/bin:/opt/sfw/sbin:/opt/sfw/include/g++-3:/opt/sfw/lib/gcc-lib/i386-pc-solaris2.8/2.95.2:/usr/include:/usr/lib
    I can do # g++ -o test test.cpp
    but not # g++ -c test test.o
    get -> ld:fatal error symbol referencing error
    as well as ->
    ostream::operator<<(ostream &(*) /var/tmp/ccvxG011.o
    Undefined first referenced
    symbol in file
    cout /var/tmp/ccvhGO11.o
    I also have checked that there is no files
    gconfig.h, stdio.h, stdlib.h
    This was installed by using the companion cd
    as others has done as well.
    How do I send output using "cout" if STD C++
    gives this error , is certain functions replaced??
    a Test file with:
    ============
    <iostream>
    main()
    cout << "hello world" << endl;
    return 0;
    should work!!!

    HI
    If I can have a look at your program, may be I can shed some
    light on whats going on. Let me know your email address.
    -Manish
    "The services, software, materials and information provided at or in connection with this
    site ("Support") are offered subject to the Terms of Use at the link at the bottom of this
    page. You hereby accept these Terms by using this site, so please read these Terms
    carefully before using this site. If you do not accept these Terms, or you cannot access
    them, you cannot use this site or the Support offered. The Support, including any
    response, communication or followup by Sun, does not constitute an agreement to deliver
    any additional Support, and your use of the site and any Support is at your own risk."

  • Ld:fatal error symbol referencing error using g++

    I have setup gcc with path=/usr/bin:/usr/sbin:/opt/sfw/bin:/opt/sfw/sbin:/opt/sfw/include/g++-3:/opt/sfw/lib/gcc-lib/i386-pc-solaris2.8/2.95.2:/usr/include:/usr/lib
    I can do # g++ -o test test.cpp
    but not # g++ -c test test.o
    get -> ld:fatal error symbol referencing error
    as well as ->
    ostream::operator<<(ostream &(*) /var/tmp/ccvxG011.o
    Undefined first referenced
    symbol in file
    cout /var/tmp/ccvhGO11.o
    I also have checked that there is no files
    gconfig.h, stdio.h, stdlib.h
    This was installed by using the companion cd
    as others has done as well.
    How do I send output using "cout" if STD C++
    gives this error , is certain functions replaced??
    a Test file with:
    ============
    <iostream>
    main()
    cout << "hello world" << endl;
    return 0;
    should work!!!

    Perhaps if you do:
    #include <iostream.h>
    it will work better?
    A little note. Don't put /usr/include in your path and neither should you put the compiler's internal header dir in your path. That will confuse your compiler. The compiler should pick up its path for includes by itself and if you don't pass any arguments to GCC, it picks up its internal include dir and then the system (/usr/include).
    If by chance you get a system header and use it with GCC, but should have been the GCC header, you can get strange ld errors. Try gcc -E for more debugging.
    Alex

  • Help needed regarding symbol referencing errors.

    Hi All,
    Im trying to compile a C code on Solaris 9 machine (Configuration details: SunOS Generic_112233-12 sun4u sparc SUNW,Sun-Blade-100 , 64-bit sparcv9)
    Command I ran :
    gcc -Wall -g -DUNIX -DN_PLAT_UNIX -I ../include/ client.c ../include/prim.c -L <library path> -ltls -lccs2 -o Client_new1
    ../include/prim.c: In function `PrimCloseSocket':
    ../include/prim.c:101: warning: implicit declaration of function `close'
    ../include/prim.c: In function `PrimSemaphoreInit':
    ../include/prim.c:263: warning: implicit declaration of function `memset'
    Undefined first referenced
    symbol in file
    sem_wait /var/tmp//cco4HZ48.o (symbol belongs to implicit dependency /lib/librt.so.1)
    sem_post /var/tmp//cco4HZ48.o (symbol belongs to implicit dependency /lib/librt.so.1)
    sem_init /var/tmp//cco4HZ48.o (symbol belongs to implicit dependency /lib/librt.so.1)
    nanosleep /var/tmp//cco4HZ48.o (symbol belongs to implicit dependency /lib/librt.so.1)
    sem_destroy /var/tmp//cco4HZ48.o (symbol belongs to implicit dependency /lib/librt.so.1)
    ld: fatal: Symbol referencing errors. No output written to Client_new1
    collect2: ld returned 1 exit status
    I'm getting these symbol referencing errors and I'm totally clueless as to what needs to be done nw. Any help guys??
    Thanks.

    the MAN page for sem_wait() implies that you must link with librt ( -ltr on the command line for linking )

  • Referencing errors

    I am getting numerous referencing errors for this class. If anyone can help to shed some light on why I am getting these errors and how I can fix them, it would be greatly appreciated.
    Reptile.java:44: calculateAge() in Reptile cannot be applied to (Date)
    int currentAge = calculateAge(yearOfBirth);
    ^
    Reptile.java:46: setFoodQty() in Reptile cannot be applied to (Food)
    setFoodQty(quantity);
    ^
    Reptile.java:97: non-static method getDay() cannot be referenced from a static context
    dayOfBirth = Date.getDay();
    ^
    Reptile.java:97: incompatible types
    found : int
    required: Date
    dayOfBirth = Date.getDay();
    ^
    Reptile.java:104: non-static method getMonth() cannot be referenced from a static context
    monthOfBirth = Date.getMonth();
    ^
    Reptile.java:104: incompatible types
    found : int
    required: Date
    monthOfBirth = Date.getMonth();
    ^
    Reptile.java:111: non-static method getYear() cannot be referenced from a static context
    YOB = Date.getYear();
    ^
    Reptile.java:111: incompatible types
    found : int
    required: Date
    YOB = Date.getYear();
    ^
    Reptile.java:119: non-static method getDay() cannot be referenced from a static context
    arrivalDay = Date.getDay();
    ^
    Reptile.java:119: incompatible types
    found : int
    required: Date
    arrivalDay = Date.getDay();
    ^
    Reptile.java:126: non-static method getMonth() cannot be referenced from a static context
    arrivalMonth = Date.getMonth();
    ^
    Reptile.java:126: incompatible types
    found : int
    required: Date
    arrivalMonth = Date.getMonth();
    ^
    Reptile.java:133: non-static method getYear() cannot be referenced from a static context
    arrivalYear = Date.getYear();
    ^
    Reptile.java:133: incompatible types
    found : int
    required: Date
    arrivalYear = Date.getYear();
    ^
    Reptile.java:141: non-static method getFoodType() cannot be referenced from a static context
    preferredFood = Food.getFoodType();
    ^
    Reptile.java:141: incompatible types
    found : Food.FoodType
    required: Food
    preferredFood = Food.getFoodType();
    ^
    Reptile.java:149: cannot find symbol
    symbol : variable foodQuantity
    location: class Reptile
    foodQuantity = Food.getDosage();
    ^
    Reptile.java:149: non-static method getDosage() cannot be referenced from a static context
    foodQuantity = Food.getDosage();
    ^
    Reptile.java:197: incompatible types
    found : Date
    required: int
    return arrivalDay;
    ^
    Reptile.java:203: incompatible types
    found : Date
    required: int
    return arrivalMonth;
    ^
    Reptile.java:209: incompatible types
    found : Date
    required: int
    return arrivalYear;
    ^
    Reptile.java:221: incompatible types
    found : Food
    required: int
    return foodQTY;
    ^
    Reptile.java:235: operator - cannot be applied to int,Date
    currentAge = currentYear - YOB; //calculate age
    ^
    Reptile.java:240: cannot find symbol
    symbol : variable FoodType
    location: class Reptile
    Food testReptile = new Reptile("Larry", ReptileType.Lizard, 2000, 10, 10, 2008, FoodType.ButterflyWings, 10);
    ^
    Reptile.java:240: internal error; cannot instantiate Reptile.<init> at Reptile to ()
    Food testReptile = new Reptile("Larry", ReptileType.Lizard, 2000, 10, 10, 2008, FoodType.ButterflyWings, 10);
    ^
    Reptile.java:242: cannot find symbol
    symbol : method getReptileID()
    location: class Food
    System.out.println(testReptile.getReptileID());
    ^
    Reptile.java:244: cannot find symbol
    symbol : method getReptileName()
    location: class Food
    System.out.println(testReptile.getReptileName());
    ^
    Reptile.java:249: cannot find symbol
    symbol : method getReptileType()
    location: class Food
    System.out.println(testReptile.getReptileType());
    ^
    Reptile.java:251: cannot find symbol
    symbol : method getReptileAge()
    location: class Food
    System.out.println(testReptile.getReptileAge());
    ^
    Reptile.java:253: cannot find symbol
    symbol : method getArrivalDay()
    location: class Food
    System.out.println(testReptile.getArrivalDay() + "/" testReptile.getArrivalMonth() "/"
    ^
    Reptile.java:253: cannot find symbol
    symbol : method getArrivalMonth()
    location: class Food
    System.out.println(testReptile.getArrivalDay() + "/" testReptile.getArrivalMonth() "/"
    ^
    Reptile.java:254: cannot find symbol
    symbol : method getArrivalYear()
    location: class Food
    + testReptile.getArrivalYear());
    ^
    Reptile.java:256: cannot find symbol
    symbol : method getFood()
    location: class Food
    System.out.println(testReptile.getFood());
    ^
    Reptile.java:258: cannot find symbol
    symbol : method getFoodQTY()
    location: class Food
    System.out.println(testReptile.getFoodQTY() + "g");
    import java.util.Scanner;
    import java.util.Random;
    import java.util.Calendar;
    public class Reptile {
         private int reptileID;                                        //unique reptile ID
         private String reptileName;                                   //name of reptile
         public enum ReptileType {Snake, Lizard, Crocodile};     //enumerated list for different animal types
         private ReptileType reptileType;                         //reptile type
         private Date dayOfBirth;                                   //Reptile's year of birth
         private Date monthOfBirth;                                   //Reptile's year of birth
         private Date YOB;                                             //Reptile's year of birth (used to calculate reptile's age)
         private int currentAge;                                        //the reptile's age
         private int currentYear = 2008;                              //the default current year
         private Date arrivalDay;                                   //Day of reptile's arrivial in enclosure
         private Date arrivalMonth;                                   //Month of reptile's arrivial in enclosure
         private Date arrivalYear;                                   //Year of reptile's arrivial in enclosure
         private Food preferredFood;                                   //Reptile's food type
         private Food foodQTY;                                        //Reptile's daily food dosage
        //Default Reptile constructor
        public Reptile() {}
        //Reptile constructor
        public Reptile(String name, ReptileType type, Date yearOfBirth, Date entryDay, Date entryMonth,
             Date entryYear, Food food, Food  quantity)
             int reptileID = createID();
             setReptileName(name);
             setReptileType(type);
             setYOB(yearOfBirth);
             setArrivalMonth(entryMonth);
             setArrivalYear(entryYear);
             setArrivalDay(entryDay);
             int currentAge = calculateAge(yearOfBirth);
             setFood(food);
             setFoodQty(quantity);     
        // Mutator method to set the reptile name
            public void setReptileName(String name)
             Scanner scan = new Scanner(System.in);                         //get user input for reptile name
                 System.out.println("\nEnter the Reptile's Name...");
             reptileName = scan.nextLine();
        // Mutator method to set the reptile type
        public void setReptileType(ReptileType type)
             String newReptileType = "A";
             while (!((newReptileType.equals("S")) || (newReptileType.equals("L")) || (newReptileType.equals("C"))))
                  Scanner scan = new Scanner(System.in);                    //get user input for reptile type
                      System.out.println("\nEnter the Reptile Type...");
                  System.out.println("(S) for Snake");
                  System.out.println("(L) for Lizard");
                  System.out.println("(C) for Crocodile");
                  System.out.print("Reptile Type: ");
                  newReptileType = scan.nextLine();
                  //assign reptile types to the letters representing them, eg. S = Snake
                  if (newReptileType.equals("S"))                              
                       reptileType = ReptileType.Snake;
                       else
                            if (newReptileType.equals("L"))
                                 reptileType = ReptileType.Lizard;
                                 else
                                      if (newReptileType.equals("C"))
                                           reptileType = ReptileType.Crocodile;
                                           else
                                                System.out.println("Error. Input is not valid.");
        // Mutator method to set the reptile's day of birth
        public void setDayOfBirth(Date day)
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter the date the reptile was born. ");
             dayOfBirth = Date.getDay();
        // Mutator method to set the reptile's month of birth
        public void setMonthOfBirth(Date month)
             Scanner scan = new Scanner(System.in);
             monthOfBirth = Date.getMonth();
        // Mutator method to set the reptile's year of birth
        public void setYOB(Date year)
             Scanner scan = new Scanner(System.in);
             YOB = Date.getYear();
        // Mutator method to set the reptile's day of arrival
        public void setArrivalDay(Date day)
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter the date the reptile entered the enclosure. ");
             arrivalDay = Date.getDay();
        // Mutator method to set the reptile's month of arrival
        public void setArrivalMonth(Date month)
             Scanner scan = new Scanner(System.in);
             arrivalMonth = Date.getMonth();
        // Mutator method to set the reptile's year of arrival
        public void setArrivalYear(Date year)
             Scanner scan = new Scanner(System.in);
             arrivalYear = Date.getYear();
        // Mutator method to set the reptile's preferred food
        public void setFood(Food food)
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter the reptile's preferred food. ");
             preferredFood = Food.getFoodType();
        // Mutator method to set the reptile's daily food quantity
        public void setFood()
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter daily food quantity for the reptile. ");
             foodQuantity = Food.getDosage();
        // ReptileID accessor.
        public int getReptileID()
             return reptileID;
        // ReptileName accessor.
        public String getReptileName()
             return reptileName;
        // ReptileType accessor.
        public ReptileType getReptileType()
             return reptileType;
        // Reptile Day of Birth accessor.
        public Date getDayOfBirth()
             return dayOfBirth;
        // Reptile Month of Birth accessor.
        public Date getMonthOfBirth()
             return monthOfBirth;
        // Reptile Year of Birth accessor.
        public Date getYOB()
             return YOB;
        // Reptile currentAge accessor.
        public int getReptileAge()
             return currentAge;
         // Reptile arrival day accessor.
        public int getArrivalDay()
             return arrivalDay;
        // Reptile arrival month accessor.
        public int getArrivalMonth()
             return arrivalMonth;
        // Reptile arrival date accessor.
        public int getArrivalYear()
             return arrivalYear;
        // Reptile preferredFood accessor.
        public Food getFood()
             return preferredFood;
        // Reptile FoodQTY accessor.
        public int getFoodOTY()
             return foodQTY;
        //The createID() method produces a random reptile ID number between 0 and 100.
        public int createID()
             Random generator = new Random();
             reptileID = generator.nextInt(100) + 1;
        // The calculateAge() method calculates the reptile's current age
        public int calculateAge()
             //currentYear = Calendar.get(Calendar.YEAR) - 1900          //use a built-in Java function to calculate current year
             currentAge = currentYear - yearOfBirth;                         //calculate age
        public static void main(String args[])                               //driver Program to test class
             Food testReptile = new Reptile("Larry", ReptileType.Lizard, 2000, 10, 10, 2008, ButterflyWings, 10);
             System.out.print("Actual reptileID returned: ");
             System.out.println(testReptile.getReptileID());
             System.out.print("Actual reptile Name returned: ");
             System.out.println(testReptile.getReptileName());
             System.out.println("\nFor user input 'S', Expected reptile: Snake");
             System.out.println("For user input 'L', Expected reptile: Lizard");
             System.out.println("For user input 'C', Expected reptile: Crocodile");
             System.out.print("\nActual reptile type returned: ");
             System.out.println(testReptile.getReptileType());
             System.out.print("Actual reptile age returned: ");
             System.out.println(testReptile.getReptileAge());
             System.out.print("Actual arrival date returned: ");
             System.out.println(testReptile.getArrivalDay() + "/" +testReptile.getArrivalMonth() + "/"
                  + testReptile.getArrivalYear());
             System.out.print("Actual preferred food type returned: ");
             System.out.println(testReptile.getFood());
             System.out.print("Actual daily food dosage returned: ");
             System.out.println(testReptile.getFoodQTY() + "g");
    }

    I have changed all types to int but still am getting the same error. Any suggestions for the non-static method getDay() cannot be referenced from a static context errors I am getting?
    Reptile.java:44: calculateAge() in Reptile cannot be applied to (int)
    int currentAge = calculateAge(yearOfBirth);
    ^
    Reptile.java:46: setFoodQty() in Reptile cannot be applied to (Food)
    setFoodQty(quantity);
    ^
    Reptile.java:97: non-static method getDay() cannot be referenced from a static context
    dayOfBirth = Date.getDay();
    ^
    Reptile.java:104: non-static method getMonth() cannot be referenced from a static context
    monthOfBirth = Date.getMonth();
    ^
    Reptile.java:111: non-static method getYear() cannot be referenced from a static context
    YOB = Date.getYear();
    ^
    Reptile.java:119: non-static method getDay() cannot be referenced from a static context
    arrivalDay = Date.getDay();
    ^
    Reptile.java:126: non-static method getMonth() cannot be referenced from a static context
    arrivalMonth = Date.getMonth();
    ^
    Reptile.java:133: non-static method getYear() cannot be referenced from a static context
    arrivalYear = Date.getYear();
    ^
    Reptile.java:141: non-static method getFoodType() cannot be referenced from a static context
    preferredFood = Food.getFoodType();
    ^
    Reptile.java:149: non-static method getDosage() cannot be referenced from a static context
    foodQTY = Food.getDosage();
    ^
    Reptile.java:240: cannot find symbol
    symbol : variable FoodType
    location: class Reptile
    Food testReptile = new Reptile("Larry", ReptileType.Lizard, 2000, 10, 10, 2008, FoodType.WormSoup, 10);
    ^
    Reptile.java:240: internal error; cannot instantiate Reptile.<init> at Reptile to ()
    Food testReptile = new Reptile("Larry", ReptileType.Lizard, 2000, 10, 10, 2008, FoodType.WormSoup, 10);
    ^
    Reptile.java:242: cannot find symbol
    symbol : method getReptileID()
    location: class Food
    System.out.println(testReptile.getReptileID());
    ^
    Reptile.java:244: cannot find symbol
    symbol : method getReptileName()
    location: class Food
    System.out.println(testReptile.getReptileName());
    ^
    Reptile.java:249: cannot find symbol
    symbol : method getReptileType()
    location: class Food
    System.out.println(testReptile.getReptileType());
    ^
    Reptile.java:251: cannot find symbol
    symbol : method getReptileAge()
    location: class Food
    System.out.println(testReptile.getReptileAge());
    ^
    Reptile.java:253: cannot find symbol
    symbol : method getArrivalDay()
    location: class Food
    System.out.println(testReptile.getArrivalDay() + "/" testReptile.getArrivalMonth() "/"
    ^
    Reptile.java:253: cannot find symbol
    symbol : method getArrivalMonth()
    location: class Food
    System.out.println(testReptile.getArrivalDay() + "/" testReptile.getArrivalMonth() "/"
    ^
    Reptile.java:254: cannot find symbol
    symbol : method getArrivalYear()
    location: class Food
    + testReptile.getArrivalYear());
    ^
    Reptile.java:256: non-static method getDay() cannot be referenced from a static context
    System.out.println(Date.getDay() + "/" + Date.getMonth() + "/" + Date.getYear());
    ^
    Reptile.java:256: non-static method getMonth() cannot be referenced from a static context
    System.out.println(Date.getDay() + "/" + Date.getMonth() + "/" + Date.getYear());
    ^
    Reptile.java:256: non-static method getYear() cannot be referenced from a static context
    System.out.println(Date.getDay() + "/" + Date.getMonth() + "/" + Date.getYear());
    ^
    Reptile.java:258: cannot find symbol
    symbol : method getFood()
    location: class Food
    System.out.println(testReptile.getFood());
    ^
    Reptile.java:260: cannot find symbol
    symbol : method getFoodQTY()
    location: class Food
    System.out.println(testReptile.getFoodQTY() + "g");
    import java.util.Scanner;
    import java.util.Random;
    import java.util.Calendar;
    public class Reptile {
         private int reptileID;                                        //unique reptile ID
         private String reptileName;                                   //name of reptile
         public enum ReptileType {Snake, Lizard, Crocodile};     //enumerated list for different animal types
         private ReptileType reptileType;                         //reptile type
         private int dayOfBirth;                                        //Reptile's year of birth
         private int monthOfBirth;                                   //Reptile's year of birth
         private int YOB;                                             //Reptile's year of birth (used to calculate reptile's age)
         private int currentAge;                                        //the reptile's age
         private int currentYear = 2008;                              //the default current year
         private int arrivalDay;                                        //Day of reptile's arrivial in enclosure
         private int arrivalMonth;                                   //Month of reptile's arrivial in enclosure
         private int arrivalYear;                                   //Year of reptile's arrivial in enclosure
         private Food.FoodType preferredFood;                    //Reptile's food type
         private double foodQTY;                                        //Reptile's daily food dosage
        //Default Reptile constructor
        public Reptile() {}
        //Reptile constructor
        public Reptile(String name, ReptileType type, int yearOfBirth, int entryDay, int entryMonth,
             int entryYear, Food.FoodType food, Food  quantity)
             int reptileID = createID();
             setReptileName(name);
             setReptileType(type);
             setYOB(yearOfBirth);
             setArrivalMonth(entryMonth);
             setArrivalYear(entryYear);
             setArrivalDay(entryDay);
             int currentAge = calculateAge(yearOfBirth);
             setFood(food);
             setFoodQty(quantity);     
        // Mutator method to set the reptile name
            public void setReptileName(String name)
             Scanner scan = new Scanner(System.in);                         //get user input for reptile name
                 System.out.println("\nEnter the Reptile's Name...");
             reptileName = scan.nextLine();
        // Mutator method to set the reptile type
        public void setReptileType(ReptileType type)
             String newReptileType = "A";
             while (!((newReptileType.equals("S")) || (newReptileType.equals("L")) || (newReptileType.equals("C"))))
                  Scanner scan = new Scanner(System.in);                    //get user input for reptile type
                      System.out.println("\nEnter the Reptile Type...");
                  System.out.println("(S) for Snake");
                  System.out.println("(L) for Lizard");
                  System.out.println("(C) for Crocodile");
                  System.out.print("Reptile Type: ");
                  newReptileType = scan.nextLine();
                  //assign reptile types to the letters representing them, eg. S = Snake
                  if (newReptileType.equals("S"))                              
                       reptileType = ReptileType.Snake;
                       else
                            if (newReptileType.equals("L"))
                                 reptileType = ReptileType.Lizard;
                                 else
                                      if (newReptileType.equals("C"))
                                           reptileType = ReptileType.Crocodile;
                                           else
                                                System.out.println("Error. Input is not valid.");
        // Mutator method to set the reptile's day of birth
        public void setDayOfBirth(int day)
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter the date the reptile was born. ");
             dayOfBirth = Date.getDay();
        // Mutator method to set the reptile's month of birth
        public void setMonthOfBirth(int month)
             Scanner scan = new Scanner(System.in);
             monthOfBirth = Date.getMonth();
        // Mutator method to set the reptile's year of birth
        public void setYOB(int year)
             Scanner scan = new Scanner(System.in);
             YOB = Date.getYear();
        // Mutator method to set the reptile's day of arrival
        public void setArrivalDay(int day)
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter the date the reptile entered the enclosure. ");
             arrivalDay = Date.getDay();
        // Mutator method to set the reptile's month of arrival
        public void setArrivalMonth(int month)
             Scanner scan = new Scanner(System.in);
             arrivalMonth = Date.getMonth();
        // Mutator method to set the reptile's year of arrival
        public void setArrivalYear(int year)
             Scanner scan = new Scanner(System.in);
             arrivalYear = Date.getYear();
        // Mutator method to set the reptile's preferred food
        public void setFood(Food.FoodType food)
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter the reptile's preferred food. ");
             preferredFood = Food.getFoodType();
        // Mutator method to set the reptile's daily food quantity
        public void setFoodQty()
             Scanner scan = new Scanner(System.in);
             System.out.println("You are required to enter daily food quantity for the reptile. ");
             foodQTY = Food.getDosage();
        // ReptileID accessor.
        public int getReptileID()
             return reptileID;
        // ReptileName accessor.
        public String getReptileName()
             return reptileName;
        // ReptileType accessor.
        public ReptileType getReptileType()
             return reptileType;
        // Reptile Day of Birth accessor.
        public int getDayOfBirth()
             return dayOfBirth;
        // Reptile Month of Birth accessor.
        public int getMonthOfBirth()
             return monthOfBirth;
        // Reptile Year of Birth accessor.
        public int getYOB()
             return YOB;
        // Reptile currentAge accessor.
        public int getReptileAge()
             return currentAge;
         // Reptile arrival day accessor.
        public int getArrivalDay()
             return arrivalDay;
        // Reptile arrival month accessor.
        public int getArrivalMonth()
             return arrivalMonth;
        // Reptile arrival date accessor.
        public int getArrivalYear()
             return arrivalYear;
        // Reptile preferredFood accessor.
        public Food.FoodType getFood()
             return preferredFood;
        // Reptile FoodQTY accessor.
        public double getFoodOTY()
             return foodQTY;
        //The createID() method produces a random reptile ID number between 0 and 100.
        public int createID()
             Random generator = new Random();
             reptileID = generator.nextInt(100) + 1;
        // The calculateAge() method calculates the reptile's current age
        public int calculateAge()
             //currentYear = Calendar.get(Calendar.YEAR) - 1900          //use a built-in Java function to calculate current year
             currentAge = currentYear - YOB;                                   //calculate age
        public static void main(String args[])                               //driver Program to test class
             Food testReptile = new Reptile("Larry", ReptileType.Lizard, 2000, 10, 10, 2008, FoodType.WormSoup, 10);
             System.out.print("Actual reptileID returned: ");
             System.out.println(testReptile.getReptileID());
             System.out.print("Actual reptile Name returned: ");
             System.out.println(testReptile.getReptileName());
             System.out.println("\nFor user input 'S', Expected reptile: Snake");
             System.out.println("For user input 'L', Expected reptile: Lizard");
             System.out.println("For user input 'C', Expected reptile: Crocodile");
             System.out.print("\nActual reptile type returned: ");
             System.out.println(testReptile.getReptileType());
             System.out.print("Actual reptile age returned: ");
             System.out.println(testReptile.getReptileAge());
             System.out.print("Actual arrival date returned: ");
             System.out.println(testReptile.getArrivalDay() + "/" +testReptile.getArrivalMonth() + "/"
                  + testReptile.getArrivalYear());
             //System.out.print("Please enter the arrival date: ");
             System.out.println(Date.getDay() + "/" + Date.getMonth() + "/" + Date.getYear());
             System.out.print("Actual preferred food type returned: ");
             System.out.println(testReptile.getFood());
             System.out.print("Actual daily food dosage returned: ");
             System.out.println(testReptile.getFoodQTY() + "g");
    }

  • Symbol Lookup Error - GTK Applications Fail to Run

    I receive the following error for the majority of graphical applications I'm running on a laptop.
    application: symbol lookup error: /usr/lib/libgdk-x11-2.0.so.0: undefined symbol: g_source_set_name
    Those applications include,  but are not limited to, firefox, chromium, thunar and uzbl-brower. The one exception I have noticed is VLC. Clearly this is a product of the problem with the GTK library, but I still can't figure out how to solve the error. I found an Ubuntu thread that referenced the problem, but the solution did not help me. Any help would be greatly appreciated.
    Edit: Corrected typo as noted by fphillips.
    Last edited by filam (2010-10-17 10:14:44)

    Thank you for the comment fphillips. Reinstalling GTK2, which I tried earlier, doesn't seem to have any effect.
    I had an error with Pacman, which I thought I fixed, but may be the real source of my aforementioned error.
    When I (re)installed a package I was receiving the following error:
    error: could not open file /var/lib/pacman/local/glibc-2.12.1-2/depends
    I created a new file copied from another Arch Linux install, which removed the error, but may not have removed the problem.
    Oddly readelf -s /usr/lib/libgdk-x11-2.0.so.0|grep g_source_set_name returns nothing on my functioning netbook, but returns the same output from your post on my broken laptop.
    Last edited by filam (2010-10-17 10:30:22)

  • Xorg: symbol lookup error: path : undifined symbol: LoaderReqSymLists

    having problems with xorg.
    first noticed something was wrong when i ran Xorg -configure (yes, i now realize that this is an outdated method)
    the output from that was:
    X.Org S Server 1.11.3
    Release Date: 2011-12-16
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.1.5-1-ARCH x86-64
    Current Operating System: Linux rustyTower 3.1.5-1-ARCH #1 SMP PREEMPT Sat Dec 10 14:43:09 CET 2011 x86-64
    Kernel command line: root=/dev/sda1 ro
    Build Date: 17 December 2011 09:17:41AM
    Current version of pixman: 0.24.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--)probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (++) Log file: "/var/log/Xorg.0.log", Time; Fri Dec 23 10:46:23 2011
    List of video drivers:
    rendition
    cirrus
    ati
    s3virge
    mach64
    savage
    i740
    r128
    v4l
    xgixp
    tdfx
    sis
    apm
    ast
    glint
    radeon
    sisusb
    vmware
    nv
    i128
    dummy
    intel
    ark
    siliconmotion
    mga
    trident
    neomagic
    vmwlegacy
    s3
    voodoo
    xgi
    chips
    tseng
    fbdev
    vesa
    Xorg: symbol lookup error: /usr/lib/xorg/modules/drivers/xgixp_drv.so: undefined symbol: LoaderReqSymLists
    the /var/log/Xorg.0.log file is
    [ 3881.044]
    X.Org X Server 1.11.3
    Release Date: 2011-12-16
    [ 3881.044] X Protocol Version 11, Revision 0
    [ 3881.044] Build Operating System: Linux 3.1.5-1-ARCH x86_64
    [ 3881.046] Current Operating System: Linux rustyTower 3.1.5-1-ARCH #1 SMP PREEMPT Sat Dec 10 14:43:09 CET 2011 x86_64
    [ 3881.047] Kernel command line: root=/dev/sda1 ro
    [ 3881.048] Build Date: 17 December 2011 09:17:41AM
    [ 3881.050]
    [ 3881.051] Current version of pixman: 0.24.0
    [ 3881.053] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 3881.056] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3881.060] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 23 11:03:22 2011
    [ 3881.061] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 3881.063] (==) No Layout section. Using the first Screen section.
    [ 3881.063] (==) No screen section available. Using defaults.
    [ 3881.063] (**) |-->Screen "Default Screen Section" (0)
    [ 3881.063] (**) | |-->Monitor "<default monitor>"
    [ 3881.063] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 3881.063] (==) Automatically adding devices
    [ 3881.063] (==) Automatically enabling devices
    [ 3881.063] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 3881.063] Entry deleted from font path.
    [ 3881.063] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 3881.063] Entry deleted from font path.
    [ 3881.063] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 3881.063] Entry deleted from font path.
    [ 3881.063] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 3881.063] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 3881.063] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 3881.063] (II) Loader magic: 0x7ccae0
    [ 3881.063] (II) Module ABI versions:
    [ 3881.063] X.Org ANSI C Emulation: 0.4
    [ 3881.063] X.Org Video Driver: 11.0
    [ 3881.063] X.Org XInput driver : 13.0
    [ 3881.063] X.Org Server Extension : 6.0
    [ 3881.064] (--) PCI:*(0:2:0:0) 1002:9498:1458:21c5 rev 0, Mem @ 0xd0000000/268435456, 0xfebf0000/65536, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 3881.064] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 3881.064] (II) LoadModule: "extmod"
    [ 3881.064] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 3881.064] (II) Module extmod: vendor="X.Org Foundation"
    [ 3881.064] compiled for 1.11.3, module version = 1.0.0
    [ 3881.064] Module class: X.Org Server Extension
    [ 3881.064] ABI class: X.Org Server Extension, version 6.0
    [ 3881.064] (II) Loading extension MIT-SCREEN-SAVER
    [ 3881.064] (II) Loading extension XFree86-VidModeExtension
    [ 3881.064] (II) Loading extension XFree86-DGA
    [ 3881.064] (II) Loading extension DPMS
    [ 3881.064] (II) Loading extension XVideo
    [ 3881.064] (II) Loading extension XVideo-MotionCompensation
    [ 3881.064] (II) Loading extension X-Resource
    [ 3881.064] (II) LoadModule: "dbe"
    [ 3881.064] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 3881.064] (II) Module dbe: vendor="X.Org Foundation"
    [ 3881.064] compiled for 1.11.3, module version = 1.0.0
    [ 3881.064] Module class: X.Org Server Extension
    [ 3881.064] ABI class: X.Org Server Extension, version 6.0
    [ 3881.064] (II) Loading extension DOUBLE-BUFFER
    [ 3881.064] (II) LoadModule: "glx"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3881.065] (II) Module glx: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.0.0
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (==) AIGLX enabled
    [ 3881.065] (II) Loading extension GLX
    [ 3881.065] (II) LoadModule: "record"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 3881.065] (II) Module record: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.13.0
    [ 3881.065] Module class: X.Org Server Extension
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (II) Loading extension RECORD
    [ 3881.065] (II) LoadModule: "dri"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 3881.065] (II) Module dri: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.0.0
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (II) Loading extension XFree86-DRI
    [ 3881.065] (II) LoadModule: "dri2"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 3881.065] (II) Module dri2: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.2.0
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (II) Loading extension DRI2
    [ 3881.065] (==) Matched ati as autoconfigured driver 0
    [ 3881.065] (==) Matched vesa as autoconfigured driver 1
    [ 3881.065] (==) Matched fbdev as autoconfigured driver 2
    [ 3881.065] (==) Assigned the driver to the xf86ConfigLayout
    [ 3881.065] (II) LoadModule: "ati"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 3881.066] (II) Module ati: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.11.1.902, module version = 6.14.3
    [ 3881.066] Module class: X.Org Video Driver
    [ 3881.066] ABI class: X.Org Video Driver, version 11.0
    [ 3881.066] (II) LoadModule: "radeon"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 3881.066] (II) Module radeon: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.11.1.902, module version = 6.14.3
    [ 3881.066] Module class: X.Org Video Driver
    [ 3881.066] ABI class: X.Org Video Driver, version 11.0
    [ 3881.066] (II) LoadModule: "vesa"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 3881.066] (II) Module vesa: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.11.1, module version = 2.3.0
    [ 3881.066] Module class: X.Org Video Driver
    [ 3881.066] ABI class: X.Org Video Driver, version 11.0
    [ 3881.066] (II) LoadModule: "fbdev"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 3881.066] (II) Module fbdev: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.10.99.902, module version = 0.4.2
    [ 3881.067] ABI class: X.Org Video Driver, version 11.0
    [ 3881.067] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS
    [ 3881.070] (II) VESA: driver for VESA chipsets: vesa
    [ 3881.070] (II) FBDEV: driver for framebuffer: fbdev
    [ 3881.070] (--) using VT number 7
    [ 3881.081] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 3881.081] (II) [KMS] Kernel modesetting enabled.
    [ 3881.081] (WW) Falling back to old probe method for vesa
    [ 3881.081] (WW) Falling back to old probe method for fbdev
    [ 3881.081] (II) Loading sub module "fbdevhw"
    [ 3881.081] (II) LoadModule: "fbdevhw"
    [ 3881.082] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 3881.082] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 3881.082] compiled for 1.11.3, module version = 0.0.2
    [ 3881.082] ABI class: X.Org Video Driver, version 11.0
    [ 3881.082] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 3881.082] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 3881.082] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 3881.082] (==) RADEON(0): Default visual is TrueColor
    [ 3881.082] (==) RADEON(0): RGB weight 888
    [ 3881.082] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 3881.082] (--) RADEON(0): Chipset: "ATI RV730 PRO [Radeon HD 4650]" (ChipID = 0x9498)
    [ 3881.082] (II) RADEON(0): PCIE card detected
    [ 3881.082] drmOpenDevice: node name is /dev/dri/card0
    [ 3881.082] drmOpenDevice: open result is 8, (OK)
    [ 3881.082] drmOpenByBusid: Searching for BusID pci:0000:02:00.0
    [ 3881.082] drmOpenDevice: node name is /dev/dri/card0
    [ 3881.082] drmOpenDevice: open result is 8, (OK)
    [ 3881.082] drmOpenByBusid: drmOpenMinor returns 8
    [ 3881.082] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 3881.082] (II) Loading sub module "exa"
    [ 3881.082] (II) LoadModule: "exa"
    [ 3881.082] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 3881.082] (II) Module exa: vendor="X.Org Foundation"
    [ 3881.082] compiled for 1.11.3, module version = 2.5.0
    [ 3881.082] ABI class: X.Org Video Driver, version 11.0
    [ 3881.082] (II) RADEON(0): KMS Color Tiling: enabled
    [ 3881.082] (II) RADEON(0): KMS Pageflipping: enabled
    [ 3881.082] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 3881.086] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 3881.106] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 3881.162] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 3881.166] (II) RADEON(0): EDID for output HDMI-0
    [ 3881.186] (II) RADEON(0): EDID for output VGA-0
    [ 3881.242] (II) RADEON(0): EDID for output DVI-0
    [ 3881.242] (II) RADEON(0): Manufacturer: ACR Model: 120 Serial#: 270597208
    [ 3881.242] (II) RADEON(0): Year: 2011 Week: 2
    [ 3881.242] (II) RADEON(0): EDID Version: 1.3
    [ 3881.242] (II) RADEON(0): Digital Display Input
    [ 3881.242] (II) RADEON(0): Max Image Size [cm]: horiz.: 52 vert.: 29
    [ 3881.242] (II) RADEON(0): Gamma: 2.20
    [ 3881.242] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 3881.242] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3881.242] (II) RADEON(0): First detailed timing is preferred mode
    [ 3881.242] (II) RADEON(0): redX: 0.640 redY: 0.329 greenX: 0.300 greenY: 0.600
    [ 3881.242] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 3881.242] (II) RADEON(0): Supported established timings:
    [ 3881.242] (II) RADEON(0): 720x400@70Hz
    [ 3881.242] (II) RADEON(0): 640x480@60Hz
    [ 3881.242] (II) RADEON(0): 640x480@67Hz
    [ 3881.242] (II) RADEON(0): 640x480@72Hz
    [ 3881.242] (II) RADEON(0): 800x600@56Hz
    [ 3881.242] (II) RADEON(0): 800x600@60Hz
    [ 3881.242] (II) RADEON(0): 800x600@72Hz
    [ 3881.242] (II) RADEON(0): 1024x768@60Hz
    [ 3881.242] (II) RADEON(0): 1024x768@70Hz
    [ 3881.242] (II) RADEON(0): Manufacturer's mask: 10
    [ 3881.242] (II) RADEON(0): Supported standard timings:
    [ 3881.242] (II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 3881.242] (II) RADEON(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 3881.242] (II) RADEON(0): #2: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 3881.242] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 3881.242] (II) RADEON(0): #4: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 3881.242] (II) RADEON(0): #5: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 3881.242] (II) RADEON(0): #6: hsize: 1920 vsize 1080 refresh: 60 vid: 49361
    [ 3881.242] (II) RADEON(0): Supported detailed timing:
    [ 3881.242] (II) RADEON(0): clock: 138.5 MHz Image Size: 521 x 293 mm
    [ 3881.242] (II) RADEON(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 3881.242] (II) RADEON(0): v_active: 1080 v_sync: 1082 v_sync_end 1087 v_blanking: 1111 v_border: 0
    [ 3881.242] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 84 kHz, PixClock max 185 MHz
    [ 3881.242] (II) RADEON(0): Serial No: LK60C0134030
    [ 3881.242] (II) RADEON(0): Monitor name: G235H
    [ 3881.242] (II) RADEON(0): EDID (in hex):
    [ 3881.242] (II) RADEON(0): 00ffffffffffff000472200158fc2010
    [ 3881.242] (II) RADEON(0): 0215010380341d78eade95a3544c9926
    [ 3881.242] (II) RADEON(0): 0f5054bb8c10b300714f810095008180
    [ 3881.242] (II) RADEON(0): 81c0d1c001011a3680a070381f403020
    [ 3881.242] (II) RADEON(0): 250009252100001f000000fd00384b1f
    [ 3881.242] (II) RADEON(0): 5412000a202020202020000000ff004c
    [ 3881.242] (II) RADEON(0): 4b363043303133343033300a000000fc
    [ 3881.242] (II) RADEON(0): 0047323335480a2020202020202000e4
    [ 3881.242] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 3881.242] (II) RADEON(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1082 1087 1111 +hsync +vsync (66.6 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 3881.242] (II) RADEON(0): Output HDMI-0 disconnected
    [ 3881.242] (II) RADEON(0): Output VGA-0 disconnected
    [ 3881.242] (II) RADEON(0): Output DVI-0 connected
    [ 3881.242] (II) RADEON(0): Using exact sizes for initial modes
    [ 3881.242] (II) RADEON(0): Output DVI-0 using initial mode 1920x1080
    [ 3881.242] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 3881.242] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:40000000 visible:f7d7000
    [ 3881.242] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 3881.242] (==) RADEON(0): DPI set to (96, 96)
    [ 3881.242] (II) Loading sub module "fb"
    [ 3881.242] (II) LoadModule: "fb"
    [ 3881.242] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 3881.243] (II) Module fb: vendor="X.Org Foundation"
    [ 3881.243] compiled for 1.11.3, module version = 1.0.0
    [ 3881.243] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3881.243] (II) Loading sub module "ramdac"
    [ 3881.243] (II) LoadModule: "ramdac"
    [ 3881.243] (II) Module "ramdac" already built-in
    [ 3881.243] (II) UnloadModule: "vesa"
    [ 3881.243] (II) Unloading vesa
    [ 3881.243] (II) UnloadModule: "fbdev"
    [ 3881.243] (II) Unloading fbdev
    [ 3881.243] (II) UnloadModule: "fbdevhw"
    [ 3881.243] (II) Unloading fbdevhw
    [ 3881.243] (--) Depth 24 pixmap format is 32 bpp
    [ 3881.243] (II) RADEON(0): [DRI2] Setup complete
    [ 3881.243] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 3881.243] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 3881.243] (II) RADEON(0): Front buffer size: 8100K
    [ 3881.243] (II) RADEON(0): VRAM usage limit set to 221119K
    [ 3881.243] (==) RADEON(0): Backing store disabled
    [ 3881.243] (II) RADEON(0): Direct rendering enabled
    [ 3881.243] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 3881.243] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 3881.243] (II) EXA(0): Driver registered support for the following operations:
    [ 3881.243] (II) Solid
    [ 3881.243] (II) Copy
    [ 3881.243] (II) Composite (RENDER acceleration)
    [ 3881.243] (II) UploadToScreen
    [ 3881.243] (II) DownloadFromScreen
    [ 3881.243] (II) RADEON(0): Acceleration enabled
    [ 3881.243] (==) RADEON(0): DPMS enabled
    [ 3881.243] (==) RADEON(0): Silken mouse enabled
    [ 3881.243] (II) RADEON(0): Set up textured video
    [ 3881.243] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 3881.243] (II) RADEON(0): [XvMC] Extension initialized.
    [ 3881.243] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 3881.243] (--) RandR disabled
    [ 3881.243] (II) Initializing built-in extension Generic Event Extension
    [ 3881.243] (II) Initializing built-in extension SHAPE
    [ 3881.243] (II) Initializing built-in extension MIT-SHM
    [ 3881.243] (II) Initializing built-in extension XInputExtension
    [ 3881.243] (II) Initializing built-in extension XTEST
    [ 3881.243] (II) Initializing built-in extension BIG-REQUESTS
    [ 3881.243] (II) Initializing built-in extension SYNC
    [ 3881.243] (II) Initializing built-in extension XKEYBOARD
    [ 3881.243] (II) Initializing built-in extension XC-MISC
    [ 3881.243] (II) Initializing built-in extension SECURITY
    [ 3881.243] (II) Initializing built-in extension XINERAMA
    [ 3881.243] (II) Initializing built-in extension XFIXES
    [ 3881.243] (II) Initializing built-in extension RENDER
    [ 3881.243] (II) Initializing built-in extension RANDR
    [ 3881.243] (II) Initializing built-in extension COMPOSITE
    [ 3881.243] (II) Initializing built-in extension DAMAGE
    [ 3881.251] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 3881.251] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 3881.251] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 3881.251] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 3881.251] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 3881.251] (II) AIGLX: Loaded and initialized r600
    [ 3881.251] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 3881.252] (II) RADEON(0): Setting screen physical size to 508 x 285
    [ 3881.334] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 3881.334] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3881.334] (II) LoadModule: "evdev"
    [ 3881.334] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.335] (II) Module evdev: vendor="X.Org Foundation"
    [ 3881.335] compiled for 1.10.99.902, module version = 2.6.0
    [ 3881.335] Module class: X.Org XInput Driver
    [ 3881.335] ABI class: X.Org XInput driver, version 13.0
    [ 3881.335] (II) Using input driver 'evdev' for 'Power Button'
    [ 3881.335] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.335] (**) Power Button: always reports core events
    [ 3881.335] (**) Power Button: Device: "/dev/input/event3"
    [ 3881.335] (--) Power Button: Found keys
    [ 3881.335] (II) Power Button: Configuring as keyboard
    [ 3881.335] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 3881.335] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 3881.335] (**) Option "xkb_rules" "evdev"
    [ 3881.335] (**) Option "xkb_model" "evdev"
    [ 3881.335] (**) Option "xkb_layout" "us"
    [ 3881.358] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 3881.358] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3881.358] (II) Using input driver 'evdev' for 'Power Button'
    [ 3881.358] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.359] (**) Power Button: always reports core events
    [ 3881.359] (**) Power Button: Device: "/dev/input/event2"
    [ 3881.359] (--) Power Button: Found keys
    [ 3881.359] (II) Power Button: Configuring as keyboard
    [ 3881.359] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 3881.359] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 3881.359] (**) Option "xkb_rules" "evdev"
    [ 3881.359] (**) Option "xkb_model" "evdev"
    [ 3881.359] (**) Option "xkb_layout" "us"
    [ 3881.359] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP (/dev/input/event5)
    [ 3881.359] (II) No input driver/identifier specified (ignoring)
    [ 3881.359] (II) config/udev: Adding input device Logitech (/dev/input/event1)
    [ 3881.359] (**) Logitech: Applying InputClass "evdev pointer catchall"
    [ 3881.359] (II) Using input driver 'evdev' for 'Logitech'
    [ 3881.359] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.359] (**) Logitech: always reports core events
    [ 3881.359] (**) Logitech: Device: "/dev/input/event1"
    [ 3881.359] (--) Logitech: Found 3 mouse buttons
    [ 3881.359] (--) Logitech: Found scroll wheel(s)
    [ 3881.359] (--) Logitech: Found relative axes
    [ 3881.359] (--) Logitech: Found x and y relative axes
    [ 3881.359] (II) Logitech: Configuring as mouse
    [ 3881.359] (II) Logitech: Adding scrollwheel support
    [ 3881.359] (**) Logitech: YAxisMapping: buttons 4 and 5
    [ 3881.359] (**) Logitech: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3881.359] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.0/input/input1/event1"
    [ 3881.359] (II) XINPUT: Adding extended input device "Logitech" (type: MOUSE, id 8)
    [ 3881.359] (II) Logitech: initialized for relative axes.
    [ 3881.360] (**) Logitech: (accel) keeping acceleration scheme 1
    [ 3881.360] (**) Logitech: (accel) acceleration profile 0
    [ 3881.360] (**) Logitech: (accel) acceleration factor: 2.000
    [ 3881.360] (**) Logitech: (accel) acceleration threshold: 4
    [ 3881.360] (II) config/udev: Adding input device Logitech (/dev/input/mouse0)
    [ 3881.360] (II) No input driver/identifier specified (ignoring)
    [ 3881.360] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 3881.360] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3881.360] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 3881.360] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.360] (**) AT Translated Set 2 keyboard: always reports core events
    [ 3881.360] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 3881.360] (--) AT Translated Set 2 keyboard: Found keys
    [ 3881.360] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 3881.360] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 3881.360] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 3881.360] (**) Option "xkb_rules" "evdev"
    [ 3881.360] (**) Option "xkb_model" "evdev"
    [ 3881.360] (**) Option "xkb_layout" "us"
    [ 3881.360] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 3881.360] (II) No input driver/identifier specified (ignoring)
    [ 4330.702] (II) Power Button: Close
    [ 4330.703] (II) UnloadModule: "evdev"
    [ 4330.703] (II) Unloading evdev
    [ 4330.746] (II) Power Button: Close
    [ 4330.746] (II) UnloadModule: "evdev"
    [ 4330.746] (II) Unloading evdev
    [ 4330.849] (II) Logitech: Close
    [ 4330.849] (II) UnloadModule: "evdev"
    [ 4330.849] (II) Unloading evdev
    [ 4330.956] (II) AT Translated Set 2 keyboard: Close
    [ 4330.956] (II) UnloadModule: "evdev"
    [ 4330.956] (II) Unloading evdev
    [ 4330.980] Server terminated successfully (0). Closing log file.
    after i execute:
    pacman -S xorg-xinit xorg-twm xorg-xclock xterm
    both xinit and startx work fine; i can use the keyboard and mouse
    so far i've tried reinstalling / updating with:
    pacman -S xorg
    pacman -S xorg-server
    pacman -S xorg-apps
    pacman -S xf86-video-ati
    the thread https://bbs.archlinux.org/viewtopic.php?id=126754 recommends removing the extra drivers (i have them all downloaded) by using this command:
    pacman -Rns $(pacman -Qqs xorg-drivers | grep -v xf86-input-evdev)
    the output that i get is:
    error: '1.5.0-2': target not found
    when i try to run fluxbox i get:
    Error: Couldn't connect to XServer
    the output i get from lspci | grep VGA is:
    02.00 VGA compatible controller: ATI Technologies Inc RV730 PRO [Radeon HD 4650]
    a similar problem was reported at https://bugzilla.novell.com/show_bug.cgi?id=667877
    i really don't know what they are talking about with using 'nomodset' and i'm not even sure that it applies to my situation
    hope thats enough info to get started on solving this problem

    played around with the .xinitrc file for a while after i got home from work and was able to get fluxbox running.  i would say problem solved, but i guess there wasn't really  a problem after all, just lack of reading. 
    don't know how i overlooked the wiki documentation on .xinitrc found at https://wiki.archlinux.org/index.php/Xinitrc
    mods please close this thread.

  • Pacman: symbol lookup error

    Not sure how to deal with this. I have tried renaming some files but that doesn't seem to help at all, so I have moved them back to where they were.
    Some of what I did here was clearly the wrong thing:
    [root@archtop /]# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] Y
    resolving dependencies...
    warning: dependency cycle detected:
    warning: udev will be installed before its util-linux dependency
    looking for inter-conflicts...
    :: kmod and module-init-tools are in conflict. Remove module-init-tools? [y/N] Y
    :: util-linux and util-linux-ng are in conflict. Remove util-linux-ng? [y/N] Y
    :: gnupg and gnupg2 are in conflict. Remove gnupg2? [y/N] Y
    Targets (49): acl-2.2.51-1 attr-2.4.46-1 bash-4.2.024-2 bzip2-1.0.6-3 coreutils-8.16-2 cracklib-2.8.18-2 curl-7.25.0-1 db-5.3.15-1
    dirmngr-1.1.0-4 e2fsprogs-1.42.1-1 expat-2.1.0-1 findutils-4.4.2-4 gawk-4.0.1-1 gcc-libs-4.7.0-4 gdbm-1.10-1
    glib2-2.30.2-2 glibc-2.15-10 gmp-5.0.4-1 gnupg-2.0.19-1 gnupg2-2.0.18-1 [removal] gpgme-1.3.1-4 kmod-7-2
    libarchive-3.0.4-1 libcap-2.22-2 libffi-3.0.10-1 libgcrypt-1.5.0-1 libgpg-error-1.10-1 libgssglue-0.3-1 libldap-2.4.30-1
    libtirpc-0.2.2-2 linux-api-headers-3.3-1 module-init-tools-3.11.1-2 [removal] ncurses-5.9-3 openssl-1.0.1-2
    pacman-mirrorlist-20120211-1 pam-1.1.5-2 pciutils-3.1.9-1 pcre-8.30-1 perl-5.14.2-7 readline-6.2.002-1 sed-4.2.1-4
    tzdata-2012c-1 udev-182-1 usbutils-005-1 util-linux-2.21.1-2 util-linux-ng-2.18-2 [removal] xz-5.0.3-2 zlib-1.2.6-1
    pacman-4.0.3-1
    Total Installed Size: 208.48 MiB
    Net Upgrade Size: 10.13 MiB
    Proceed with installation? [Y/n] Y
    pacman: symbol lookup error: /usr/lib/libgpgme.so.11: undefined symbol: gpg_err_set_errno------------------------------------------------] 0%
    [root@archtop /]# which pacman
    /usr/bin/pacman
    [root@archtop /]# ldd /usr/bin/pacman
    linux-gate.so.1 => (0xb782c000)
    libalpm.so.7 => /usr/lib/libalpm.so.7 (0xb77f0000)
    libc.so.6 => /lib/libc.so.6 (0xb764e000)
    libcurl.so.4 => /usr/lib/libcurl.so.4 (0xb75f2000)
    libgpgme.so.11 => /usr/lib/libgpgme.so.11 (0xb75be000)
    libarchive.so.12 => /usr/lib/libarchive.so.12 (0xb752b000)
    libcrypto.so.1.0.0 => /usr/lib/libcrypto.so.1.0.0 (0xb73b1000)
    /lib/ld-linux.so.2 (0xb782d000)
    libssh2.so.1 => /usr/lib/libssh2.so.1 (0xb7388000)
    librt.so.1 => /lib/librt.so.1 (0xb737f000)
    libssl.so.1.0.0 => /usr/lib/libssl.so.1.0.0 (0xb732e000)
    libdl.so.2 => /lib/libdl.so.2 (0xb7328000)
    libz.so.1 => /usr/lib/libz.so.1 (0xb7313000)
    libpthread.so.0 => /lib/libpthread.so.0 (0xb72f8000)
    libassuan.so.0 => /usr/lib/libassuan.so.0 (0xb72e6000)
    libgpg-error.so.0 => /lib/libgpg-error.so.0 (0xb72e2000)
    libacl.so.1 => /lib/libacl.so.1 (0xb72da000)
    libattr.so.1 => /lib/libattr.so.1 (0xb72d5000)
    libexpat.so.1 => /usr/lib/libexpat.so.1 (0xb72af000)
    liblzma.so.5 => /usr/lib/liblzma.so.5 (0xb7289000)
    libbz2.so.1.0 => /lib/libbz2.so.1.0 (0xb7278000)
    [root@archtop /]# mv /lib/libgpg-error.so.0 /lib/libgpg-error.so.0.old
    [root@archtop /]# pacman -Syu
    pacman: error while loading shared libraries: libgpg-error.so.0: cannot open shared object file: No such file or directory
    [root@archtop /]# mv /lib/libgpg-error.so.0.old /lib/libgpg-error.so.0
    [root@archtop /]# pacman -Syu
    :: Synchronizing package databases...
    error: failed to update core (unable to lock database)
    error: failed to update extra (unable to lock database)
    error: failed to update community (unable to lock database)
    error: failed to synchronize any databases
    error: failed to init transaction (unable to lock database)
    if you're sure a package manager is not already
    running, you can remove /var/lib/pacman/db.lck
    [root@archtop /]# mv /var/lib/pacman/db.lck /var/lib/pacman/db.lck-backup4
    [root@archtop /]# pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] Y
    resolving dependencies...
    warning: dependency cycle detected:
    warning: udev will be installed before its util-linux dependency
    looking for inter-conflicts...
    :: kmod and module-init-tools are in conflict. Remove module-init-tools? [y/N] Y
    :: util-linux and util-linux-ng are in conflict. Remove util-linux-ng? [y/N] Y
    :: gnupg and gnupg2 are in conflict. Remove gnupg2? [y/N] Y
    Targets (49): acl-2.2.51-1 attr-2.4.46-1 bash-4.2.024-2 bzip2-1.0.6-3 coreutils-8.16-2 cracklib-2.8.18-2 curl-7.25.0-1 db-5.3.15-1
    dirmngr-1.1.0-4 e2fsprogs-1.42.1-1 expat-2.1.0-1 findutils-4.4.2-4 gawk-4.0.1-1 gcc-libs-4.7.0-4 gdbm-1.10-1
    glib2-2.30.2-2 glibc-2.15-10 gmp-5.0.4-1 gnupg-2.0.19-1 gnupg2-2.0.18-1 [removal] gpgme-1.3.1-4 kmod-7-2
    libarchive-3.0.4-1 libcap-2.22-2 libffi-3.0.10-1 libgcrypt-1.5.0-1 libgpg-error-1.10-1 libgssglue-0.3-1 libldap-2.4.30-1
    libtirpc-0.2.2-2 linux-api-headers-3.3-1 module-init-tools-3.11.1-2 [removal] ncurses-5.9-3 openssl-1.0.1-2
    pacman-mirrorlist-20120211-1 pam-1.1.5-2 pciutils-3.1.9-1 pcre-8.30-1 perl-5.14.2-7 readline-6.2.002-1 sed-4.2.1-4
    tzdata-2012c-1 udev-182-1 usbutils-005-1 util-linux-2.21.1-2 util-linux-ng-2.18-2 [removal] xz-5.0.3-2 zlib-1.2.6-1
    pacman-4.0.3-1
    Total Installed Size: 208.48 MiB
    Net Upgrade Size: 10.13 MiB
    Proceed with installation? [Y/n] Y
    pacman: symbol lookup error: /usr/lib/libgpgme.so.11: undefined symbol: gpg_err_set_errno------------------------------------------------] 0%
    Added code tags -- Inxsible
    Last edited by Inxsible (2012-06-11 20:08:45)

    And yes, i've carefully read article about signing packages, pacman key was initialized and keyring also was populated.
    Successfully resolved problem by adding globally SigLevel = Never and commenting out SigLevel = PackageRequired. Yes, I understand that this is bad idea, but i've found no other way to resolve it.
    Then pacman Syu finished succesfully. After that i've turned signature check back. It works.
    P.S.: my bad, it seems that i accidently used 2010.05 old iso to install arch. And as too many core changes came into distro, (initscripts, filestystem force, etc), pacman Syu failed over and over.
    Last edited by oraerk (2012-06-12 08:03:59)

  • Symbol lookup error /usr/lib/libXi.so.6

    Dear All,
    After a recent update, I have problems with libXi. I get the following error while trying to plot something with gnuplot:
    gnuplot: symbol lookup error: /usr/lib/libXi.so.6: undefined symbol: XESetWireToEventCookie.
    I get a similar error when trying to run a java application:
    java: symbol lookup error: /usr/lib/libXi.so.6: undefined symbol: XESetWireToEventCookie
    Something looks broken. I tried downgrading libXi to the previous version 1.3.2-1:
    pacman -U libxi-1.3.2-1-i686.pkg.tar.xz
    but that didn't help. I'm now back on version 1.4.0-1
    Any suggestions are greatly appreciated. This is my first post to this forum so bare with me. I've been a gentoo user for quite sometime but I'm trying a binary distro for obvious reasons.
    This also looks like a bug for I haven't done anything strange. This is a newish installation and all I do every week or so is pacman -Syu as suggested in the beginner handbook. I'm surprised no one else has posted this problem... is it really just me?. There are some old post on this issue but there was no solution there other than downgrading which I have already tried.
    I've just realized that not even okular works!!! Why am I being punished?
    okular: symbol lookup error: /usr/lib/libXi.so.6: undefined symbol: XESetWireToEventCookie
    Thanks.
    Last edited by riczan (2010-12-08 21:40:29)

    hey,
    I've installed quartus II today too and ran into similiar conflicts. I build version 1.2.1 of libxi again as suggested by davidgurvich, but "tricked out" pacman to avoid rebuilding the whole xorg packages, which depend on  libxi>=1.3:
    pkgname=libxi
    pkgver=1.3
    pkgrel=2
    realver=1.2.1
    pkgdesc="X11 Input extension library"
    arch=('i686' 'x86_64')
    url="http://xorg.freedesktop.org"
    depends=('libxext>=1.1' 'inputproto>=2.0')
    makedepends=('pkgconfig')
    options=(!libtool force)
    license=('custom')
    source=(${url}/releases/individual/lib/libXi-${realver}.tar.bz2)
    md5sums=('cfb36307e8e7ffafe40848dba24e0b11')
    build() {
    cd "${srcdir}/libXi-${realver}"
    ./configure --prefix=/usr --sysconfdir=/etc --disable-static || return 1
    make || return 1
    make DESTDIR="${pkgdir}" install || return 1
    install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" || return 1
    works for me... however, this is a dirty solution. maybe someone provide a better fix.

  • Referencing error while linking

    I am migrating our codes compiled in CC 4.2 to 6.2 and moving from Solaris 6 to 9
    I am compiling with the following options
    /apps/dev/sun5/lang6.2/SUNWspro/bin/CC -DCLASSIC_IOSTREAMS -library=rwtools7,iostream -staticlib=rwtools7,iostream -g -pto -DIT_EX_MACROS=1 -D_DEBUG=1
    -DOPSYS_SOLARIS=1 -DOPSYS_UNIX=1 -I<Includes> -c TeknekronFunctions_u.cpp -o TeknekronFunctions_u.o
    and linking with the following options
    /apps/dev/sun5/lang6.2/SUNWspro/bin/CC -o mditibgateway_sv < all the objects > -nolib -Bstatic -library=rwtools7,iostream -staticlib=rwtools7,iostream < all the libraries>
    -liostream -lCrun -lCstd -lrwtool -lm -lw -lcx -lsocket -lc -lsunmath -Bdynamic -lnsl -ldl
    Compiling is done successfully.
    But while linking , referencing errors occurs.
         RWCString::RWCString(char) /src/optics/TIB_MIG/sol.cxx.620_new/alert/libalert.a(MDIServerName.o)
         void(*set_terminate(void(*)()))() /src/optics/TIB_MIG/sol.cxx.620_new/alert/libalert.a(AlertExceptionHandlerRegistor.o)
    Do you have any clue on this referencing errors.
    Regards
    Deepak

    I am migrating our codes from CC4.2 to CC6.2
    I have one executable broker which is running and another server which when starts up cotacts
    the broker.
    At this point I am getting the core dump, while debugging the fuction is CountedObject::AddRef.
    This is the code, which increments the m_count using the obj.
    class CountedObject
    friend class CountingPointer;
         private:
         unsigned m_count;
    static void AddRef (CountedObject *obj)
              if (obj != NULL)
              ++obj->m_count;
                        TraceAddRef (obj);
    program terminated by signal SEGV (no mapping at the fault address)
    Current function is CountedObject::AddRef
    101 ++obj->m_count;
    (/apps/dev/sun5/lang6.2/SUNWspro/bin/../WS6U2/bin/sparcv9/dbx) where
    =>[1] CountedObject::AddRef(obj = 0x26454e44), line 101 in "refct.hpp"
    [2] CountingPointer::CountingPointer(this = 0xffbfd4f0, that = CLASS), line 167 in "refct.hpp"
    [3] MessageSegmentPointer::MessageSegmentPointer(this = 0xffbfd4f0, that = CLASS), line 201 in "message.hpp"
    [4] Message::UnmarshallSegments(this = 0x34d580, buff = 0x34d4b0 "+SEG&END"), line 1123 in "message.cpp"
    [5] Message::Message(this = 0x34d580, header = CLASS, buff = 0x34d4b0 "+SEG&END"), line 997 in "message.cpp"
    [6] Transmitter::ProcessBody(this = 0x350aa0), line 1879 in "transmitter.cpp"
    [7] Transmitter::DoRead(this = 0x350aa0), line 1819 in "transmitter.cpp"
    [8] DataSocket::DoRead(this = 0x34d458), line 547 in "datasocket.cpp"
    [9] DataSocket::DoOpenEvent(this = 0x34d458, evt = EV_READ), line 394 in "datasocket.cpp"
    [10] DataSocket::DoEvents(this = 0x34d458, events = CLASS, error = 285626368), line 437 in "datasocket.cpp"
    [11] Socket::Poll(maxWait = CLASS), line 770 in "socket_c.cpp"
    [12] MsgInfApplication::Go(limit = CLASS), line 676 in "msgapp_c.cpp"
    [13] BrokerApp::Run(this = 0x2cdd3c, argc = 0, argv = 0x2ea264), line 182 in "bkmain.cpp"
    [14] MsgInfApplication::RunApp(this = 0x2cdd3c, argc = 1, argv = 0x2ea260), line 623 in "msgapp_c.cpp"
    [15] main(argc = 1, argv = 0xffbfed3c), line 404 in "commonapp_c.cpp"
    (/apps/dev/sun5/lang6.2/SUNWspro/bin/../WS6U2/bin/sparcv9/dbx)
    Can you please help me how to clear thes errors.

  • Kde 3.4: symbol lookup error

    Switched to kde3.4 today. Some apps are crashing, wich is pretty annoying.
    When started from command line they give this error:
    symbol lookup error: /opt/kde/lib/libkdeui.so.4: undefined symbol: _ZN12QProgressBarD2Ev
    libkdeui.so.4 is right where it's supposed to be, so I don't understand the problem.
    Can somebody help?

    I have problems with kde 3.4. I removed .kde* but the problem persist.
    When i maximize a kde app like kcontrol or k3b mi computer hangs and i have to reset by buton
    I reinstalled kde, but nothing.
    Is posible to know the integrity of packages?

  • E17genmenu exits with symbol lookup error

    e17genmenu gives me this when used:
    [proteus@localhost ~]$ e17genmenu
    Checking For /usr/share/applications...Exists
    Checking For Files In /usr/share/applications
    Found: abiword.desktop
    Getting Eap Name
    Parsing Desktop File /usr/share/applications/abiword.desktop
    Exec: abiword
    Icon: abiword_48.png
    Categories: Application;Office;WordProcessor;X-Red-Hat-Base;
    Name: Word Processor
    Comment: AbiWord Word Processor
    Processing File /usr/share/applications/abiword.desktop
    Got Window Class: (null)
    Trying To Find Icon abiword_48.png
    Checking For abiword_48.png
    Using Icon /usr/share/pixmaps/abiword_48.png
    Writing Icon /usr/share/pixmaps/abiword_48.png
    Getting Icon Compression
    e17genmenu: symbol lookup error: e17genmenu: undefined symbol: engrave_eet_outpu
    t
    [proteus@localhost ~]$ e17genmenu
    Checking For /usr/share/applications...Exists
    Checking For Files In /usr/share/applications
    Found: abiword.desktop
    Getting Eap Name
    Parsing Desktop File /usr/share/applications/abiword.desktop
    Exec: abiword
    Icon: abiword_48.png
    Categories: Application;Office;WordProcessor;X-Red-Hat-Base;
    Name: Word Processor
    Comment: AbiWord Word Processor
    Processing File /usr/share/applications/abiword.desktop
    Got Window Class: (null)
    Trying To Find Icon abiword_48.png
    Checking For abiword_48.png
    Using Icon /usr/share/pixmaps/abiword_48.png
    Writing Icon /usr/share/pixmaps/abiword_48.png
    Getting Icon Compression
    e17genmenu: symbol lookup error: e17genmenu: undefined symbol: engrave_eet_outpu
    t
    It then unceremoniously exits, failing to generate any menu. Not much use..

    Well, if I remove the libclearlooks.so file, Hydrogen starts. It throws these lot of these warnings:
    (hydrogen:1652): Gtk-WARNING **: Unable to locate theme engine in module_path: "clearlooks",
    I also tried recompiling from ABS, but got:
    Install directory: "data/img" as "/tmp/hydrogen/pkg/usr/share/hydrogen/data/img"
    scons: *** [/tmp/hydrogen/pkg/usr/share/hydrogen/data/img/gray] /tmp/hydrogen/pkg/usr/share/hydrogen/data/img/gray: File exists
    Compiling from AUR (svn package) works, but throws the same error.
    I have opened a thread on the Hydrogen forums: http://hydrogen.popez.org/hcms/node/1939
    Last edited by Spider.007 (2011-10-22 15:32:07)

  • Can't run dangerdeep / symbol lookup error

    I just wanted to try out danger from the deep but the game doesn't run.
    I installed dangerdeep and dangerdeep-data 0.3.0 out of the community repo.
    The game menu starts fine but as soon as I want to start a mission the game crashes:
    dangerdeep: symbol lookup error: dangerdeep: undefined symbol: glCreateShader
    I have fglrx-utils-8.37.6-1 installed. IMO fglrx-utils should replace libgl-dri completely, am I right?
    btw, recompiling the game stops with an error message
    Cheers Sigi

    No, this is on i686.
    When I compile it with fglrx-utils installed I get the following error: Link
    Dangerdeep builds fine if I replace fglrx-utils with libgl-dri. But when I try to run it with one of the both installed the game crashes with the error posted in the first post.

  • I got org.apache.jasper.JasperException:quote symbol expected error

    Hi Proffesionals
    iam new working with spring
    i got an error
    org.apache.jasper.JasperException:/WEB-INF/showjsps/showmsg.jsp(3,28)quote symbol expected error
    how can i handle this error
    any one can help me please
    regards

    Hi dvohra,
    Thanks for ur reply.
    I guess my problem has got to do more with the oracle error-
    ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], [], [], [], [], []
    I believe jasper is just throwing the exception caught from oracle error. Please let me know if u think otherwise.
    Can you help me in handling this ORA-0600 with the above mentioned arguments.
    I basically, would like to know in which directory the JDBC driver go, if i use tomcat4 server and do I have to set the system classpathand PATH for the driver location.
    Also which driver should I use to connect to remote DB- Oracle 9.2.0.5.0 (I have Ora 8i in my local machine) when using JDK1.4. (SHOULD I ALSO HAVE THE OTHER JAR files LIKE THE "CHARSET" IN THE LOCATION WHERE THE MAIN DRIVER FILE IS STORED.)
    Thanks,
    Karthik.

  • Symbol logkup error:/ust/lib/libxml2.so.2: underfined symbol: gzopen64

    Hi,
    When I use
    pacman -S gnome gnoe-extra
    After downloading all the packages, I saw the error [/usr/bin/gconftoo-2: symbol logkup error:/ust/lib/libxml2.so.2: underfined symbol: gzopen64] when I was installing...
    And, I use
    startx
    Nautilus and panel can't be used....
    the error informationg are:
    1.The panel could not register with the bonobo-activation server(error code:3)
    2.Nautilus can't be used now,due to an unexpected error from Bonono when attemping to register the file manager view server
    I need help~!

    Now, I put the error msgs here(I think it must be a bug~!):
    [root$]$pacman -Sy libxml2 gnome gnome-extra
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    warning: libxml2-2.6.32-2 is up to date -- reinstalling
    gnome package not found, searching for group...
    :: group gnome (including ignored packages):
    epiphany gnome-applets gnome-backgrounds gnome-control-center
    gnome-desktop gnome-icon-theme gnome-media gnome-mime-data gnome-mount
    gnome-panel gnome-screensaver gnome-session gnome-settings-daemon
    gnome-themes gnome-volume-manager gnome2-user-docs libgail-gnome
    metacity nautilus yelp
    :: Install whole content? [Y/n]
    gnome-extra package not found, searching for group...
    :: group gnome-extra (including ignored packages):
    bug-buddy cheese dasher eog evince evolution-webcal file-roller
    gcalctool gconf-editor gdm gedit gnome-audio gnome-games
    gnome-games-extra-data gnome-mag gnome-netstatus gnome-nettool
    gnome-power-manager gnome-system-monitor gnome-terminal gnome-utils
    gok gucharmap nautilus-cd-burner orca seahorse sound-juicer tomboy
    totem vino zenity
    :: Install whole content? [Y/n]
    warning: epiphany-2.22.3-1 is up to date -- reinstalling
    warning: gnome-applets-2.22.3-1 is up to date -- reinstalling
    warning: gnome-backgrounds-2.22.0-1 is up to date -- reinstalling
    warning: gnome-control-center-2.22.2.1-1 is up to date -- reinstalling
    warning: gnome-desktop-2.22.3-1 is up to date -- reinstalling
    warning: gnome-icon-theme-2.22.0-1 is up to date -- reinstalling
    warning: gnome-media-2.22.0-2 is up to date -- reinstalling
    warning: gnome-mime-data-2.18.0-3 is up to date -- reinstalling
    warning: gnome-mount-0.8-1 is up to date -- reinstalling
    warning: gnome-panel-2.22.2-1 is up to date -- reinstalling
    warning: gnome-screensaver-2.22.2-1 is up to date -- reinstalling
    warning: gnome-session-2.22.3-1 is up to date -- reinstalling
    warning: gnome-settings-daemon-2.22.2.1-1 is up to date -- reinstalling
    warning: gnome-themes-2.22.2-1 is up to date -- reinstalling
    warning: gnome-volume-manager-2.22.5-1 is up to date -- reinstalling
    warning: gnome2-user-docs-2.22.1-1 is up to date -- reinstalling
    warning: libgail-gnome-1.20.0-2 is up to date -- reinstalling
    warning: metacity-2.22.0-1 is up to date -- reinstalling
    warning: nautilus-2.22.5.1-1 is up to date -- reinstalling
    warning: yelp-2.23.1-2 is up to date -- reinstalling
    warning: bug-buddy-2.22.0-1 is up to date -- reinstalling
    warning: cheese-2.22.3-2 is up to date -- reinstalling
    warning: dasher-4.7.3-1 is up to date -- reinstalling
    warning: eog-2.22.3-1 is up to date -- reinstalling
    warning: evince-2.22.2-3 is up to date -- reinstalling
    warning: evolution-webcal-2.21.92-1 is up to date -- reinstalling
    warning: file-roller-2.22.4-1 is up to date -- reinstalling
    warning: gcalctool-5.22.3-1 is up to date -- reinstalling
    warning: gconf-editor-2.22.0-1 is up to date -- reinstalling
    warning: gdm-2.20.1-2 is up to date -- reinstalling
    warning: gedit-2.22.3-1 is up to date -- reinstalling
    warning: gnome-audio-2.22.0-1 is up to date -- reinstalling
    warning: gnome-games-2.22.3-1 is up to date -- reinstalling
    warning: gnome-games-extra-data-2.22.0-1 is up to date -- reinstalling
    warning: gnome-mag-0.15.1-1 is up to date -- reinstalling
    warning: gnome-netstatus-2.12.1-5 is up to date -- reinstalling
    warning: gnome-nettool-2.22.0-1 is up to date -- reinstalling
    warning: gnome-power-manager-2.22.1-1 is up to date -- reinstalling
    warning: gnome-system-monitor-2.22.3-1 is up to date -- reinstalling
    warning: gnome-terminal-2.22.3-1 is up to date -- reinstalling
    warning: gnome-utils-2.20.0.1-3 is up to date -- reinstalling
    warning: gok-1.4.0-1 is up to date -- reinstalling
    warning: gucharmap-2.22.3-1 is up to date -- reinstalling
    warning: nautilus-cd-burner-2.22.1-1 is up to date -- reinstalling
    warning: orca-2.22.3-1 is up to date -- reinstalling
    warning: seahorse-2.22.3-1 is up to date -- reinstalling
    warning: sound-juicer-2.22.0-1 is up to date -- reinstalling
    warning: tomboy-0.10.1-1 is up to date -- reinstalling
    warning: totem-2.22.2-3 is up to date -- reinstalling
    warning: vino-2.22.2-3 is up to date -- reinstalling
    warning: zenity-2.22.1-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (52): libxml2-2.6.32-2 gnome-desktop-2.22.3-1 epiphany-2.22.3-1
    gnome-panel-2.22.2-1 gucharmap-2.22.3-1 gnome-applets-2.22.3-1
    gnome-backgrounds-2.22.0-1 gnome-settings-daemon-2.22.2.1-1
    metacity-2.22.0-1 gnome-icon-theme-2.22.0-1
    nautilus-2.22.5.1-1 gnome-control-center-2.22.2.1-1
    gnome-media-2.22.0-2 gnome-mime-data-2.18.0-3
    gnome-mount-0.8-1 gnome-screensaver-2.22.2-1
    gnome-session-2.22.3-1 gnome-themes-2.22.2-1
    gnome-volume-manager-2.22.5-1 yelp-2.23.1-2
    gnome2-user-docs-2.22.1-1 libgail-gnome-1.20.0-2
    bug-buddy-2.22.0-1 cheese-2.22.3-2 dasher-4.7.3-1
    eog-2.22.3-1 evince-2.22.2-3 evolution-webcal-2.21.92-1
    file-roller-2.22.4-1 gcalctool-5.22.3-1 gconf-editor-2.22.0-1
    gdm-2.20.1-2 gedit-2.22.3-1 gnome-audio-2.22.0-1
    gnome-games-2.22.3-1 gnome-games-extra-data-2.22.0-1
    gnome-mag-0.15.1-1 gnome-netstatus-2.12.1-5
    gnome-nettool-2.22.0-1 gnome-power-manager-2.22.1-1
    gnome-system-monitor-2.22.3-1 gnome-terminal-2.22.3-1
    gnome-utils-2.20.0.1-3 gok-1.4.0-1 nautilus-cd-burner-2.22.1-1
    orca-2.22.3-1 seahorse-2.22.3-1 sound-juicer-2.22.0-1
    tomboy-0.10.1-1 totem-2.22.2-3 vino-2.22.2-3 zenity-2.22.1-1
    Total Download Size: 0.00 MB
    Total Installed Size: 415.74 MB
    Proceed with installation? [Y/n]
    checking package integrity...
    checking for file conflicts...
    upgrading libxml2...
    upgrading gnome-desktop...
    upgrading epiphany...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-panel...
    usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gucharmap...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-applets...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-backgrounds...
    upgrading gnome-settings-daemon...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading metacity...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-icon-theme...
    upgrading nautilus...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-control-center...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-media...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-mime-data...
    upgrading gnome-mount...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-screensaver...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-session...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-themes...
    upgrading gnome-volume-manager...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading yelp...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome2-user-docs...
    upgrading libgail-gnome...
    upgrading bug-buddy...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading cheese...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading dasher...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading eog...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading evince...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading evolution-webcal...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading file-roller...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gcalctool...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gconf-editor...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gdm...
    upgrading gedit...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-audio...
    upgrading gnome-games...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-games-extra-data...
    upgrading gnome-mag...
    upgrading gnome-netstatus...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-nettool...
    upgrading gnome-power-manager...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-system-monitor...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-terminal...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gnome-utils...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading gok...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading nautilus-cd-burner...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading orca...
    upgrading seahorse...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading sound-juicer...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading tomboy...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading totem...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    ==> Totem has been built with GStreamer. By default, only plugins from
    ==> gst-plugins-good and gst-plugins-base are installed.
    ==>
    ==> To play additional media formats, more plugins are available from
    ==> gstreamer0.10-ugly-plugins, gstreamer0.10-bad-plugins
    ==> and gstreamer0.10-ffmpeg packages.
    ==>
    ==> There's also a xine build of Totem available, install totem-xine instead
    ==> of this package if you want xine to play your media files.
    upgrading vino...
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    /usr/bin/gconftool-2: symbol lookup error: /usr/lib/libxml2.so.2: undefined symbol: gzopen64
    upgrading zenity...
    The pacman can't configure the gconftool well....  It must be a bug..

Maybe you are looking for

  • How To Hard Reset N8

    Just to help people who have reported problems re-setting the N8, apparently there is a button combo to reset, Kudos to AAS  http://www.allaboutsymbian.com/news/item/12185_Ano​ther_three_finger_salute_do.php Text below has been added by Nokia:  Impor

  • I want to prevent history from being erases and prevent settings from being changed

    I supervise the macs for a club and our policy is no nudity (porno,) lately we have been having a lot of trouble with that and in trying to track the culprits, they have started deleting the history. how can I prevent them viewing porno and /or preve

  • ITunes hosed my ipad during iOS upgrade

    I just tried via my rather old winXP box to upgrade my ipad to the latest iOS, and it errored (first with 1602, then 1604 on subsequent attempts), requiring a restore. It turns out that if your machine has USB 1.1 ports and is not modern enough to ha

  • How to edit an item in a JComboBox

    I want the user to be able to edit an item in a combobox box. You select an item, edit in the top, press enter, and viola, the item is renamed. I've tried some approaches but they're not working out. Thanks for any ideas. What's the point of having a

  • Put files onto Remote Server?

    I am connected to the remote server and have tried repeatedly to put files onto remote server. It either says successful or not transferred and the new page never gets put up. What am I doing wrong? I have put files on my remote server before, but al