APD issue 'Cannot find Variable'

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

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

Similar Messages

  • Cannot find variable Configuration

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

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

  • Starting weblogic issue: cannot find file .war

    When trying to start the server under my domain, I get a strack trace error in the console that states the system cannot find the project's war file. How can I resolve this issue?

    Look in the "config.xml" file in the domain configuration. In that file will be a reference to the application you've deployed, including the filesystem path to the deployment unit (war file). If that file doesn't exist, then that explains the error. That should give you a clue to why it doesn't exist.

  • Cannot find variable taxRate

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

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

  • Weird soap issue: Cannot find the dispatch method

    Hi,
    I'm having strange problem with SOAP message.
    I created a simple web service using jax-ws, wsgen, and so on. I deployed it on sun app server 9.0. I wrote client application (i'm using SAAJ 1.3) for testing. The response I'm getting is something like this:
    <soapenv:Envelope xmlns:ns1="http://put/"
       xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
       <soapenv:Body>
          <soapenv:Fault>
             <faultcode>soapenv:Client</faultcode>
             <faultstring>Cannot find the dispatch method</faultstring>
          </soapenv:Fault>
       </soapenv:Body>
    </soapenv:Envelope>First I thought there's a problem with webservice I created. So I downloaded soapui (www.soapui.org) for testing. I provided it with wsdl and endpoint. And web sevice seems to work corectly - response I got back was ok.
    The strange part is: soap messages sent from soapui and from client application written by me seem to be identical. Both look like this:
    <SOAP-ENV:Envelope
       xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:put="http://put">
       <SOAP-ENV:Body>
          <put:sayHello>
             <arg0>test</arg0>
          </put:sayHello>
       </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>I even sniffed packets (WinDump) sent to application server and in both cases soap message is the same. There's only a slight difference in http headers. Here's what server log contains after receiving a soap message from my client application:
    DetailsTimestamp:     2006-09-14 13:28:03.315
    Log Level:      SEVERE
    Logger:     javax.enterprise.resource.webservices.jaxws.server.soapmd
    Name-Value Pairs:     _ThreadID=13;
    Record Number:     443
    Message ID:     Error in decoding SOAP Message Error in decoding SOAP Message at com.sun.xml.ws.encoding.
    soap.server.SOAPXMLDecoder.toInternalMessage(SOAPXMLDecoder.java
    Complete Message
    86)
         at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.
    toMessageInfo(SOAPMessageDispatcher.java:168)
         at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher$SoapInvoker.
    invoke(SOAPMessageDispatcher.java:533)
         at com.sun.xml.ws.protocol.soap.server.SOAPMessageDispatcher.receive(SOAPMessageDispatcher.java:144)
         at com.sun.xml.ws.server.Tie.handle(Tie.java:88)
         at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.handle(WSServletDelegate.java:279)
         at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.doPost(WSServletDelegate.java:232)
         at com.sun.xml.ws.transport.http.servlet.WSServlet.doPost(WSServlet.java:77)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:767)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
         at sun.reflect.GeneratedMethodAccessor61.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
         at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
         at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)
         at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)
         at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)
         at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)
         at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)
    Caused by: javax.xml.ws.soap.SOAPFaultException: Cannot find the dispatch method
         at com.sun.xml.ws.encoding.soap.SOAPDecoder.raiseFault(SOAPDecoder.java:662)
         at com.sun.xml.ws.encoding.soap.server.SOAPXMLDecoder.decodeDispatchMethod(SOAPXMLDecoder.java:151)
         at com.sun.xml.ws.encoding.soap.SOAPDecoder.decodeBodyContent(SOAPDecoder.java:335)
         at com.sun.xml.ws.encoding.soap.SOAPDecoder.decodeBody(SOAPDecoder.java:325)
         at com.sun.xml.ws.encoding.soap.SOAPDecoder.decodeEnvelope(SOAPDecoder.java:248)
         at com.sun.xml.ws.encoding.soap.server.SOAPXMLDecoder.toInternalMessage(SOAPXMLDecoder.java:78)
         ... 39 moreI'm new to web services and I'm completely out of ideas what is the problem. I googled a lot but I can't find any solution. Any help would be appreciated :)
    null

    Are you saying I can't just write jax-ws based web service using @WebService and @WebMethod and then, on client side, write code like this?
    SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
    SOAPConnection connection = soapConnectionFactory.createConnection();
    MessageFactory factory = MessageFactory.newInstance(SOAPConstants.SOAP_1_1_PROTOCOL);
    SOAPMessage request = factory.createMessage();
    // create proper message elements
    URL endpoint = new URL(endpoint_url);
    SOAPMessage response = connection.call(request, endpoint);
    // process response
    //

  • CANNOT FIND VARIABLE AND CONTRUCT

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

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

  • Compilation issues: Cannot find in import

    Hi,
    I am trying to compile some java code on a specific system, but I get following errors for almost every java file I try to compile:
    % javac ABC.java
    ABC.java:3: Class Session not found in import.
    import Session;
    ^
    ABC.java:4: Package javax.servlet.http not found in import.
    import javax.servlet.http.*;
    ^
    Is there a variable I am missing to set? I'd appreciate any help I can get on this issue.
    Thanks,
    Fauzia

    Hi,
    I am trying to compile some java code on a specific
    system, but I get following errors for almost every
    java file I try to compile:
    % javac ABC.java
    ABC.java:3: Class Session not found in import.
    import Session;
    ^The rules have always stated that your not allowed to use unpackaged (or default packge) classes from packaged classes. This import is illegal. However, the sun compilers have only started enforcing it since 1.4
    ABC.java:4: Package javax.servlet.http not found in
    import.
    import javax.servlet.http.*;
    ^This is almost certainly a CLASSPATH problem. It appears that you don't have the j2ee.jar in yours.

  • LV2010 SP1 Installer Build Issue- Cannot find the file it need on requesyed disk

    I am migrating a project from LV8.6.1 to 2010SP1 and had issues building the installer that I was finally able to overcome, but something is amiss with the process.
    Brand new development PC, running XP SP3, fresh install of LV2010SP Dev Suite and also installed VDM2010 SP1 (even though the project does not use any vision modules).
    -          Copied 8.6.1 project to the PC, did a mass compile of it and built the exe from scratch without issues.
    -          Now it’s time to build the installer from scratch. Additional Installers were:
     LV2010 RTE, MAX 4.7, NI-DAQmx Full App Devel Support 9.2.3, and NI-VISA 5.03.
    -          Get the message that it will need some disks to build it which I have on hand:
    Dev Suite DVD#2, Drivers DVD, and VDM DVD (huh, why VDM?)
    -          The installer build progresses through the first two disks fine but will not find the files it needs on the VDM DVD (it is looking for “NI System Components”).
    -          Installer build bails out with a message box and no installer is created (1st attachment). The installer logs are also attached.
    -          Try the build process gain, same result.
    -          Copied the VDM DVD to my hard drive and point it to that folder to get the files, same result.
    -          Try again saying I don’t have the disks on hand. It lists some alternate disks to use but to get all the files it still wants the VDM DVD to complete it. Not much use, the build still fails.
    -          Try one last time again selecting that I don’t have the disks on hand. I now notice that the folder the VDM was copied to on the hard drive is an option to select. Select that one and lo and behold the installer is built successfully.
    So I guess it boils down to:
                - Why does it need the VDM DVD when there are no components of vision used?
                - Why can’t the installer find the files it needs on the VDM DVD or a copy of the DVD on the hard drive?
                - Why will it only work if I choose that I do not have the disks and point it to a copy of the DVD that resides on the hard drive?
    -AK2DM
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    Attachments:
    MessageDuringVDMCopyForInstaller2010.JPG ‏127 KB
    TowersSPCv225Installer_build.log ‏3126 KB
    TowersSPCv225Installer_edit.log ‏915 KB

    Che:
    It gave no specific indication of what it was looking for, the only message that came up was in the screenshot jpg I originally posted.
    The only other vague clue I had was it needed NI System Component from the VDM DVD.
    Does not make sense that it required the VDM DVD since there were no vision components in the project. I presume it would have taken VISA off of the Dev Suite DVD's.
    I can't replicate the problem since I had the build cache the system components required for the project. I'd rather not start deleting folders at this point since I have a viable installer at this time (after many hours of troublshooting expended).
    Thanks
    -AK2DM
    ~~~~~~~~~~~~~~~~~~~~~~~~~~
    "It’s the questions that drive us.”
    ~~~~~~~~~~~~~~~~~~~~~~~~~~

  • Pacman dependency issue: cannot find dependency files

    Hello!
    Some weeks ago I upgraded my system using pacman -Suy running in terminal inside screen. For some reason the terminal and screen died and pacman got interrupted in the middle of a big upgrade. After that my box behaves very strangely. For instance I cannot longer start screen:
    $ screen
    reopen fifo /tmp/screens/S-dan/5120.pts-1.laptop: No such file or directory
    I no longer have perl installed, and I seem to miss all the standard c-libraries
    $ gcc test.c
    test.c:1:19: error: stdio.h No such file or directory
    I do not know if this above is of relevance, but when I try using pacman now I get  a error on not being able to find the »depends» files of glibc and perl. The directory they are being looked for at has a double slash // very odd. This is an output:
    # pacman -Suy
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    looking for inter-conflicts...
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/depends: No such file or directory
    error: could not open file /var/lib/pacman/local//perl-5.10.0-3/depends: No such file or directory
    Targets: m4-1.4.11-1 autoconf-2.62-1 cairo-perl-1.060-1 pam-1.0.1-1
    coreutils-6.11-1 curl-7.18.1-2 dialog-1.1_20080316-3
    hunspell-1.2.2-2 enchant-1.4.1-2 file-4.24-1 libpng-1.2.28-1
    fltk-1.1.9-1 gail-1.22.1-1 glib-perl-1.182-1 gtk2-perl-1.182-1
    gnome-vfs-perl-1.081-1 gpm-1.20.3-1 gstreamer0.10-bad-0.10.7-1
    gstreamer0.10-good-0.10.8-1 gtk-engines-2.14.1-1 gtkhtml-3.18.1-1
    imagemagick-6.4.1.0-1 libxml2-2.6.32-1 libxslt-1.1.23-1
    kdelibs-3.5.9-3.1 laptop-mode-tools-1.41-1 libdvdnav-0.1.10-3
    libnotify-0.4.4-2 libsamplerate-0.1.3-1 neon-0.28.2-1
    pstoedit-3.45-2 openoffice-base-2.4.0-2 patch-2.5.9-1
    pkgconfig-0.23-1 pycairo-1.4.12-1 python-pytz-2008b-1
    scons-0.98.3-1 python-mpd-0.2.0-1 sonata-1.5-2 tagpy-0.94.5-1
    tar-1.20-2 texinfo-4.12-2 wget-1.11.2-1 wine-0.9.61-1
    xine-lib-1.1.12-1
    Total Download Size: 173.95 MB
    Total Installed Size: 176.15 MB
    Proceed with installation? [Y/n] n
    Any ideas if this is fixable? I havent found anything here on the forums or on the interwebs. I could do a fresh reinstall, but maybe I could save some time by just fixing this.
    Thanks in advance for any help,
    Dan

    Got some complaints on a lot of files already existing in the filesystem:
    $pacman -S perl glibc
    error: could not open file /var/lib/pacman/local//glibc-2.7-9/files: No such file or directory
    error: could not prepare transaction
    glibc: /etc/locale.gen exists in filesystem
    glibc: /etc/nscd.conf exists in filesystem
    glibc: /etc/rc.d/nscd exists in filesystem
    glibc: /etc/rpc exists in filesystem
    glibc: /lib/ld-2.7.so exists in filesystem
    glibc: /lib/ld-linux.so.2 exists in filesystem
    glibc: /lib/libBrokenLocale-2.7.so exists in filesystem
    glibc: /lib/libBrokenLocale.so.1 exists in filesystem
    glibc: /lib/libSegFault.so exists in filesystem
    glibc: /lib/libanl-2.7.so exists in filesystem
    glibc: /lib/libanl.so.1 exists in filesystem
    glibc: /lib/libc-2.7.so exists in filesystem
    glibc: /lib/libc.so.6 exists in filesystem
    glibc: /lib/libcidn-2.7.so exists in filesystem
    glibc: /lib/libcidn.so.1 exists in filesystem
    glibc: /lib/libcrypt-2.7.so exists in filesystem
    glibc: /lib/libcrypt.so.1 exists in filesystem
    glibc: /lib/libdl-2.7.so exists in filesystem
    glibc: /lib/libdl.so.2 exists in filesystem
    glibc: /lib/libm-2.7.so exists in filesystem
    glibc: /lib/libm.so.6 exists in filesystem
    glibc: /lib/libmemusage.so exists in filesystem
    glibc: /lib/libnsl-2.7.so exists in filesystem
    glibc: /lib/libnsl.so.1 exists in filesystem
    glibc: /lib/libnss_compat-2.7.so exists in filesystem
    glibc: /lib/libnss_compat.so.2 exists in filesystem
    glibc: /lib/libnss_dns-2.7.so exists in filesystem
    glibc: /lib/libnss_dns.so.2 exists in filesystem
    glibc: /lib/libnss_files-2.7.so exists in filesystem
    glibc: /lib/libnss_files.so.2 exists in filesystem
    glibc: /lib/libnss_hesiod-2.7.so exists in filesystem
    glibc: /lib/libnss_hesiod.so.2 exists in filesystem
    glibc: /lib/libnss_nis-2.7.so exists in filesystem
    glibc: /lib/libnss_nis.so.2 exists in filesystem
    glibc: /lib/libnss_nisplus-2.7.so exists in filesystem
    glibc: /lib/libnss_nisplus.so.2 exists in filesystem
    glibc: /lib/libpcprofile.so exists in filesystem
    glibc: /lib/libpthread-2.7.so exists in filesystem
    glibc: /lib/libpthread.so.0 exists in filesystem
    glibc: /lib/libresolv-2.7.so exists in filesystem
    glibc: /lib/libresolv.so.2 exists in filesystem
    glibc: /lib/librt-2.7.so exists in filesystem
    glibc: /lib/librt.so.1 exists in filesystem
    glibc: /lib/libthread_db-1.0.so exists in filesystem
    glibc: /lib/libthread_db.so.1 exists in filesystem
    glibc: /lib/libutil-2.7.so exists in filesystem
    glibc: /lib/libutil.so.1 exists in filesystem
    glibc: /sbin/ldconfig exists in filesystem
    glibc: /sbin/sln exists in filesystem
    glibc: /usr/include/scsi/scsi.h exists in filesystem
    glibc: /usr/include/scsi/scsi_ioctl.h exists in filesystem
    glibc: /usr/include/scsi/sg.h exists in filesystem
    glibc: /usr/share/i18n/charmaps/ANSI_X3.110-1983.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ANSI_X3.4-1968.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ARMSCII-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ASMO_449.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BIG5-HKSCS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BIG5.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BRF.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BS_4730.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/BS_VIEWDATA.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP10007.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1125.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1250.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1251.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1252.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1253.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1254.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1255.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1256.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1257.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP1258.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP737.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP775.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CP949.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSA_Z243.4-1985-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSA_Z243.4-1985-2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSA_Z243.4-1985-GR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CSN_369103.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/CWI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/DEC-MCS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/DIN_66003.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/DS_2089.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-AT-DE-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-AT-DE.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-CA-FR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-DK-NO-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-DK-NO.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-ES-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-ES-S.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-ES.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-FI-SE-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-FI-SE.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-FR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-IS-FRISS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-IT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-PT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-UK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EBCDIC-US.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ECMA-CYRILLIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ES.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ES2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-JISX0213.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-JP-MS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-JP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-KR.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/EUC-TW.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GB18030.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GB2312.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GBK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GB_1988-80.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GEORGIAN-ACADEMY.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GEORGIAN-PS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GOST_19768-74.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GREEK-CCITT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GREEK7-OLD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/GREEK7.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/HP-ROMAN8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM037.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM038.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1004.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1026.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1047.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1124.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1129.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1132.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1133.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1160.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1161.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1162.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1163.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM1164.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM256.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM273.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM274.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM275.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM277.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM278.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM280.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM281.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM284.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM285.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM290.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM297.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM420.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM423.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM424.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM437.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM500.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM850.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM851.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM852.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM855.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM856.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM857.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM860.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM861.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM862.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM863.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM864.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM865.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM866.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM866NAV.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM868.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM869.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM870.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM871.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM874.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM875.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM880.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM891.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM903.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM904.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM905.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM918.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IBM922.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IEC_P27-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INIS-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INIS-CYRILLIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INIS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/INVARIANT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISIRI-3342.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-10.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-11.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-13.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-14.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-15.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-16.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-3.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-4.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-5.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-6.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-7.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-9.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-8859-9E.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-IR-197.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-IR-209.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO-IR-90.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_10367-BOX.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_10646.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_11548-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_2033-1983.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_5427-EXT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_5427.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_5428.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_646.BASIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_646.IRV.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_6937-2-25.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_6937-2-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_6937.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_8859-1,GL.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/ISO_8859-SUPP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/IT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6220-1969-JP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6220-1969-RO.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-A.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-B-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-B.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-HAND-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-HAND.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_C6229-1984-KANA.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JIS_X0201.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JOHAB.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JUS_I.B1.002.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JUS_I.B1.003-MAC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/JUS_I.B1.003-SERB.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-R.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-RU.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-T.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KOI8-U.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/KSC5636.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/LATIN-GREEK-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/LATIN-GREEK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-CENTRALEUROPE.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-CYRILLIC.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-IS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-SAMI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MAC-UK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MACINTOSH.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MIK.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/MSZ_7795.3.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-DANO-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-DANO.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-SEFI-ADD.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NATS-SEFI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NC_NC00-10.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NEXTSTEP.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NF_Z_62-010.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NF_Z_62-010_1973.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NS_4551-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/NS_4551-2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/PT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/PT154.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/PT2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/RK1048.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SAMI-WS2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SAMI.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SEN_850200_B.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SEN_850200_C.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SHIFT_JIS.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/SHIFT_JISX0213.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/T.101-G2.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/T.61-7BIT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/T.61-8BIT.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/TCVN5712-1.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/TIS-620.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/TSCII.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/UTF-8.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/VIDEOTEX-SUPPL.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/VISCII.gz exists in filesystem
    glibc: /usr/share/i18n/charmaps/WINDOWS-31J.gz exists in filesystem
    glibc: /usr/share/i18n/locales/POSIX exists in filesystem
    glibc: /usr/share/i18n/locales/aa_DJ exists in filesystem
    glibc: /usr/share/i18n/locales/aa_ER exists in filesystem
    glibc: /usr/share/i18n/locales/aa_ER@saaho exists in filesystem
    glibc: /usr/share/i18n/locales/aa_ET exists in filesystem
    glibc: /usr/share/i18n/locales/af_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/am_ET exists in filesystem
    glibc: /usr/share/i18n/locales/an_ES exists in filesystem
    glibc: /usr/share/i18n/locales/ar_AE exists in filesystem
    glibc: /usr/share/i18n/locales/ar_BH exists in filesystem
    glibc: /usr/share/i18n/locales/ar_DZ exists in filesystem
    glibc: /usr/share/i18n/locales/ar_EG exists in filesystem
    glibc: /usr/share/i18n/locales/ar_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ar_IQ exists in filesystem
    glibc: /usr/share/i18n/locales/ar_JO exists in filesystem
    glibc: /usr/share/i18n/locales/ar_KW exists in filesystem
    glibc: /usr/share/i18n/locales/ar_LB exists in filesystem
    glibc: /usr/share/i18n/locales/ar_LY exists in filesystem
    glibc: /usr/share/i18n/locales/ar_MA exists in filesystem
    glibc: /usr/share/i18n/locales/ar_OM exists in filesystem
    glibc: /usr/share/i18n/locales/ar_QA exists in filesystem
    glibc: /usr/share/i18n/locales/ar_SA exists in filesystem
    glibc: /usr/share/i18n/locales/ar_SD exists in filesystem
    glibc: /usr/share/i18n/locales/ar_SY exists in filesystem
    glibc: /usr/share/i18n/locales/ar_TN exists in filesystem
    glibc: /usr/share/i18n/locales/ar_YE exists in filesystem
    glibc: /usr/share/i18n/locales/as_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ast_ES exists in filesystem
    glibc: /usr/share/i18n/locales/az_AZ exists in filesystem
    glibc: /usr/share/i18n/locales/be_BY exists in filesystem
    glibc: /usr/share/i18n/locales/be_BY@latin exists in filesystem
    glibc: /usr/share/i18n/locales/ber_DZ exists in filesystem
    glibc: /usr/share/i18n/locales/ber_MA exists in filesystem
    glibc: /usr/share/i18n/locales/bg_BG exists in filesystem
    glibc: /usr/share/i18n/locales/bn_BD exists in filesystem
    glibc: /usr/share/i18n/locales/bn_IN exists in filesystem
    glibc: /usr/share/i18n/locales/br_FR exists in filesystem
    glibc: /usr/share/i18n/locales/br_FR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/bs_BA exists in filesystem
    glibc: /usr/share/i18n/locales/byn_ER exists in filesystem
    glibc: /usr/share/i18n/locales/ca_AD exists in filesystem
    glibc: /usr/share/i18n/locales/ca_ES exists in filesystem
    glibc: /usr/share/i18n/locales/ca_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/ca_ES@valencia exists in filesystem
    glibc: /usr/share/i18n/locales/ca_FR exists in filesystem
    glibc: /usr/share/i18n/locales/ca_IT exists in filesystem
    glibc: /usr/share/i18n/locales/crh_UA exists in filesystem
    glibc: /usr/share/i18n/locales/cs_CZ exists in filesystem
    glibc: /usr/share/i18n/locales/csb_PL exists in filesystem
    glibc: /usr/share/i18n/locales/cy_GB exists in filesystem
    glibc: /usr/share/i18n/locales/da_DK exists in filesystem
    glibc: /usr/share/i18n/locales/de_AT exists in filesystem
    glibc: /usr/share/i18n/locales/de_AT@euro exists in filesystem
    glibc: /usr/share/i18n/locales/de_BE exists in filesystem
    glibc: /usr/share/i18n/locales/de_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/de_CH exists in filesystem
    glibc: /usr/share/i18n/locales/de_DE exists in filesystem
    glibc: /usr/share/i18n/locales/de_DE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/de_LU exists in filesystem
    glibc: /usr/share/i18n/locales/de_LU@euro exists in filesystem
    glibc: /usr/share/i18n/locales/dz_BT exists in filesystem
    glibc: /usr/share/i18n/locales/el_CY exists in filesystem
    glibc: /usr/share/i18n/locales/el_GR exists in filesystem
    glibc: /usr/share/i18n/locales/el_GR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/en_AU exists in filesystem
    glibc: /usr/share/i18n/locales/en_BW exists in filesystem
    glibc: /usr/share/i18n/locales/en_CA exists in filesystem
    glibc: /usr/share/i18n/locales/en_DK exists in filesystem
    glibc: /usr/share/i18n/locales/en_GB exists in filesystem
    glibc: /usr/share/i18n/locales/en_HK exists in filesystem
    glibc: /usr/share/i18n/locales/en_IE exists in filesystem
    glibc: /usr/share/i18n/locales/en_IE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/en_IN exists in filesystem
    glibc: /usr/share/i18n/locales/en_NG exists in filesystem
    glibc: /usr/share/i18n/locales/en_NZ exists in filesystem
    glibc: /usr/share/i18n/locales/en_PH exists in filesystem
    glibc: /usr/share/i18n/locales/en_SG exists in filesystem
    glibc: /usr/share/i18n/locales/en_US exists in filesystem
    glibc: /usr/share/i18n/locales/en_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/en_ZW exists in filesystem
    glibc: /usr/share/i18n/locales/eo exists in filesystem
    glibc: /usr/share/i18n/locales/es_AR exists in filesystem
    glibc: /usr/share/i18n/locales/es_BO exists in filesystem
    glibc: /usr/share/i18n/locales/es_CL exists in filesystem
    glibc: /usr/share/i18n/locales/es_CO exists in filesystem
    glibc: /usr/share/i18n/locales/es_CR exists in filesystem
    glibc: /usr/share/i18n/locales/es_DO exists in filesystem
    glibc: /usr/share/i18n/locales/es_EC exists in filesystem
    glibc: /usr/share/i18n/locales/es_ES exists in filesystem
    glibc: /usr/share/i18n/locales/es_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/es_GT exists in filesystem
    glibc: /usr/share/i18n/locales/es_HN exists in filesystem
    glibc: /usr/share/i18n/locales/es_MX exists in filesystem
    glibc: /usr/share/i18n/locales/es_NI exists in filesystem
    glibc: /usr/share/i18n/locales/es_PA exists in filesystem
    glibc: /usr/share/i18n/locales/es_PE exists in filesystem
    glibc: /usr/share/i18n/locales/es_PR exists in filesystem
    glibc: /usr/share/i18n/locales/es_PY exists in filesystem
    glibc: /usr/share/i18n/locales/es_SV exists in filesystem
    glibc: /usr/share/i18n/locales/es_US exists in filesystem
    glibc: /usr/share/i18n/locales/es_UY exists in filesystem
    glibc: /usr/share/i18n/locales/es_VE exists in filesystem
    glibc: /usr/share/i18n/locales/et_EE exists in filesystem
    glibc: /usr/share/i18n/locales/eu_ES exists in filesystem
    glibc: /usr/share/i18n/locales/eu_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/eu_FR exists in filesystem
    glibc: /usr/share/i18n/locales/eu_FR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fa_IR exists in filesystem
    glibc: /usr/share/i18n/locales/fi_FI exists in filesystem
    glibc: /usr/share/i18n/locales/fi_FI@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fil_PH exists in filesystem
    glibc: /usr/share/i18n/locales/fo_FO exists in filesystem
    glibc: /usr/share/i18n/locales/fr_BE exists in filesystem
    glibc: /usr/share/i18n/locales/fr_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fr_CA exists in filesystem
    glibc: /usr/share/i18n/locales/fr_CH exists in filesystem
    glibc: /usr/share/i18n/locales/fr_FR exists in filesystem
    glibc: /usr/share/i18n/locales/fr_FR@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fr_LU exists in filesystem
    glibc: /usr/share/i18n/locales/fr_LU@euro exists in filesystem
    glibc: /usr/share/i18n/locales/fur_IT exists in filesystem
    glibc: /usr/share/i18n/locales/fy_DE exists in filesystem
    glibc: /usr/share/i18n/locales/fy_NL exists in filesystem
    glibc: /usr/share/i18n/locales/ga_IE exists in filesystem
    glibc: /usr/share/i18n/locales/ga_IE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/gd_GB exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ER exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ER@abegede exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ET exists in filesystem
    glibc: /usr/share/i18n/locales/gez_ET@abegede exists in filesystem
    glibc: /usr/share/i18n/locales/gl_ES exists in filesystem
    glibc: /usr/share/i18n/locales/gl_ES@euro exists in filesystem
    glibc: /usr/share/i18n/locales/gu_IN exists in filesystem
    glibc: /usr/share/i18n/locales/gv_GB exists in filesystem
    glibc: /usr/share/i18n/locales/ha_NG exists in filesystem
    glibc: /usr/share/i18n/locales/he_IL exists in filesystem
    glibc: /usr/share/i18n/locales/hi_IN exists in filesystem
    glibc: /usr/share/i18n/locales/hr_HR exists in filesystem
    glibc: /usr/share/i18n/locales/hsb_DE exists in filesystem
    glibc: /usr/share/i18n/locales/hu_HU exists in filesystem
    glibc: /usr/share/i18n/locales/hy_AM exists in filesystem
    glibc: /usr/share/i18n/locales/i18n exists in filesystem
    glibc: /usr/share/i18n/locales/ia exists in filesystem
    glibc: /usr/share/i18n/locales/id_ID exists in filesystem
    glibc: /usr/share/i18n/locales/ig_NG exists in filesystem
    glibc: /usr/share/i18n/locales/ik_CA exists in filesystem
    glibc: /usr/share/i18n/locales/is_IS exists in filesystem
    glibc: /usr/share/i18n/locales/iso14651_t1 exists in filesystem
    glibc: /usr/share/i18n/locales/iso14651_t1_common exists in filesystem
    glibc: /usr/share/i18n/locales/iso14651_t1_pinyin exists in filesystem
    glibc: /usr/share/i18n/locales/it_CH exists in filesystem
    glibc: /usr/share/i18n/locales/it_IT exists in filesystem
    glibc: /usr/share/i18n/locales/it_IT@euro exists in filesystem
    glibc: /usr/share/i18n/locales/iu_CA exists in filesystem
    glibc: /usr/share/i18n/locales/iw_IL exists in filesystem
    glibc: /usr/share/i18n/locales/ja_JP exists in filesystem
    glibc: /usr/share/i18n/locales/ka_GE exists in filesystem
    glibc: /usr/share/i18n/locales/kk_KZ exists in filesystem
    glibc: /usr/share/i18n/locales/kl_GL exists in filesystem
    glibc: /usr/share/i18n/locales/km_KH exists in filesystem
    glibc: /usr/share/i18n/locales/kn_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ko_KR exists in filesystem
    glibc: /usr/share/i18n/locales/ku_TR exists in filesystem
    glibc: /usr/share/i18n/locales/kw_GB exists in filesystem
    glibc: /usr/share/i18n/locales/ky_KG exists in filesystem
    glibc: /usr/share/i18n/locales/lg_UG exists in filesystem
    glibc: /usr/share/i18n/locales/li_BE exists in filesystem
    glibc: /usr/share/i18n/locales/li_NL exists in filesystem
    glibc: /usr/share/i18n/locales/lo_LA exists in filesystem
    glibc: /usr/share/i18n/locales/lt_LT exists in filesystem
    glibc: /usr/share/i18n/locales/lv_LV exists in filesystem
    glibc: /usr/share/i18n/locales/mai_IN exists in filesystem
    glibc: /usr/share/i18n/locales/mg_MG exists in filesystem
    glibc: /usr/share/i18n/locales/mi_NZ exists in filesystem
    glibc: /usr/share/i18n/locales/mk_MK exists in filesystem
    glibc: /usr/share/i18n/locales/ml_IN exists in filesystem
    glibc: /usr/share/i18n/locales/mn_MN exists in filesystem
    glibc: /usr/share/i18n/locales/mr_IN exists in filesystem
    glibc: /usr/share/i18n/locales/ms_MY exists in filesystem
    glibc: /usr/share/i18n/locales/mt_MT exists in filesystem
    glibc: /usr/share/i18n/locales/nb_NO exists in filesystem
    glibc: /usr/share/i18n/locales/nds_DE exists in filesystem
    glibc: /usr/share/i18n/locales/nds_NL exists in filesystem
    glibc: /usr/share/i18n/locales/ne_NP exists in filesystem
    glibc: /usr/share/i18n/locales/nl_BE exists in filesystem
    glibc: /usr/share/i18n/locales/nl_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/nl_NL exists in filesystem
    glibc: /usr/share/i18n/locales/nl_NL@euro exists in filesystem
    glibc: /usr/share/i18n/locales/nn_NO exists in filesystem
    glibc: /usr/share/i18n/locales/nr_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/nso_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/oc_FR exists in filesystem
    glibc: /usr/share/i18n/locales/om_ET exists in filesystem
    glibc: /usr/share/i18n/locales/om_KE exists in filesystem
    glibc: /usr/share/i18n/locales/or_IN exists in filesystem
    glibc: /usr/share/i18n/locales/pa_IN exists in filesystem
    glibc: /usr/share/i18n/locales/pa_PK exists in filesystem
    glibc: /usr/share/i18n/locales/pap_AN exists in filesystem
    glibc: /usr/share/i18n/locales/pl_PL exists in filesystem
    glibc: /usr/share/i18n/locales/pt_BR exists in filesystem
    glibc: /usr/share/i18n/locales/pt_PT exists in filesystem
    glibc: /usr/share/i18n/locales/pt_PT@euro exists in filesystem
    glibc: /usr/share/i18n/locales/ro_RO exists in filesystem
    glibc: /usr/share/i18n/locales/ru_RU exists in filesystem
    glibc: /usr/share/i18n/locales/ru_UA exists in filesystem
    glibc: /usr/share/i18n/locales/rw_RW exists in filesystem
    glibc: /usr/share/i18n/locales/sa_IN exists in filesystem
    glibc: /usr/share/i18n/locales/sc_IT exists in filesystem
    glibc: /usr/share/i18n/locales/se_NO exists in filesystem
    glibc: /usr/share/i18n/locales/si_LK exists in filesystem
    glibc: /usr/share/i18n/locales/sid_ET exists in filesystem
    glibc: /usr/share/i18n/locales/sk_SK exists in filesystem
    glibc: /usr/share/i18n/locales/sl_SI exists in filesystem
    glibc: /usr/share/i18n/locales/so_DJ exists in filesystem
    glibc: /usr/share/i18n/locales/so_ET exists in filesystem
    glibc: /usr/share/i18n/locales/so_KE exists in filesystem
    glibc: /usr/share/i18n/locales/so_SO exists in filesystem
    glibc: /usr/share/i18n/locales/sq_AL exists in filesystem
    glibc: /usr/share/i18n/locales/sr_ME exists in filesystem
    glibc: /usr/share/i18n/locales/sr_RS exists in filesystem
    glibc: /usr/share/i18n/locales/sr_RS@latin exists in filesystem
    glibc: /usr/share/i18n/locales/ss_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/st_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/sv_FI exists in filesystem
    glibc: /usr/share/i18n/locales/sv_FI@euro exists in filesystem
    glibc: /usr/share/i18n/locales/sv_SE exists in filesystem
    glibc: /usr/share/i18n/locales/ta_IN exists in filesystem
    glibc: /usr/share/i18n/locales/te_IN exists in filesystem
    glibc: /usr/share/i18n/locales/tg_TJ exists in filesystem
    glibc: /usr/share/i18n/locales/th_TH exists in filesystem
    glibc: /usr/share/i18n/locales/ti_ER exists in filesystem
    glibc: /usr/share/i18n/locales/ti_ET exists in filesystem
    glibc: /usr/share/i18n/locales/tig_ER exists in filesystem
    glibc: /usr/share/i18n/locales/tk_TM exists in filesystem
    glibc: /usr/share/i18n/locales/tl_PH exists in filesystem
    glibc: /usr/share/i18n/locales/tn_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/tr_CY exists in filesystem
    glibc: /usr/share/i18n/locales/tr_TR exists in filesystem
    glibc: /usr/share/i18n/locales/translit_circle exists in filesystem
    glibc: /usr/share/i18n/locales/translit_cjk_compat exists in filesystem
    glibc: /usr/share/i18n/locales/translit_cjk_variants exists in filesystem
    glibc: /usr/share/i18n/locales/translit_combining exists in filesystem
    glibc: /usr/share/i18n/locales/translit_compat exists in filesystem
    glibc: /usr/share/i18n/locales/translit_font exists in filesystem
    glibc: /usr/share/i18n/locales/translit_fraction exists in filesystem
    glibc: /usr/share/i18n/locales/translit_hangul exists in filesystem
    glibc: /usr/share/i18n/locales/translit_narrow exists in filesystem
    glibc: /usr/share/i18n/locales/translit_neutral exists in filesystem
    glibc: /usr/share/i18n/locales/translit_small exists in filesystem
    glibc: /usr/share/i18n/locales/translit_wide exists in filesystem
    glibc: /usr/share/i18n/locales/ts_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/tt_RU exists in filesystem
    glibc: /usr/share/i18n/locales/tt_RU@iqtelif exists in filesystem
    glibc: /usr/share/i18n/locales/ug_CN exists in filesystem
    glibc: /usr/share/i18n/locales/uk_UA exists in filesystem
    glibc: /usr/share/i18n/locales/ur_PK exists in filesystem
    glibc: /usr/share/i18n/locales/uz_UZ exists in filesystem
    glibc: /usr/share/i18n/locales/uz_UZ@cyrillic exists in filesystem
    glibc: /usr/share/i18n/locales/ve_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/vi_VN exists in filesystem
    glibc: /usr/share/i18n/locales/wa_BE exists in filesystem
    glibc: /usr/share/i18n/locales/wa_BE@euro exists in filesystem
    glibc: /usr/share/i18n/locales/wal_ET exists in filesystem
    glibc: /usr/share/i18n/locales/wo_SN exists in filesystem
    glibc: /usr/share/i18n/locales/xh_ZA exists in filesystem
    glibc: /usr/share/i18n/locales/yi_US exists in filesystem
    glibc: /usr/share/i18n/locales/yo_NG exists in filesystem
    glibc: /usr/share/i18n/locales/zh_CN exists in filesystem
    glibc: /usr/share/i18n/locales/zh_HK exists in filesystem
    glibc: /usr/share/i18n/locales/zh_SG exists in filesystem
    glibc: /usr/share/i18n/locales/zh_TW exists in filesystem
    glibc: /usr/share/i18n/locales/zu_ZA exists in filesystem
    glibc: /usr/share/locale/locale.alias exists in filesystem
    glibc: /usr/share/locale/zh_CN/LC_MESSAGES/libc.mo exists in filesystem
    perl: /etc/profile.d/perlbin.sh exists in filesystem
    perl: /usr/lib/perl5/core_perl/.packlist exists in filesystem
    perl: /usr/lib/perl5/core_perl/B.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/EXTERN.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/INTERN.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/XSUB.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/av.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/cc_runtime.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/config.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/cop.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/cv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/dosish.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/embed.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/embedvar.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/fakesdio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/fakethr.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/form.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/gv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/handy.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/hv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/intrpvar.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/iperlsys.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/keywords.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/libperl.a exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/malloc_ctl.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/mg.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/nostdio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/op.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/opcode.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/opnames.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/overload.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/pad.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/parser.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/patchlevel.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perl.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlapi.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perliol.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlsdio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlsfio.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perlvars.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/perly.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/pp.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/pp_proto.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/proto.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/reentr.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regcharclass.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regcomp.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regexp.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/regnodes.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/scope.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/sv.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/thread.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/uconfig.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/unixish.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/utf8.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/utfebcdic.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/util.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/uudmap.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/CORE/warnings.h exists in filesystem
    perl: /usr/lib/perl5/core_perl/Config.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Config.pod exists in filesystem
    perl: /usr/lib/perl5/core_perl/Config_heavy.pl exists in filesystem
    perl: /usr/lib/perl5/core_perl/Cwd.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/DB_File.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/DynaLoader.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Encode.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Errno.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Fcntl.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/GDBM_File.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/IO.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/O.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Opcode.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/POSIX.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/POSIX.pod exists in filesystem
    perl: /usr/lib/perl5/core_perl/SDBM_File.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Safe.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Socket.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/Storable.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/XSLoader.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/attrs.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/encoding.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/lib.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/ops.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/re.pm exists in filesystem
    perl: /usr/lib/perl5/core_perl/threads.pm exists in filesystem
    Errors occurred, no packages were upgraded.
    And the problem transists. I tried pacman -R glibc perl but it didn't go too well, got complaints on practically everything depending on glibc. Is it a good or bad idea to manually delete all the files listed above? There surely has to be a better way...
    thanks, Dan

  • Soundblaster Audigy ZS Issue: Cannot Find Supported Hardw

    Hello,
    I recently reformatted again, because I disliked Vista (Doesnt everyone these days? :P) and wanted to go back to XP. The problem is when I tried to install the given drivers from the support page, as well as a number of others that were outdated from other sites, they all said they could not find supported hardware and that I should make sure its connected ect. The soundcard is securely in and I know for a fact that it works in the slot its in because it did before both on vista and XP, though I do remember when I was on Vista I used a beta 3rd party driver that I cant seem to find anymore. Does anyone know how to fix this?
    -Ex

    jimmgc5,
    Did you install the software that came with your Audigy 2 ZS? If so, does device manager show that the card is working, and do any or the Creative applets, such as the Surround Mixer, work?

  • Try/catch issue - "cannot find symbol - class InputMismatchExeption"

    I'm still learning try/catch but from what i've read online and in the class library it looks right...i'm not sure why it won't compile.
    try {
                    do {
                        System.out.print("Enter command (1-5): ");
                        selection = scan.nextInt();
                        if (selection < 1 || selection > 5) {
                            System.out.print("Illegal command number.");
                            System.out.println("The available commands are:");
                            System.out.println("\t1. Add new entry to the address book.");
                            System.out.println("\t2. Delete existing entry from address book entries.");
                            System.out.println("\t3. Print out all address book entries.");
                            System.out.println("\t4. Search records for a certain pattern.");
                            System.out.println("\t5. Quit the Application.");
                    while (selection < 1 || selection > 5);
                //this does not work!!!!!!
                catch( InputMismatchException ime ){
                    System.out.println("Illegal command.");
                }

    I have
    import.java.io.*;at the beginning before i declare my class. I'm not sure abotu the second thing you said, could you elaborate?
    I'm sorry, I'm still new at java.
    edit: yeah, I didn't import java.util.... hides in shame
    Do i still have to import util.Scanner or will that import automatically when i import util.*
    Message was edited by:
    Cymae

  • CFIMAGE captcha issue - Cannot find /CFFileServlet, possibly because server and webroot are on different drives

    CFIMAGE captcha was working on my DEV system, where the wwwroot is in the same folder as CFServer is installed.
    It is NOT working when I move it to staging, which is identical to production - including the fact that CFServer is on D: drive, but wwwroot is on E: drive.
    Is there a way to map a location for the CFFileServlet folder?  I think this is the reason it isn't working in staging.
    V/r,
    ^_^

    May want to check your web server to be sure it's not Denying access to that folder based URL Request filtering.  Part of the ColdFusion lockdown guide recommends to Deny access to this folder unless you use CFImage, CFChart, CFPresentation, or CFReport.
    Page 30 here:
    http://www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf11/cf11-lockdown-guid e.pdf

  • Cannot find a Vector within a Vector

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

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

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

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

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

  • The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

    The Control A key is not working. I cannot multi-select my songs. I'm not sure if it is the problem with iTunes 10.6.1.7 or my PC settings encounter issues. Also, i cannot find Album Artwork online using iTunes and i cannot select any view form but List.

Maybe you are looking for

  • Creating a new line in PLSQL

    I am trying to create a new line by returning a variable from a function by coding the following which worked for the last version of HTML_DB and understood that after my variable named vlname I wanted a new line msg := 'NAME: ' || vlname ||'<br><br>

  • ITunes won't sync my photo events properly

    I have recently organized all my photos in iphoto by event and when I connect my iphone 4 or ipad 2 to itunes the albums are scattered and separated. As an example, in iphoto I have one album for my wallpapers but when I go into itunes to select that

  • Does XI support Socket communication?

    Hi, This question came from our customers and consultants. I saw the definition of socket in Wikipedia that it is somehow based on TCP, UDP. So far as I know, XI does not "support" TCP/IP. Does this mean XI does not support Socket either? Or this cou

  • MiniSAP 46D Installation Error

    Hi guys,      I have already this error but i cant get a reply. Please help me to overcome this error.      I bought ABAP objects book for miniSAP. I installed it sucessfully first time. But while i am repeating the same procedure for the second time

  • Compiler Warning: Recompile with -Xlint

    Note: C:\Documents and Settings\*\My Documents\InfixConvertor.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. Making a Infix to Postfix program. Doing some research, I understand that it does not need to b