Runtime Struts Exception on WinXP but not on Linux

I have developed a Struts based application on a Red Hat EL WS machine with JDeveloper 9.5.0.2. Every thing works as expected when I run the application in JDev's OC4J. The views are tested in both Opera and Mozilla browsers.
An other developer (my customer in this case) imports the application to his JDev 9.0.5.2 running on a Win XP box. The application compiles without errors or warnings. At runtime it fails at a Struts <html:form> element in both IE and Firefox with the same exception error 500 with a stack traces starting with:
"javax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection"
I have search the web for this exception and found several reasons, but no procurement.
Here is the stack-trace:
500 Internal Server Errorjavax.servlet.jsp.JspException: Cannot find ActionMappings or ActionFormBeans collection
at org.apache.struts.taglib.html.FormTag.lookup(FormTag.java:798)
at org.apache.struts.taglib.html.FormTag.doStartTag(FormTag.java:506)
at ItemTester.jspService(ItemTester.jsp:13)
[ItemTester.jsp]
at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:139)
at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:349)
at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:604)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
at java.lang.Thread.run(Thread.java:534)
When the application initializes in JDev it throws an exception which I do not observe on the Linux box:
19-08-2004 18:34:48 org.apache.struts.action.ActionServlet initServletSEVERE: nulljava.net.MalformedURLException: unknown protocol: classloader at java.net.URL.<init>(URL.java:544) at java.net.URL.<init>(URL.java) at java.net.URL.<init>(URL.java) at oracle.xml.parser.v2.NonValidatingParser.pushExternalDTD(NonValidatingParser.java:510) at oracle.xml.parser.v2.NonValidatingParser.parseDoctypeDecl(NonValidatingParser.java:454) at oracle.xml.parser.v2.NonValidatingParser.parseProlog(NonValidatingParser.java:287) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:266) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:149) at org.apache.commons.digester.Digester.parse(Digester.java:1568) at org.apache.struts.action.ActionServlet.initServlet(ActionServlet.java:1433) at org.apache.struts.action.ActionServlet.init(ActionServlet.java:466) at javax.servlet.GenericServlet.init(GenericServlet.java:259) at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2094) at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4523) at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4617) at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:765) at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:497) at com.evermind.server.Application.getHttpApplication(Application.java:886) at com.evermind.server.http.HttpServer.getHttpApplication(HttpServer.java:688) at com.evermind.server.http.HttpSite.getApplication(HttpSite.java:420) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:422) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186) at java.lang.Thread.run(Thread.java:534)

Frank,
It is possible that he did use OC4J with SSL before this project, but I cannot say for sure.
Could you point me to some resource on the issue?
--Flemming                                                                                                                                                                                                                                                                                                                                                    

Similar Messages

  • URL.openStream() works in Windows but not in Linux

    I am having a problem with this line:
    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
    in the code sample further below.
    A simple program using this line works when compiled in my Windows XP:
    java version "1.6.0_03"
    Java(TM) SE Runtime Environment (build 1.6.0_03-b05)
    Java HotSpot(TM) Client VM (build 1.6.0_03-b05, mixed mode, sharing)
    but not when compiled on my RedHat FC 4 server:
    java version "1.4.2"
    gij (GNU libgcj) version 4.0.2 20051125 (Red Hat 4.0.2-8)
    The program (making using of a previous froum example and pared down to minimize tangent topics):
    The code works for all 3 URLs in Windows. In Linux it only works for the 1st one (bbc.co site)
    Error is listed below the code:
    import java.net.*;
    import java.io.*;
    public class BBC {
    public static void main(String[] args) throws Exception
    //    URL url = new URL("http://news.bbc.co.uk/sport1/hi/football/eng_prem/6205747.stm");
    //    URL url = new URL("http://www.weatherunderground.com/global/stations/71265.html");
        URL url = new URL("http://www.weatherunderground.com");
        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
        int nLineCnt = 0;
        String inputLine;
        while ((inputLine = in.readLine()) != null)
            nLineCnt++;
        System.out.println("nLineCnt=" + nLineCnt);
    //--------------------------------------------------------------------------------------------------------------------------------------------Exception in thread "main" java.lang.StringIndexOutOfBoundsException
    at java.lang.String.substring(int, int) (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.Request.readResponse(gnu.java.net.LineInputStream) (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.Request.dispatch() (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.HTTPURLConnection.connect() (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.net.protocol.http.HTTPURLConnection.getInputStream() (/usr/lib/libgcj.so.6.0.0)
    at java.net.URL.openStream() (/usr/lib/libgcj.so.6.0.0)
    at BBC.main(java.lang.String[]) (Unknown Source)
    at gnu.java.lang.MainThread.call_main() (/usr/lib/libgcj.so.6.0.0)
    at gnu.java.lang.MainThread.run() (/usr/lib/libgcj.so.6.0.0)
    Can anyone please suggest what I can do to be able to process the weatherunderground URL?
    Claude

    To me it would suggest a bug in the VM that you are using.
    Solutions
    1. Use a different VM
    2. Write your own code to process the http code. Depending on licensing for the VM in use and the VM itself. you might be
    able to find the bug in that code, fix it yourself, and then use your fix (start up command line options for VM.) Otherwise
    you have to duplicate the functionality. You might look to jakarta commons, there might be code there that does that.

  • Simple Custom Identity Service running on windows OK, but not on linux, y?

    In <Oracle® BPEL Process Manager Developer's Guide 10g Release 2 (10.1.2)
    B14448-03>,
    Part III, 16<Oracle BPEL Process Manager Workflow
    Services, Identity Service, Creating a Custom Identity Service Plug-in>
    My pc, OS:windows 2003+BPEL PM Server10.1.2
    Server, OS:linux+ias+OC4J_BPEL, i can't make sure the version, may be:10.1.2
    In the Developer's Guide say:
    Identity Service has 3 provider:
    1, JAZN Provider
    2,Third-party LDAP Directories
    3,CUSTOM Repository LDAP-Based Plug-ins
    so i like the third one.
    1, i compile the project in Oracle_Home\integration\orabpel\samples\hw\isplugin\db.
    Then it create a jar file(IS-DBPlugin.jar) in Oracle_Home\integration\orabpel\system\services\lib
    2,Modify the provider config file: is_config.xml
    modify the config file: application.xml
    restart the Oracle BPEL server
    3,run the sql files it provider int the polsql.cmd
    OK, now the Identity Service work on Oracle lite database, it's my needs.
    add a user into the tables
    use the url:http://localhost:9700/integration/worklistapp/Login
    i can login the worklist service use my custom user and password.
    when the Identity Service use the JAZN Provider(XML), it's default choice.i add a user into the xml files, i mast restart my server if i want use the user login.
    use the database plugin,when i insert a user name into the tables,i can login the service use the username immediately.
    So i think it's easy to move it to my server(linux os). but when i copy the jar file to the folder,modify the config files,run ths sql files in the oracle database.
    but when i open the url :http://server_ip:port/integration/worklistapp/Login
    it can not work with a simple error message:Worklist service Identity Service error.
    in the log files i find some message like this :
    SOAP-ENV:Server.Exception
    BPEL-10551 can not load the Custom Identity Service Class:
    "IdentityServiceCustomPlugin.CustomIdentityService"
    it has wasted me one week time. and i can't find the reason now.
    who can help me ?
    thanks
    cnboy

    clemens,thanks.
    i'm sorry that my English is poor.so i can't understand you mean completely.
    you say it might be a linux jvm reason, can the metter be resolved?
    and you say extract the jar file .which files i would extract,can you say particular?
    thx!

  • Dlopen works on Solaris but not on Linux.

    Can anyone explain why this is happening? Save the 5 source files and run the 'build' script.
    On a Solaris system it works:
    SunOS wibble 5.11 snv_124 i86pc i386 i86pc
    g++ (GCC) 3.4.3 (csl-sol210-3_4-20050802)
    Copyright (C) 2004 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    Call dlopen
    In bar
    dlopen returns fecb0348
    After dlopen
    On a Linux system it does not work:
    Linux uce-build 2.6.9-34.ELsmp #1 SMP Fri Feb 24 16:54:53 EST 2006 i686 athlon i386 GNU/Linux
    g++ (GCC) 3.4.5 20051201 (Red Hat 3.4.5-2)
    Copyright (C) 2004 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions. There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    Call dlopen
    dlopen returns ./testlib.so: undefined symbol: f
    After dlopen
    foo.h
    class foo {
    public:
    foo();
    virtual ~foo();
    void bar();
    private:
    newClass.h
    class newClass {
    public:
    newClass();
    virtual ~newClass();
    private:
    foo.cpp
    #include "foo.h"
    #include <stdio.h>
    foo::foo() { }
    foo::~foo() { }
    void foo::bar() {
    printf("In bar\n");
    main.cpp
    #include <stdio.h>
    #include <cstdlib>
    #include "foo.h"
    #include <dlfcn.h>
    #include <link.h>
    using namespace std;
    foo f;
    int main(int argc, char** argv) {
    printf("Call dlopen\n");
    void *handle;
    if (handle = dlopen("./testlib.so", RTLD_NOW) ) {
    printf("dlopen returns %p \n", handle);
    } else {
    printf("dlopen returns %s \n", dlerror());
    printf("After dlopen\n");
    return 0;
    newClass.cpp
    #include "newClass.h"
    #include "foo.h"
    extern foo f;
    newClass n;
    newClass::newClass() {
    f.bar();
    newClass::~newClass() { }
    build
    uname -a
    g++ --version
    g++ -fpic -c -g -o newClass.o newClass.cpp
    g++ -shared -o testlib.so newClass.o
    g++ -c -g -o foo.o foo.cpp
    g++ -c -g -o main.o main.cpp
    g++ -ldl -o testcase main.o foo.o
    ./testcase

    Edit: I succeeded to solve it accidentally. I did the following: Sign the jar in Netbeans, clean and build, the jar didn't work, I wiped out the .ks from the jar and clean and build again. Now it worked.
    Edited by: Vitali.pom on Oct 30, 2011 1:28 AM

  • Runtime.exec() works in Win98 but not in XP?

    Hi all!
    I have the following problem: I am using following lines of code in win98 to launch a MSDOS-window from my application (with some arguments to it):
    try {
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("start "+"command.com"+"/k"+"java -cp \""
    +getArgument(directory,false)
    +"\""+" "+getNoExtent(file));
    proc.waitFor();
    catch (Exception ex) {
    ex.printStackTrace();
    This works very well, however in XP it doesnt do a thing (I know that I have to change 'command.com' to 'cmd' or 'cmd.exe'). I have already tried that but it wont work. Instead, this exception occurs while running on XP:
    java.io.IOException: CreateProcess: start cmd error=2
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:63)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:566)
    at java.lang.Runtime.exec(Runtime.java:428)
    at java.lang.Runtime.exec(Runtime.java:364)
    at java.lang.Runtime.exec(Runtime.java:326)
    at JSEdit.actionPerformed(JSEdit.java:443)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
    64)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1817)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:419)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257
    at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
    at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1
    113)
    at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseRelease
    d(BasicMenuItemUI.java:943)
    at java.awt.Component.processMouseEvent(Component.java:5134)
    at java.awt.Component.processEvent(Component.java:4931)
    at java.awt.Container.processEvent(Container.java:1566)
    at java.awt.Component.dispatchEventImpl(Component.java:3639)
    at java.awt.Container.dispatchEventImpl(Container.java:1623)
    at java.awt.Component.dispatchEvent(Component.java:3480)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
    at java.awt.Container.dispatchEventImpl(Container.java:1609)
    at java.awt.Window.dispatchEventImpl(Window.java:1590)
    at java.awt.Component.dispatchEvent(Component.java:3480)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    What should I do?
    Thanx!
    Regards
    Veroslav

    Check you string concatenation, you're missing spaces or you are not providing the actual code:
    Process proc = rt.exec("start "+"command.com"+"/k"+"java -cp \""
    +getArgument(directory,false)
    +"\""+" "+getNoExtent(file));Let's dissect:
    String command = "start ";
    // command := "start "
    command += "command.com";
    // command := "start command.com"
    command += "/k"+"java -cp \""
    // command := "start command.com/kjava -cp\""You can always trace these kind of errors by using a debugger. Or dump the string you are passing to System.out. Every comprehensive IDE has a debugger built in, or you can resort to jdb.
    Greets
    Dhek Bhun.

  • A exception is generated in Windows but not in Linux

    FULL PRODUCT VERSION :
    junmin@Linux:~/Workspace/JMessenger/build/classes$ java -version
    java version "1.6.0"
    Java(TM) SE Runtime Environment (build 1.6.0-b105)
    Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode, sharing)
    E:\JMessenger\build\classes>java -version
    java version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) Client VM (build 1.6.0_01-b06, mixed mode, sharing)
    ADDITIONAL OS VERSION INFORMATION :
    junmin@Linux:~/Workspace/JMessenger/build/classes$ uname -a
    Linux Linux 2.6.20-15-generic #2 SMP Sun Apr 15 07:36:31 UTC 2007 i686 GNU/Linux
    ubuntu feisty, installed sun-java-jre and jdk from the repository of ubuntu
    and
    Windows XP professional sp2
    java6 installed
    A DESCRIPTION OF THE PROBLEM :
    reader = new BufferedReader(new InputStreamReader(client.getInputStream())); // client is the socket in the server side
                 try{
                     while((incomingMessage = reader.readLine()) != null){
                 catch(Exception e){
                         System.out.println(e);
                 }       //serverthis is a client-server program, why in Windows it(server) throw the Exception when the client closes the program o the socket? and it doesnt throw any exception in Linux(ubuntu feisty/dapper) ??????
    here is the exception generated in Windows:
         java.net.SocketException: Connection reset
                 at java.net.SocketInputStream.read(Unknown Source)
                 at sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
                 at sun.nio.cs.StreamDecoder.implRead(Unknown Source)
                 at sun.nio.cs.StreamDecoder.read(Unknown Source)
                 at java.io.InputStreamReader.read(Unknown Source)
                 at java.io.BufferedReader.fill(Unknown Source)
                 at java.io.BufferedReader.readLine(Unknown Source)
                 at java.io.BufferedReader.readLine(Unknown Source)
                 at Service.run(Service.java:37)is this could be considered a bug??? i hope java can throw the same exception in Linux too, cause this helps to check the statu of socket connection. thanks

    The following is mostly an educated guess, but it is based in some understanding of how the different OSs work.
    In linux sockets are handled by the driver(read: kernel part) that converts the actions on file descriptors to actions on network sockets. When a program shuts down, said driver continues to run, but receives a close request on the file descriptor, so it proceeds with a standard socket close.
    On windows, the sockets are the property of the program, not the network driver, and when the program shuts down the sockets simply abort as they are discarded. The network driver is not allowed to temporarily hold the socket until its operation completes. They are simply thrown away.
    Anyway, a proper solution that would be helpful for all OSs is to actually close the socket within the program, rather than hope the OS has a "garbage collector" for sockets. The same applies for all OS resources(files, pipes, GUI resources, etc). On certain OSs, certain resources may actually remain allocated after program shutdown, if not formally disposed.
    On a side note, socket libraries for windows usually support socket auto-close on disposing of the socket object. I'm surprised the Java library doesn't (seem to) follow the same pattern. Then again, I've seen programs(non-java, of course) cause system freezes over stuff like that.

  • Applet: Null Pointer Exception in NN but not in IE???!!!!

    hi all,
    i have worked on a an applet that uses a nother Runnable class to implement an animated progress bar using MediaTracker, and i can control when to start animation and when to stop it! it worked great on IE. But when i came to test it on Netscape Navigator, it surprised me with THIS
    and now i don't know what to do
    # Applet exception: java.lang.NullPointerException
    java.lang.NullPointerException
    at sun.awt.windows.WGraphics.drawImage(Compiled Code)
    * at AnimationPanel.flip(Compiled Code)
    at AnimationPanel.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    java.io.IOException: CreateProcess: vcafe -netscape error=2
    at java.lang.Win32Process.<init>(Compiled Code)
    at java.lang.Runtime.exec(Compiled Code)
    * at java.lang.Runtime.exec(Compiled Code)
    at netscape.debug.Debugger.launchDebugger(Compiled Code)
    at netscape.debug.Debugger.uncaughtException(Compiled Code)
    at netscape.applet.AppletThreadGroup.uncaughtException(Compiled Code

    well, thanks everybody, seems i wasn't the only one troubled with this:
    for ppl who might read my Q next time,
    always run u'r applet from a web server! :)
    netscape has it's own way! in everything ...

  • Runtime.exec work in windows but not in solaris??

    hi all,
    can someone tell me why the following code work in windows platform but doesnt work in solaris?The program tries to ping 127.0.0.1 and the output is correct in windows, but when i try it in solaris, it produces the following exception :
    Internal error: Unexpected Java exception thrown ( unknown exception, no description ) , stack:java.lang.NoClassDefFoundError: StreamGobbler
    at java.lang.Class.getDeclaredConstructors()(Native Method) ....
    The code is as follow:
    import java.util.*;
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    class StreamGobbler extends Thread
         InputStream is=null;
         String type=null;
         PrintWriter out=null;
         StreamGobbler(InputStream is,String type,PrintWriter out)
         this.is=is;
         this.type=type;
         this.out=out;
         public void run()
              try
              InputStreamReader isr=new InputStreamReader(is);
              BufferedReader br=new BufferedReader(isr);
              System.out.println("finishing inputstreamReader and BufferedReader");
              String line=null;
              while (     (line=br.readLine())!=null )
                   {     out.println(type+"> "+line);
                        out.println("<br>");          
              catch (IOException ioe)
              {     ioe.printStackTrace();
    public class ping extends HttpServlet
         public void init(ServletConfig config) throws ServletException
         {     super.init();
         public void service(HttpServletRequest req,HttpServletResponse res) throws ServletException, IOException
              res.setContentType("text/html");
              PrintWriter out=res.getWriter();
         try     {
              Runtime rt=Runtime.getRuntime();
              System.out.println("pinging 127.0.0.1");
              String[] cmd={"ping","127.0.0.1"};
              Process proc=rt.exec(cmd);
              System.out.println("finishing process proc=rt.exec(cmd)");
              StreamGobbler errorGobbler = new StreamGobbler(proc.getErrorStream(),"ERROR",out);
              StreamGobbler outputGobbler= new StreamGobbler(proc.getInputStream(),"OUTPUT",out);
              errorGobbler.start();
              outputGobbler.start();
              int exitVal=proc.waitFor();
              out.println("Process exitValue: "+exitVal);
              out.close();
         catch (Throwable t)
                   t.printStackTrace();

    Did you copy all the class files to your solaris machine ? SOunds like you didn't copy all your files correctly.

  • Net use * \\computername gives a 52 error (duplicate name) with WINXP but not with WIN7

    Hi,
    I use the command " use * \\computername\share " to test the mapping of shared drives.   
    The target machine is a Win7 machine (and is in another subnet).
    The lmhost file of the client machines contains the line
    " IP address - computername #PRE "
    to allow for name resolution.
    I  get a correct reply with "ping computername", which shows that name resolution at the level of the clients is all right.
    However, when I try the "use * \\computername\share" command, it works fine if the client is a Win7 machine but gives me a "error 52 duplicate name" if the client is an XP machine.
    Now, "computername" is NOT the NETBIOS name of the target computer but another name I use for sake of facility (the NETBIOS name of the target machine is a complex one and makes it identification by the end-user difficult when it appears in the
    drop list of the GUI command "map network drive" (which is what the end-user will use for mapping).   
    Is it possible that the client WinXP tries checking "computername" against the real NETBIOS name of the target machine and says that there is duplication because they do not match, whereas the client Win7 does not do that or accepts that "computername"
    is not the real NETBIOS name ?

    Dear Carey,
    Thank you for your reply.  However, what the link describes is a situation opposite to what I described.
    The link is about TWO computers with the same NETBIOS name on a s single local network. Then the conflict is obvious since that NETBIOS name will have to point to two IP addresses.
    What I described was trying to map a shared disk on a a SINGLE computer with NETBIOS name "A" and a given unique public IP address (vvv.xxx.yyy.zzz), but to which I referred to in the lmhost file of the calling
    computer (located in another local network) with another NETBIOS name ("B") . 
    Thus, the target computer is a names "A" in its local network but the lmhost file in the calling computer has a line "vvv.xxx.yyy.zzz 
    B #PRE".   This when I got the "Duplicate name error". 
    I do not understand the error because the lmhost file should simply allow the calling computer to make name resolution (and say "B" is IP address vvv.xxx.yyy.zzz) to make the connection (which is what we get if we use the command "net use
    * \\vvv.xxx.yyy.zzz\share" [this command always work]).  But what I was suspecting is that the calling computer gets confused when it sees that the target computer with address vvv.xxx.yyy.zzz has a NETBIOS name different ("A")
    from the one it was supposed to call ("B"). 
    Am I correct ?
    As I explained in my original post, I uses "B" to name the target computer on the calling computer because "A" is a quite fancy and difficult name that the end user will never understand or remember. 
    If I name the target computer "A" in the lmhost file (i.e. its real NETBIOS name), I do not have any problem. 

  • IPod recognized as disk drive by WinXP but not seen in iTunes or iUpdater

    HELP!!
    A few short weeks ago I was ecstatic when I received my new iPod video as a Christmas gift. Imagine my dismay as I have been trying to get the darn thing to connect to iTunes ever since!
    I have gone through the Apple website troubleshooting, have spent HOURS with a MAC "genius" and we still can't figure out what's going on.
    The device has been restored and iTunes/Updater have been removed and re-installed NUMEROUS times but still can't get my 30G iPod Video to register in iTunes. Apple swears it is my laptop. I've removed everything and re-installed from scratch so I find it hard to believe that it is just my PC.
    When I plug it into my USB I get the "Do Not Disconnect" icon that just keeps flashing (guess I should be happy its not freezing anymore!). I can see it as my "E" (Removable Disk) Drive but can't find it with iTunes or iPod Updater (Oct05 and Nov05 versions). It does appear when connected to an Apple store MAC or the Apple store's PC...so maybe it is mine.....?
    Any advice?
    Thanks!
    Toshiba Laptop - P4   Windows XP  

    Maybe you solved this or not but I have a suggestion. If you have a PCMCIA slot try adding a usb 2.0 pcmcia card. I was having a world of troubles that have included one already returned 5G 60GB. It was rendered inoperative by a failed restore process. I assumed it was a defective ipod.
    Receiving the new one last night it was showing similar behavior to the one I had to replace. I thought my laptop might be a factor. I was already using a compUSA usb 2/FW card with the ipod but after searching I found a post that warned that card is trouble. I just bought a HP USB 2 pcmcia card (US$39) and about 8 gigs of movies was just gulped down by my ipod in one sitting. With the compUSA card it would cough and choke on one movie sometimes.
    Sorry for your troubles. Good luck.
    dell inspiron lappy   Windows XP Pro   HP pcmcia USB 2.0 adapter

  • Exceptions in eclipse - but not in exported jar?

    Hello girls, hello boys,
    first of all merry christmas :)
    I'm developing sumthin in eclipse (win7) but when I try to run the app (which worked fine earlier - did a new checkout from cvs) it throws exceptions like this:
    "Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
         at visnav.master.cluster.TreeIterator.next(TreeIterator.java:37)
         at visnav.master.cluster.TreeIterator.next(TreeIterator.java:1)
         at visnav.master.PhotoRenderer.selectCluster(PhotoRenderer.java:97)
         at visnav.master.PhotoRenderer.access$2(PhotoRenderer.java:87)
         at visnav.master.PhotoRenderer$1.mouseMoved(PhotoRenderer.java:73)
         at java.awt.AWTEventMulticaster.mouseMoved(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseMoved(Unknown Source)
         at java.awt.Component.processMouseMotionEvent(Unknown Source)
         at javax.swing.JComponent.processMouseMotionEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Exception in thread "AWT-EventQueue-0" javax.media.opengl.GLException: Error making context current: 6
         at com.sun.opengl.impl.windows.WindowsGLContext.makeCurrentImpl(WindowsGLContext.java:169)
         at com.sun.opengl.impl.windows.WindowsPbufferGLContext.makeCurrentImpl(WindowsPbufferGLContext.java:102)
         at com.sun.opengl.impl.GLContextImpl.makeCurrent(GLContextImpl.java:134)
         at com.sun.opengl.impl.GLDrawableHelper.invokeGL(GLDrawableHelper.java:182)
         at com.sun.opengl.impl.GLPbufferImpl.maybeDoSingleThreadedWorkaround(GLPbufferImpl.java:208)
         at com.sun.opengl.impl.GLPbufferImpl.display(GLPbufferImpl.java:88)
         at javax.media.opengl.GLJPanel.paintComponent(GLJPanel.java:659)
         at visnav.master.vismap.InteractionMap.paintComponent(InteractionMap.java:754)
         at javax.swing.JComponent.paint(Unknown Source)
         at javax.swing.JComponent.paintToOffscreen(Unknown Source)
         at javax.swing.RepaintManager$PaintManager.paintDoubleBuffered(Unknown Source)
         at javax.swing.RepaintManager$PaintManager.paint(Unknown Source)
         at javax.swing.RepaintManager.paint(Unknown Source)
         at javax.swing.JComponent._paintImmediately(Unknown Source)
         at javax.swing.JComponent.paintImmediately(Unknown Source)
         at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
         at javax.swing.RepaintManager.paintDirtyRegions(Unknown Source)
         at javax.swing.RepaintManager.seqPaintDirtyRegions(Unknown Source)
         at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)"
    When I export the app to a jar the jar works fine in Windows ...
    One thing I changed in my configuration: I tried to start the app using an external flatscreen. But that can't be the problem...?
    Thx for any kind of advice - can't test new code efficiently by exporting a jar each time...

    It would help to see the relevant code mentioned by the stack trace.

  • Slow Shutdown on all Linux kernels but not on Linux-lts kernel

    Been having this problem since the beginning of my Linux experience with Arch.
    This is my uname -r output:
    3.8.6-1-ARCH
    This problem only happens on Linux main kernel, and never happen in Linux-lts kernel. Tried using the method mentioned in the wiki to produce a shutdown log and this is what I got:
    [ 0.003774] Freeing SMP alternatives: 16k freed
    [ 0.004541] ACPI: Core revision 20121018
    [ 0.013344] ftrace: allocating 18216 entries in 36 pages
    [ 0.020098] Enabling APIC mode: Flat. Using 1 I/O APICs
    [ 0.020517] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.056047] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T5870 @ 2.00GHz (fam: 06, model: 0f, stepping: 0d)
    [ 0.056666] Performance Events: PEBS fmt0+, 4-deep LBR, Core2 events, Intel PMU driver.
    [ 0.056666] perf_event_intel: PEBS disabled due to CPU errata
    [ 0.056666] ... version: 2
    [ 0.056666] ... bit width: 40
    [ 0.056666] ... generic registers: 2
    [ 0.056666] ... value mask: 000000ffffffffff
    [ 0.056666] ... max period: 000000007fffffff
    [ 0.056666] ... fixed-purpose events: 3
    [ 0.056666] ... event mask: 0000000700000003
    [ 0.076717] CPU 1 irqstacks, hard=f64ba000 soft=f64bc000
    [ 0.076720] smpboot: Booting Node 0, Processors #1 OK
    [ 0.006666] Initializing CPU#1
    [ 0.006666] CPU1: Thermal monitoring handled by SMI
    [ 0.089933] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.089948] Brought up 2 CPUs
    [ 0.089951] smpboot: Total of 2 processors activated (7982.90 BogoMIPS)
    [ 0.090093] devtmpfs: initialized
    [ 0.090243] PM: Registering ACPI NVS region [mem 0x3f7c5400-0x3f7e7fb7] (142264 bytes)
    [ 0.091141] RTC time: 17:25:11, date: 04/14/13
    [ 0.091196] NET: Registered protocol family 16
    [ 0.091416] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.091419] ACPI: bus type pci registered
    [ 0.091492] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.091495] PCI: not using MMCONFIG
    [ 0.094229] PCI: PCI BIOS revision 2.10 entry at 0xf0322, last bus=48
    [ 0.094231] PCI: Using configuration type 1 for base access
    [ 0.094334] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.094336] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.094338] mtrr: corrected configuration.
    [ 0.095005] bio: create slab <bio-0> at 0
    [ 0.095005] ACPI: Added _OSI(Module Device)
    [ 0.095005] ACPI: Added _OSI(Processor Device)
    [ 0.095005] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.095005] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.097048] ACPI: EC: Look up EC in DSDT
    [ 0.111410] ACPI: SSDT 3f7db90c 0027F (v01 HP Cpu0Ist 00003000 INTL 20060317)
    [ 0.111870] ACPI: Dynamic OEM Table Load:
    [ 0.111873] ACPI: SSDT (null) 0027F (v01 HP Cpu0Ist 00003000 INTL 20060317)
    [ 0.112026] ACPI: SSDT 3f7dbc10 00619 (v01 HP Cpu0Cst 00003001 INTL 20060317)
    [ 0.112465] ACPI: Dynamic OEM Table Load:
    [ 0.112468] ACPI: SSDT (null) 00619 (v01 HP Cpu0Cst 00003001 INTL 20060317)
    [ 0.112715] ACPI: SSDT 3f7db844 000C8 (v01 HP Cpu1Ist 00003000 INTL 20060317)
    [ 0.113164] ACPI: Dynamic OEM Table Load:
    [ 0.113167] ACPI: SSDT (null) 000C8 (v01 HP Cpu1Ist 00003000 INTL 20060317)
    [ 0.113267] ACPI: SSDT 3f7dbb8b 00085 (v01 HP Cpu1Cst 00003000 INTL 20060317)
    [ 0.113713] ACPI: Dynamic OEM Table Load:
    [ 0.113716] ACPI: SSDT (null) 00085 (v01 HP Cpu1Cst 00003000 INTL 20060317)
    [ 0.150073] ACPI: Interpreter enabled
    [ 0.153341] ACPI: (supports S0 S3 S4 S5)
    [ 0.153361] ACPI: Using IOAPIC for interrupt routing
    [ 0.153384] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
    [ 0.153936] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in ACPI motherboard resources
    [ 0.153938] PCI: Using MMCONFIG for extended config space
    [ 0.155733] ACPI: Power Resource [C2A5] (on)
    [ 0.158672] ACPI: Power Resource [C1CE] (off)
    [ 0.160729] ACPI: Power Resource [C3C1] (off)
    [ 0.160799] ACPI: Power Resource [C3C2] (off)
    [ 0.160867] ACPI: Power Resource [C3C3] (off)
    [ 0.160935] ACPI: Power Resource [C3C4] (off)
    [ 0.161009] ACPI: Power Resource [C3C5] (off)
    [ 0.161845] ACPI: EC: GPE = 0x16, I/O: command/status = 0x66, data = 0x62
    [ 0.162025] ACPI: No dock devices found.
    [ 0.162033] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.165252] ACPI: PCI Root Bridge [C003] (domain 0000 [bus 00-ff])
    [ 0.165256] ACPI: PCI Interrupt Routing Table [\_SB_.C003._PRT]
    [ 0.165488] pci_root PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
    [ 0.165491] pci_root PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
    [ 0.171851] pci_root PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
    [ 0.171895] PCI host bridge to bus 0000:00
    [ 0.171899] pci_bus 0000:00: root bus resource [bus 00-ff]
    [ 0.171902] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7]
    [ 0.171905] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff]
    [ 0.171907] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.171910] pci_bus 0000:00: root bus resource [mem 0x3f800000-0xfedfffff]
    [ 0.171913] pci_bus 0000:00: root bus resource [mem 0xfee01000-0xffffffff]
    [ 0.171915] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000dffff]
    [ 0.171928] pci 0000:00:00.0: [8086:2a10] type 00 class 0x060000
    [ 0.171982] pci 0000:00:02.0: [8086:2a12] type 00 class 0x030000
    [ 0.171998] pci 0000:00:02.0: reg 10: [mem 0xe8400000-0xe84fffff 64bit]
    [ 0.172008] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [ 0.172015] pci 0000:00:02.0: reg 20: [io 0x6000-0x6007]
    [ 0.172059] pci 0000:00:02.1: [8086:2a13] type 00 class 0x038000
    [ 0.172072] pci 0000:00:02.1: reg 10: [mem 0xe8500000-0xe85fffff 64bit]
    [ 0.172169] pci 0000:00:1a.0: [8086:2834] type 00 class 0x0c0300
    [ 0.172229] pci 0000:00:1a.0: reg 20: [io 0x6020-0x603f]
    [ 0.172293] pci 0000:00:1a.7: [8086:283a] type 00 class 0x0c0320
    [ 0.172319] pci 0000:00:1a.7: reg 10: [mem 0xe8600000-0xe86003ff]
    [ 0.172433] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
    [ 0.172470] pci 0000:00:1b.0: [8086:284b] type 00 class 0x040300
    [ 0.172495] pci 0000:00:1b.0: reg 10: [mem 0xe8604000-0xe8607fff 64bit]
    [ 0.172607] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [ 0.172642] pci 0000:00:1c.0: [8086:283f] type 01 class 0x060400
    [ 0.172760] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [ 0.172798] pci 0000:00:1c.1: [8086:2841] type 01 class 0x060400
    [ 0.172915] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
    [ 0.172956] pci 0000:00:1c.4: [8086:2847] type 01 class 0x060400
    [ 0.173074] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [ 0.173111] pci 0000:00:1c.5: [8086:2849] type 01 class 0x060400
    [ 0.173229] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
    [ 0.173264] pci 0000:00:1d.0: [8086:2830] type 00 class 0x0c0300
    [ 0.173324] pci 0000:00:1d.0: reg 20: [io 0x6040-0x605f]
    [ 0.173376] pci 0000:00:1d.1: [8086:2831] type 00 class 0x0c0300
    [ 0.173436] pci 0000:00:1d.1: reg 20: [io 0x6060-0x607f]
    [ 0.173482] pci 0000:00:1d.2: [8086:2832] type 00 class 0x0c0300
    [ 0.173543] pci 0000:00:1d.2: reg 20: [io 0x6080-0x609f]
    [ 0.173605] pci 0000:00:1d.7: [8086:2836] type 00 class 0x0c0320
    [ 0.173630] pci 0000:00:1d.7: reg 10: [mem 0xe8608000-0xe86083ff]
    [ 0.173744] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
    [ 0.173773] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
    [ 0.173877] pci 0000:00:1f.0: [8086:2815] type 00 class 0x060100
    [ 0.173997] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH6 ACPI/GPIO/TCO
    [ 0.174004] pci 0000:00:1f.0: quirk: [io 0x1100-0x113f] claimed by ICH6 GPIO
    [ 0.174009] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0500 (mask 007f)
    [ 0.174017] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 4 PIO at 02e8 (mask 0007)
    [ 0.174077] pci 0000:00:1f.1: [8086:2850] type 00 class 0x01018a
    [ 0.174096] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
    [ 0.174109] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
    [ 0.174122] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
    [ 0.174135] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
    [ 0.174148] pci 0000:00:1f.1: reg 20: [io 0x60a0-0x60af]
    [ 0.174206] pci 0000:00:1f.2: [8086:2829] type 00 class 0x010601
    [ 0.174235] pci 0000:00:1f.2: reg 10: [io 0x13f0-0x13f7]
    [ 0.174249] pci 0000:00:1f.2: reg 14: [io 0x15f4-0x15f7]
    [ 0.174262] pci 0000:00:1f.2: reg 18: [io 0x1370-0x1377]
    [ 0.174275] pci 0000:00:1f.2: reg 1c: [io 0x1574-0x1577]
    [ 0.174288] pci 0000:00:1f.2: reg 20: [io 0x60e0-0x60ff]
    [ 0.174301] pci 0000:00:1f.2: reg 24: [mem 0xe8609000-0xe86097ff]
    [ 0.174372] pci 0000:00:1f.2: PME# supported from D3hot
    [ 0.174462] pci 0000:00:1c.0: PCI bridge to [bus 08]
    [ 0.174643] pci 0000:10:00.0: [14e4:4315] type 00 class 0x028000
    [ 0.174715] pci 0000:10:00.0: reg 10: [mem 0xe8000000-0xe8003fff 64bit]
    [ 0.175106] pci 0000:10:00.0: supports D1 D2
    [ 0.175282] pci 0000:00:1c.1: PCI bridge to [bus 10]
    [ 0.175291] pci 0000:00:1c.1: bridge window [mem 0xe8000000-0xe80fffff]
    [ 0.175362] pci 0000:00:1c.4: PCI bridge to [bus 28]
    [ 0.175368] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
    [ 0.175374] pci 0000:00:1c.4: bridge window [mem 0xe4000000-0xe7ffffff]
    [ 0.175475] pci 0000:30:00.0: [11ab:4357] type 00 class 0x020000
    [ 0.175512] pci 0000:30:00.0: reg 10: [mem 0xe0000000-0xe0003fff 64bit]
    [ 0.175531] pci 0000:30:00.0: reg 18: [io 0x2000-0x20ff]
    [ 0.175690] pci 0000:30:00.0: supports D1 D2
    [ 0.175692] pci 0000:30:00.0: PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.180023] pci 0000:00:1c.5: PCI bridge to [bus 30]
    [ 0.180029] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.180035] pci 0000:00:1c.5: bridge window [mem 0xe0000000-0xe00fffff]
    [ 0.180143] pci 0000:00:1e.0: PCI bridge to [bus 02] (subtractive decode)
    [ 0.180157] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
    [ 0.180160] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
    [ 0.180163] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [ 0.180166] pci 0000:00:1e.0: bridge window [mem 0x3f800000-0xfedfffff] (subtractive decode)
    [ 0.180169] pci 0000:00:1e.0: bridge window [mem 0xfee01000-0xffffffff] (subtractive decode)
    [ 0.180171] pci 0000:00:1e.0: bridge window [mem 0x000d4000-0x000dffff] (subtractive decode)
    [ 0.180207] pci_bus 0000:00: on NUMA node 0
    [ 0.180222] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C0B6._PRT]
    [ 0.180309] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C125._PRT]
    [ 0.180364] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C139._PRT]
    [ 0.180423] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C13C._PRT]
    [ 0.180512] ACPI: PCI Interrupt Routing Table [\_SB_.C003.C13D._PRT]
    [ 0.180573] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.181965] ACPI: PCI Interrupt Link [C135] (IRQs *10 11)
    [ 0.182059] ACPI: PCI Interrupt Link [C136] (IRQs *10 11)
    [ 0.182150] ACPI: PCI Interrupt Link [C137] (IRQs 10 *11)
    [ 0.182233] ACPI: PCI Interrupt Link [C138] (IRQs 10 11) *0, disabled.
    [ 0.182323] ACPI: PCI Interrupt Link [C148] (IRQs *10 11)
    [ 0.182412] ACPI: PCI Interrupt Link [C149] (IRQs *10 11)
    [ 0.182496] ACPI: PCI Interrupt Link [C14A] (IRQs 10 11) *0, disabled.
    [ 0.182536] ACPI Exception: AE_NOT_FOUND, Evaluating _PRS (20121018/pci_link-184)
    [ 0.182612] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.182612] vgaarb: loaded
    [ 0.182612] vgaarb: bridge control possible 0000:00:02.0
    [ 0.182612] PCI: Using ACPI for IRQ routing
    [ 0.184638] PCI: pci_cache_line_size set to 64 bytes
    [ 0.184796] Expanded resource reserved due to conflict with PCI Bus 0000:00
    [ 0.184799] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
    [ 0.184802] e820: reserve RAM buffer [mem 0x3f7b0000-0x3fffffff]
    [ 0.184920] NetLabel: Initializing
    [ 0.184923] NetLabel: domain hash size = 128
    [ 0.184924] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.184940] NetLabel: unlabeled traffic allowed by default
    [ 0.184979] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
    [ 0.184986] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
    [ 0.184991] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
    [ 0.193343] Switching to clocksource hpet
    [ 0.200077] pnp: PnP ACPI init
    [ 0.200102] ACPI: bus type pnp registered
    [ 0.200287] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [ 0.200292] system 00:00: [mem 0x000e0000-0x000fffff] could not be reserved
    [ 0.200295] system 00:00: [mem 0x00100000-0x3f7fffff] could not be reserved
    [ 0.200301] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.200538] pnp 00:01: Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.200553] pnp 00:02: [dma 4]
    [ 0.200582] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.200617] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
    [ 0.200661] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.200757] pnp 00:05: Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.200799] pnp 00:06: Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.200845] pnp 00:07: Plug and Play ACPI device, IDs SYN0159 SYN0100 SYN0002 PNP0f13 (active)
    [ 0.200982] system 00:08: [io 0x0500-0x057f] has been reserved
    [ 0.200986] system 00:08: [io 0x0800-0x080f] has been reserved
    [ 0.200990] system 00:08: [mem 0xffb00000-0xffbfffff] has been reserved
    [ 0.200993] system 00:08: [mem 0xfff00000-0xffffffff] has been reserved
    [ 0.200997] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.201713] system 00:09: [io 0x04d0-0x04d1] has been reserved
    [ 0.201717] system 00:09: [io 0x1000-0x107f] has been reserved
    [ 0.201720] system 00:09: [io 0x1100-0x113f] has been reserved
    [ 0.201723] system 00:09: [io 0x1200-0x121f] has been reserved
    [ 0.201727] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
    [ 0.201730] system 00:09: [mem 0xfec00000-0xfec000ff] could not be reserved
    [ 0.201734] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.201737] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
    [ 0.201740] system 00:09: [mem 0xfed90000-0xfed99fff] has been reserved
    [ 0.201745] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.202730] system 00:0a: [mem 0x000cec00-0x000cffff] has been reserved
    [ 0.202734] system 00:0a: [mem 0x000d1000-0x000d3fff] has been reserved
    [ 0.202738] system 00:0a: [mem 0xfeda0000-0xfedbffff] has been reserved
    [ 0.202741] system 00:0a: [mem 0xfee00000-0xfee00fff] has been reserved
    [ 0.202746] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.202762] pnp: PnP ACPI: found 11 devices
    [ 0.202764] ACPI: ACPI bus type pnp unregistered
    [ 0.240177] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 08] add_size 1000
    [ 0.240183] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 08] add_size 200000
    [ 0.240187] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 08] add_size 200000
    [ 0.240200] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 10] add_size 1000
    [ 0.240204] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 10] add_size 200000
    [ 0.240217] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 28] add_size 200000
    [ 0.240230] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 30] add_size 200000
    [ 0.240247] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] get_res_add_size add_size 200000
    [ 0.240250] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240254] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240257] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240260] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
    [ 0.240263] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.240266] pci 0000:00:1c.1: res[13]=[io 0x1000-0x0fff] get_res_add_size add_size 1000
    [ 0.240272] pci 0000:00:1c.0: BAR 14: assigned [mem 0x40000000-0x401fffff]
    [ 0.240276] pci 0000:00:1c.0: BAR 15: assigned [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.240279] pci 0000:00:1c.1: BAR 15: assigned [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.240283] pci 0000:00:1c.4: BAR 15: assigned [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.240286] pci 0000:00:1c.5: BAR 15: assigned [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.240290] pci 0000:00:1c.0: BAR 13: assigned [io 0x3000-0x3fff]
    [ 0.240294] pci 0000:00:1c.1: BAR 13: assigned [io 0x7000-0x7fff]
    [ 0.240298] pci 0000:00:1c.0: PCI bridge to [bus 08]
    [ 0.240303] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
    [ 0.240310] pci 0000:00:1c.0: bridge window [mem 0x40000000-0x401fffff]
    [ 0.240316] pci 0000:00:1c.0: bridge window [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.240324] pci 0000:00:1c.1: PCI bridge to [bus 10]
    [ 0.240328] pci 0000:00:1c.1: bridge window [io 0x7000-0x7fff]
    [ 0.240336] pci 0000:00:1c.1: bridge window [mem 0xe8000000-0xe80fffff]
    [ 0.240341] pci 0000:00:1c.1: bridge window [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.240350] pci 0000:00:1c.4: PCI bridge to [bus 28]
    [ 0.240354] pci 0000:00:1c.4: bridge window [io 0x4000-0x5fff]
    [ 0.240361] pci 0000:00:1c.4: bridge window [mem 0xe4000000-0xe7ffffff]
    [ 0.240366] pci 0000:00:1c.4: bridge window [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.240375] pci 0000:00:1c.5: PCI bridge to [bus 30]
    [ 0.240379] pci 0000:00:1c.5: bridge window [io 0x2000-0x2fff]
    [ 0.240386] pci 0000:00:1c.5: bridge window [mem 0xe0000000-0xe00fffff]
    [ 0.240392] pci 0000:00:1c.5: bridge window [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.240400] pci 0000:00:1e.0: PCI bridge to [bus 02]
    [ 0.240458] pci 0000:00:1e.0: setting latency timer to 64
    [ 0.240463] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
    [ 0.240466] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
    [ 0.240469] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.240472] pci_bus 0000:00: resource 7 [mem 0x3f800000-0xfedfffff]
    [ 0.240474] pci_bus 0000:00: resource 8 [mem 0xfee01000-0xffffffff]
    [ 0.240477] pci_bus 0000:00: resource 9 [mem 0x000d4000-0x000dffff]
    [ 0.240480] pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
    [ 0.240482] pci_bus 0000:08: resource 1 [mem 0x40000000-0x401fffff]
    [ 0.240485] pci_bus 0000:08: resource 2 [mem 0x40200000-0x403fffff 64bit pref]
    [ 0.240488] pci_bus 0000:10: resource 0 [io 0x7000-0x7fff]
    [ 0.240490] pci_bus 0000:10: resource 1 [mem 0xe8000000-0xe80fffff]
    [ 0.240493] pci_bus 0000:10: resource 2 [mem 0x40400000-0x405fffff 64bit pref]
    [ 0.240496] pci_bus 0000:28: resource 0 [io 0x4000-0x5fff]
    [ 0.240499] pci_bus 0000:28: resource 1 [mem 0xe4000000-0xe7ffffff]
    [ 0.240501] pci_bus 0000:28: resource 2 [mem 0x40600000-0x407fffff 64bit pref]
    [ 0.240504] pci_bus 0000:30: resource 0 [io 0x2000-0x2fff]
    [ 0.240507] pci_bus 0000:30: resource 1 [mem 0xe0000000-0xe00fffff]
    [ 0.240510] pci_bus 0000:30: resource 2 [mem 0x40800000-0x409fffff 64bit pref]
    [ 0.240513] pci_bus 0000:02: resource 4 [io 0x0000-0x0cf7]
    [ 0.240515] pci_bus 0000:02: resource 5 [io 0x0d00-0xffff]
    [ 0.240518] pci_bus 0000:02: resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.240520] pci_bus 0000:02: resource 7 [mem 0x3f800000-0xfedfffff]
    [ 0.240523] pci_bus 0000:02: resource 8 [mem 0xfee01000-0xffffffff]
    [ 0.240525] pci_bus 0000:02: resource 9 [mem 0x000d4000-0x000dffff]
    [ 0.240571] NET: Registered protocol family 2
    [ 0.240755] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.240797] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [ 0.240838] TCP: Hash tables configured (established 8192 bind 8192)
    [ 0.240883] TCP: reno registered
    [ 0.240886] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.240898] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [ 0.240959] NET: Registered protocol family 1
    [ 0.240973] pci 0000:00:02.0: Boot video device
    [ 0.241213] PCI: CLS 64 bytes, default 64
    [ 0.241257] Unpacking initramfs...
    [ 0.315982] Freeing initrd memory: 2932k freed
    [ 0.317982] apm: BIOS not found.
    [ 0.318309] audit: initializing netlink socket (disabled)
    [ 0.318336] type=2000 audit(1365960311.316:1): initialized
    [ 0.330595] bounce pool size: 64 pages
    [ 0.330608] HugeTLB registered 4 MB page size, pre-allocated 0 pages
    [ 0.332558] VFS: Disk quotas dquot_6.5.2
    [ 0.332622] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
    [ 0.332855] msgmni has been set to 1739
    [ 0.333128] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.333159] io scheduler noop registered
    [ 0.333162] io scheduler deadline registered
    [ 0.333170] io scheduler cfq registered (default)
    [ 0.333331] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
    [ 0.333503] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
    [ 0.333644] pcieport 0000:00:1c.4: irq 42 for MSI/MSI-X
    [ 0.333787] pcieport 0000:00:1c.5: irq 43 for MSI/MSI-X
    [ 0.333960] vesafb: mode is 1024x768x32, linelength=4096, pages=0
    [ 0.333961] vesafb: scrolling: redraw
    [ 0.333964] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.334134] vesafb: framebuffer at 0xd0000000, mapped to 0xf8080000, using 3072k, total 3072k
    [ 0.358190] Console: switching to colour frame buffer device 128x48
    [ 0.382119] fb0: VESA VGA frame buffer device
    [ 0.382150] intel_idle: does not run on family 6 model 15
    [ 0.382186] GHES: HEST is not enabled!
    [ 0.382203] isapnp: Scanning for PnP cards...
    [ 0.695554] isapnp: No Plug & Play device found
    [ 0.695613] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.696373] i8042: PNP: PS/2 Controller [PNP0303:C2A2,PNP0f13:C2A3] at 0x60,0x64 irq 1,12
    [ 0.698008] i8042: Detected active multiplexing controller, rev 1.1
    [ 0.698778] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.698816] serio: i8042 AUX0 port at 0x60,0x64 irq 12
    [ 0.698844] serio: i8042 AUX1 port at 0x60,0x64 irq 12
    [ 0.698875] serio: i8042 AUX2 port at 0x60,0x64 irq 12
    [ 0.698903] serio: i8042 AUX3 port at 0x60,0x64 irq 12
    [ 0.699019] mousedev: PS/2 mouse device common for all mice
    [ 0.699102] rtc_cmos 00:04: RTC can wake from S4
    [ 0.699270] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
    [ 0.699304] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [ 0.699332] cpuidle: using governor ladder
    [ 0.699334] cpuidle: using governor menu
    [ 0.699336] EFI Variables Facility v0.08 2004-May-17
    [ 0.699364] drop_monitor: Initializing network drop monitor service
    [ 0.699462] TCP: cubic registered
    [ 0.699595] NET: Registered protocol family 10
    [ 0.699813] NET: Registered protocol family 17
    [ 0.699824] Key type dns_resolver registered
    [ 0.699983] Using IPI No-Shortcut mode
    [ 0.700118] PM: Checking hibernation image partition /dev/sda2
    [ 0.720765] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.732802] PM: Hibernation image not present or could not be loaded.
    [ 0.732814] registered taskstats version 1
    [ 0.733400] Magic number: 9:217:441
    [ 0.733488] rtc_cmos 00:04: setting system clock to 2013-04-14 17:25:12 UTC (1365960312)
    [ 0.733734] Freeing unused kernel memory: 556k freed
    [ 0.733954] Write protecting the kernel text: 4120k
    [ 0.733982] Write protecting the kernel read-only data: 1280k
    [ 0.741543] systemd-udevd[45]: starting version 201
    [ 0.743316] Linux agpgart interface v0.103
    [ 0.745096] [drm] Initialized drm 1.1.0 20060810
    [ 0.746117] agpgart-intel 0000:00:00.0: Intel 965GME/GLE Chipset
    [ 0.746174] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
    [ 0.746731] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
    [ 0.747068] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [ 0.747585] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
    [ 0.747592] ACPI: Sleep Button [C2BE]
    [ 0.747654] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
    [ 0.747709] ACPI: Lid Switch [C15B]
    [ 0.747774] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
    [ 0.747778] ACPI: Power Button [PWRF]
    [ 0.752747] checking generic (d0000000 300000) vs hw (d0000000 10000000)
    [ 0.752752] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 0.752775] Console: switching to colour dummy device 80x25
    [ 0.753012] i915 0000:00:02.0: setting latency timer to 64
    [ 0.753276] i915 0000:00:02.0: irq 44 for MSI/MSI-X
    [ 0.753291] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 0.753292] [drm] Driver supports precise vblank timestamp query.
    [ 0.753355] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [ 0.881041] [drm] initialized overlay support
    [ 1.048674] fbcon: inteldrmfb (fb0) is primary device
    [ 1.320023] tsc: Refined TSC clocksource calibration: 1994.999 MHz
    [ 1.320027] Switching to clocksource tsc
    [ 1.740025] Console: switching to colour frame buffer device 170x48
    [ 1.745248] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
    [ 1.745251] i915 0000:00:02.0: registered panic notifier
    [ 1.746676] ACPI Exception: AE_AML_PACKAGE_LIMIT, Index (0x0000000000000004) is beyond end of object (20121018/exoparg2-418)
    [ 1.746691] ACPI Error: Method parse/execution failed [\_SB_.C003.C09E._DOD] (Node f642d6d8), AE_AML_PACKAGE_LIMIT (20121018/psparse-537)
    [ 1.746700] ACPI Exception: AE_AML_PACKAGE_LIMIT, Evaluating _DOD (20121018/video-1163)
    [ 1.750049] acpi device:00: registered as cooling_device0
    [ 1.750335] ACPI: Video Device [C09E] (multi-head: yes rom: no post: no)
    [ 1.750395] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
    [ 1.750448] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 1.790556] ACPI: bus type usb registered
    [ 1.791412] usbcore: registered new interface driver usbfs
    [ 1.791430] usbcore: registered new interface driver hub
    [ 1.791721] usbcore: registered new device driver usb
    [ 1.792299] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 1.792666] uhci_hcd: USB Universal Host Controller Interface driver
    [ 1.792725] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    [ 1.792730] uhci_hcd 0000:00:1a.0: UHCI Host Controller
    [ 1.792738] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [ 1.792794] uhci_hcd 0000:00:1a.0: irq 16, io base 0x00006020
    [ 1.793124] hub 1-0:1.0: USB hub found
    [ 1.793130] hub 1-0:1.0: 2 ports detected
    [ 1.793310] ehci-pci: EHCI PCI platform driver
    [ 1.793385] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    [ 1.793390] uhci_hcd 0000:00:1d.0: UHCI Host Controller
    [ 1.793397] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [ 1.793442] uhci_hcd 0000:00:1d.0: irq 20, io base 0x00006040
    [ 1.794088] hub 2-0:1.0: USB hub found
    [ 1.794094] hub 2-0:1.0: 2 ports detected
    [ 1.794241] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    [ 1.794246] uhci_hcd 0000:00:1d.1: UHCI Host Controller
    [ 1.794253] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
    [ 1.794297] uhci_hcd 0000:00:1d.1: irq 21, io base 0x00006060
    [ 1.795763] SCSI subsystem initialized
    [ 1.795952] hub 3-0:1.0: USB hub found
    [ 1.795958] hub 3-0:1.0: 2 ports detected
    [ 1.796119] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    [ 1.796124] uhci_hcd 0000:00:1d.2: UHCI Host Controller
    [ 1.796132] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
    [ 1.796174] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00006080
    [ 1.796348] hub 4-0:1.0: USB hub found
    [ 1.796353] hub 4-0:1.0: 2 ports detected
    [ 1.796513] ehci-pci 0000:00:1a.7: setting latency timer to 64
    [ 1.796517] ehci-pci 0000:00:1a.7: EHCI Host Controller
    [ 1.796524] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 5
    [ 1.796540] ehci-pci 0000:00:1a.7: debug port 1
    [ 1.797842] ACPI: bus type scsi registered
    [ 1.800116] libata version 3.00 loaded.
    [ 1.800447] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
    [ 1.800459] ehci-pci 0000:00:1a.7: irq 18, io mem 0xe8600000
    [ 1.810053] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
    [ 1.810391] hub 5-0:1.0: USB hub found
    [ 1.810397] hub 5-0:1.0: 4 ports detected
    [ 1.810890] ahci 0000:00:1f.2: version 3.0
    [ 1.810969] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
    [ 1.811016] ahci: SSS flag set, parallel bus scan disabled
    [ 1.811050] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 3 ports 3 Gbps 0x7 impl SATA mode
    [ 1.811054] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ccc
    [ 1.811061] ahci 0000:00:1f.2: setting latency timer to 64
    [ 1.812147] scsi0 : ahci
    [ 1.812347] scsi1 : ahci
    [ 1.813441] scsi2 : ahci
    [ 1.813516] ata1: SATA max UDMA/133 abar m2048@0xe8609000 port 0xe8609100 irq 45
    [ 1.813521] ata2: SATA max UDMA/133 abar m2048@0xe8609000 port 0xe8609180 irq 45
    [ 1.813524] ata3: SATA max UDMA/133 abar m2048@0xe8609000 port 0xe8609200 irq 45
    [ 1.813579] ata_piix 0000:00:1f.1: version 2.13
    [ 1.813637] ata_piix 0000:00:1f.1: setting latency timer to 64
    [ 1.814023] scsi3 : ata_piix
    [ 1.814701] scsi4 : ata_piix
    [ 1.814769] ata4: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x60a0 irq 14
    [ 1.814772] ata5: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x60a8 irq 15
    [ 1.814817] ehci-pci 0000:00:1d.7: setting latency timer to 64
    [ 1.814823] ehci-pci 0000:00:1d.7: EHCI Host Controller
    [ 1.814832] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 6
    [ 1.814850] ehci-pci 0000:00:1d.7: debug port 1
    [ 1.816913] ata5: port disabled--ignoring
    [ 1.818755] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
    [ 1.818763] ehci-pci 0000:00:1d.7: irq 20, io mem 0xe8608000
    [ 1.826689] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
    [ 1.826868] hub 6-0:1.0: USB hub found
    [ 1.826874] hub 6-0:1.0: 6 ports detected
    [ 2.133364] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 2.136122] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 2.136127] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.136187] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
    [ 2.136192] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 2.137657] ata1.00: ATA-8: WDC WD2500BEKT-60V5T1, 12.01A12, max UDMA/100
    [ 2.137660] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [ 2.140533] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
    [ 2.140537] ata1.00: ACPI cmd b1/c1:00:00:00:00:a0 (DEVICE CONFIGURATION OVERLAY) filtered out
    [ 2.140594] ata1.00: ACPI cmd c6/00:10:00:00:00:a0 (SET MULTIPLE MODE) succeeded
    [ 2.140598] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
    [ 2.142075] ata1.00: configured for UDMA/100
    [ 2.142209] scsi 0:0:0:0: Direct-Access ATA WDC WD2500BEKT-6 12.0 PQ: 0 ANSI: 5
    [ 2.186681] usb 6-5: new high-speed USB device number 3 using ehci-pci
    [ 2.460022] ata2: SATA link down (SStatus 0 SControl 300)
    [ 2.576678] usb 2-2: new low-speed USB device number 2 using uhci_hcd
    [ 2.780023] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 2.799106] ata3.00: ATAPI: hp CDDVDW TS-L633N, 0300, max UDMA/100
    [ 2.817428] ata3.00: configured for UDMA/100
    [ 2.819792] scsi 2:0:0:0: CD-ROM hp CDDVDW TS-L633N 0300 PQ: 0 ANSI: 5
    [ 2.823673] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
    [ 2.823725] sd 0:0:0:0: [sda] Write Protect is off
    [ 2.823729] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [ 2.823751] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 2.829602] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 2.829606] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 2.829816] sr 2:0:0:0: Attached scsi CD-ROM sr0
    [ 2.892260] sda: sda1 sda2 sda3 sda4
    [ 2.892707] sd 0:0:0:0: [sda] Attached SCSI disk
    [ 3.187140] PM: Starting manual resume from disk
    [ 3.187147] PM: Hibernation image partition 8:2 present
    [ 3.187149] PM: Looking for hibernation image.
    [ 3.190166] PM: Image not found (code -22)
    [ 3.190169] PM: Hibernation image not present or could not be loaded.
    [ 3.252550] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 3.836256] systemd[1]: systemd 201 running in system mode. (+PAM -LIBWRAP -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
    [ 3.849582] systemd[1]: Set hostname to <arch>.
    [ 4.191136] systemd[1]: Cannot add dependency job for unit cpupower.service, ignoring: Unit cpupower.service failed to load: No such file or directory. See system logs and 'systemctl status cpupower.service' for details.
    [ 4.191414] systemd[1]: Starting Login Prompts.
    [ 4.191433] systemd[1]: Reached target Login Prompts.
    [ 4.191449] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
    [ 4.191527] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [ 4.191541] systemd[1]: Starting Delayed Shutdown Socket.
    [ 4.191578] systemd[1]: Listening on Delayed Shutdown Socket.
    [ 4.191590] systemd[1]: Starting Device-mapper event daemon FIFOs.
    [ 4.191625] systemd[1]: Listening on Device-mapper event daemon FIFOs.
    [ 4.191637] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
    [ 4.191661] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [ 4.191673] systemd[1]: Starting Encrypted Volumes.
    [ 4.191686] systemd[1]: Reached target Encrypted Volumes.
    [ 4.191702] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
    [ 4.191749] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [ 4.191760] systemd[1]: Starting Paths.
    [ 4.191774] systemd[1]: Reached target Paths.
    [ 4.191807] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
    [ 4.191930] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
    [ 4.192007] systemd[1]: Starting udev Kernel Socket.
    [ 4.192035] systemd[1]: Listening on udev Kernel Socket.
    [ 4.192097] systemd[1]: Starting udev Control Socket.
    [ 4.192128] systemd[1]: Listening on udev Control Socket.
    [ 4.192143] systemd[1]: Starting Journal Socket.
    [ 4.192199] systemd[1]: Listening on Journal Socket.
    [ 4.199876] systemd[1]: Starting Set Up Additional Binary Formats...
    [ 4.203660] systemd[1]: Starting udev Coldplug all Devices...
    [ 4.257542] systemd[1]: Started Load Kernel Modules.
    [ 4.257608] systemd[1]: Starting udev Kernel Device Manager...
    [ 4.263615] systemd[1]: Mounting Configuration File System...
    [ 4.270954] systemd[1]: Mounting Huge Pages File System...
    [ 4.279309] systemd[1]: Starting Setup Virtual Console...
    [ 4.289528] systemd[1]: Starting Apply Kernel Variables...
    [ 4.293593] systemd[1]: Mounting Debug File System...
    [ 4.300920] systemd[1]: Mounting POSIX Message Queue File System...
    [ 4.310244] systemd[1]: Starting Journal Service...
    [ 4.318738] systemd[1]: Started Journal Service.
    [ 4.318802] systemd[1]: Mounted FUSE Control File System.
    [ 4.318827] systemd[1]: Expecting device dev-sda2.device...
    [ 4.318857] systemd[1]: Starting File System Check on Root Device...
    [ 4.344444] systemd[1]: Expecting device dev-sda4.device...
    [ 4.711991] systemd-udevd[101]: starting version 201
    [ 5.286858] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 5.571573] ACPI: Requesting acpi_cpufreq
    [ 5.605351] ACPI: Fan [C3C6] (off)
    [ 5.605428] ACPI: Fan [C3C7] (off)
    [ 5.605498] ACPI: Fan [C3C8] (off)
    [ 5.605569] ACPI: Fan [C3C9] (off)
    [ 5.605638] ACPI: Fan [C3CA] (off)
    [ 5.614901] ACPI: AC Adapter [C244] (on-line)
    [ 5.636608] thermal LNXTHERM:00: registered as thermal_zone0
    [ 5.636612] ACPI: Thermal Zone [TZ3] (41 C)
    [ 5.664141] ACPI: Battery Slot [C245] (battery present)
    [ 5.673128] thermal LNXTHERM:01: registered as thermal_zone1
    [ 5.673132] ACPI: Thermal Zone [TZ4] (27 C)
    [ 5.678874] thermal LNXTHERM:02: registered as thermal_zone2
    [ 5.678878] ACPI: Thermal Zone [TZ5] (20 C)
    [ 5.679888] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
    [ 5.692884] thermal LNXTHERM:03: registered as thermal_zone3
    [ 5.692888] ACPI: Thermal Zone [TZ0] (48 C)
    [ 5.697365] thermal LNXTHERM:04: registered as thermal_zone4
    [ 5.697369] ACPI: Thermal Zone [TZ1] (45 C)
    [ 5.702641] wmi: Mapper loaded
    [ 5.765684] sky2: driver version 1.30
    [ 5.765753] sky2 0000:30:00.0: Yukon-2 FE+ chip revision 0
    [ 5.765870] sky2 0000:30:00.0: irq 47 for MSI/MSI-X
    [ 5.766172] sky2 0000:30:00.0 eth0: addr d8:d3:85:02:ae:8a
    [ 5.823030] cfg80211: Calling CRDA to update world regulatory domain
    [ 5.842289] Monitor-Mwait will be used to enter C-1 state
    [ 5.842342] Monitor-Mwait will be used to enter C-2 state
    [ 5.842349] Monitor-Mwait will be used to enter C-3 state
    [ 5.842354] tsc: Marking TSC unstable due to TSC halts in idle
    [ 5.842373] ACPI: acpi_idle registered with cpuidle
    [ 5.842387] Switching to clocksource hpet
    [ 5.856977] lib80211: common routines for IEEE802.11 drivers
    [ 5.856981] lib80211_crypt: registered algorithm 'NULL'
    [ 6.090739] microcode: CPU0 sig=0x6fd, pf=0x80, revision=0xa3
    [ 6.105525] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input5
    [ 6.133580] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
    [ 6.133684] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
    [ 6.135374] ACPI Warning: 0x00001028-0x0000102f SystemIO conflicts with Region \_SB_.C003.C004.C0D8 1 (20121018/utaddress-251)
    [ 6.135383] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.135388] ACPI Warning: 0x00001130-0x0000113f SystemIO conflicts with Region \_SB_.C003.C004.C0EA 1 (20121018/utaddress-251)
    [ 6.135392] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.135394] ACPI Warning: 0x00001100-0x0000112f SystemIO conflicts with Region \_SB_.C003.C004.C0EA 1 (20121018/utaddress-251)
    [ 6.135399] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 6.135401] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 6.158779] systemd-udevd[139]: renamed network interface eth0 to lan
    [ 6.229949] iTCO_vendor_support: vendor-support=0
    [ 6.251748] input: HP WMI hotkeys as /devices/virtual/input/input8
    [ 6.267907] microcode: CPU1 sig=0x6fd, pf=0x80, revision=0xa3
    [ 6.268519] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 6.336370] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 6.336404] iTCO_wdt: Found a ICH8M TCO device (Version=2, TCOBASE=0x1060)
    [ 6.337222] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 6.355895] wl: module license 'Mixed/Proprietary' taints kernel.
    [ 6.355901] Disabling lock debugging due to kernel taint
    [ 6.371194] INFO @wl_cfg80211_attach : Registered CFG80211 phy
    [ 6.465140] usbcore: registered new interface driver usbhid
    [ 6.465144] usbhid: USB HID core driver
    [ 6.466336] lib80211_crypt: registered algorithm 'TKIP'
    [ 6.466625] eth0: Broadcom BCM4315 802.11 Hybrid Wireless Controller 5.100.82.112
    [ 6.475157] input: SIGMACHIP Usb Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-2/2-2:1.0/input/input9
    [ 6.476275] hid-generic 0003:1C4F:0003.0001: input,hidraw0: USB HID v1.10 Mouse [SIGMACHIP Usb Mouse] on usb-0000:00:1d.0-2/input0
    [ 6.490253] systemd-udevd[140]: renamed network interface eth0 to wlan
    [ 6.563265] media: Linux media interface: v0.10
    [ 6.571119] Linux video capture interface: v2.00
    [ 6.592516] uvcvideo: Found UVC 1.00 device CNF8243 (04f2:b159)
    [ 6.650253] input: CNF8243 as /devices/pci0000:00/0000:00:1d.7/usb6/6-5/6-5:1.0/input/input10
    [ 6.650363] usbcore: registered new interface driver uvcvideo
    [ 6.650366] USB Video Class driver (1.1.1)
    [ 6.947552] psmouse serio4: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000, board id: 3655, fw id: 582762
    [ 6.988984] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio4/input/input11
    [ 7.014010] Adding 1023996k swap on /dev/sda2. Priority:-1 extents:1 across:1023996k
    [ 7.414465] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
    [ 17.413000] EXT4-fs (sda3): re-mounted. Opts: commit=0
    [ 17.418247] EXT4-fs (sda4): re-mounted. Opts: commit=0
    [ 17.434571] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=0
    [ 17.439164] EXT4-fs (sda4): re-mounted. Opts: data=ordered,commit=0
    [ 22.143740] fuse init (API version 7.20)
    [ 24.877691] sky2 0000:30:00.0 lan: enabling interface
    [ 24.877796] IPv6: ADDRCONF(NETDEV_UP): lan: link is not ready
    [ 148.737343] cpufreq-nforce2: No nForce2 chipset.
    [ 407.922665] cfg80211: Calling CRDA to update world regulatory domain
    [ 408.230275] sky2 0000:30:00.0 lan: disabling interface
    [ 409.060592] systemd-journald[108]: Received SIGTERM
    [ 409.073407] systemd[1]: Unmounted FUSE Control File System.
    [ 409.073755] systemd[1]: Unmounted Configuration File System.
    [ 409.074064] systemd[1]: Unmounted Huge Pages File System.
    [ 409.076866] systemd[1]: Unmounted Debug File System.
    [ 409.080249] systemd[1]: Unmounted POSIX Message Queue File System.
    [ 409.083569] systemd[1]: Unmounted /media/budiman/Images/Dropbox-Uploads.
    [ 409.083785] systemd[1]: media-budiman-Images-Dropbox\x2dImages.mount mount process exited, code=exited status=32
    [ 409.083841] systemd[1]: Failed unmounting /media/budiman/Images/Dropbox-Images.
    [ 409.084742] systemd[1]: Unmounted /home/budiman/Pictures/Dropbox-Images.
    [ 409.084967] systemd[1]: home-budiman-Pictures-Dropbox\x2dUploads.mount mount process exited, code=exited status=32
    [ 409.085027] systemd[1]: Failed unmounting /home/budiman/Pictures/Dropbox-Uploads.
    [ 409.096913] systemd[1]: Unmounted /home/budiman/Dropbox.
    [ 409.097825] systemd[1]: Unmounted /home/budiman/Videos.
    [ 409.103734] systemd[1]: Unmounted /home/budiman/Music.
    [ 409.116944] systemd[1]: Unmounted /home/budiman/Downloads.
    [ 409.120111] systemd[1]: Unmounted /home/budiman/Documents.
    [ 409.120526] systemd[1]: Unmounted /tmp.
    [ 409.120550] systemd[1]: Unmounting /home/budiman/Pictures...
    [ 409.136765] systemd[1]: Unit media-budiman-Images-Dropbox\x2dImages.mount entered failed state
    [ 409.137341] systemd[1]: Unit home-budiman-Pictures-Dropbox\x2dUploads.mount entered failed state
    [ 409.150110] systemd[1]: Unmounted /home/budiman/Pictures.
    [ 409.150136] systemd[1]: Unmounting /media/budiman...
    [ 409.241379] systemd[1]: Stopped Journal Service.
    [ 409.246738] systemd[1]: Unmounted /media/budiman.
    [ 409.246774] systemd[1]: Starting Unmount All Filesystems.
    [ 409.246796] systemd[1]: Reached target Unmount All Filesystems.
    [ 409.246812] systemd[1]: Stopping Local File Systems (Pre).
    [ 409.246828] systemd[1]: Stopped target Local File Systems (Pre).
    [ 409.246840] systemd[1]: Stopping Remount Root and Kernel File Systems...
    [ 409.246938] systemd[1]: Stopped Remount Root and Kernel File Systems.
    [ 409.246969] systemd[1]: Stopping Journal Socket.
    [ 409.247013] systemd[1]: Closed Journal Socket.
    [ 409.247029] systemd[1]: Starting Store Sound Card State...
    [ 409.250674] systemd[1]: Unmounting /...
    [ 409.276838] systemd[1]: Started Store Sound Card State.
    [ 409.276933] systemd[1]: Starting Shutdown.
    [ 409.276952] systemd[1]: Reached target Shutdown.
    [ 409.276977] systemd[1]: Starting Final Step.
    [ 409.276992] systemd[1]: Reached target Final Step.
    [ 409.277012] systemd[1]: Starting Power-Off...
    [ 409.321924] systemd[1]: Shutting down.
    [ 409.488755] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 409.517972] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 409.518032] EXT4-fs (sda3): re-mounted. Opts: (null)
    [ 409.700368] EXT4-fs (sda3): re-mounted. Opts: (null)
    The problem is the log doesn't even print the error report as you can see it. The delay is not shown in the console either, it was just like:
    [ 10.0000] Power Down....
    and my laptop was halting there for like 30-40 seconds before completely shutdown.
    Systemctl output:
    UNIT LOAD ACTIVE SUB DESCRIPTION
    proc-sys...t_misc.automount loaded active running Arbitrary Executable File Fo
    sys-devi...und-card0.device loaded active plugged 82801H (ICH8 Family) HD Audi
    sys-devi...-net-wlan.device loaded active plugged BCM4312 802.11b/g LP-PHY
    sys-devi...0-net-lan.device loaded active plugged 88E8042 PCI-E Fast Ethernet
    sys-devi...-sda-sda1.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...-sda-sda2.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...-sda-sda3.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...-sda-sda4.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...block-sda.device loaded active plugged WDC_WD2500BEKT-60V5T1
    sys-devi...block-sr0.device loaded active plugged hp_CDDVDW_TS-L633N
    sys-devi...tty-ttyS0.device loaded active plugged /sys/devices/platform/serial
    sys-devi...tty-ttyS1.device loaded active plugged /sys/devices/platform/serial
    sys-devi...tty-ttyS2.device loaded active plugged /sys/devices/platform/serial
    sys-devi...tty-ttyS3.device loaded active plugged /sys/devices/platform/serial
    sys-module-configfs.device loaded active plugged /sys/module/configfs
    sys-module-fuse.device loaded active plugged /sys/module/fuse
    sys-subs...vices-lan.device loaded active plugged 88E8042 PCI-E Fast Ethernet
    sys-subs...ices-wlan.device loaded active plugged BCM4312 802.11b/g LP-PHY
    -.mount loaded active mounted /
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File Sys
    home-bud...-Documents.mount loaded active mounted /home/budiman/Documents
    home-bud...-Downloads.mount loaded active mounted /home/budiman/Downloads
    home-budiman-Dropbox.mount loaded active mounted /home/budiman/Dropbox
    home-budiman-Music.mount loaded active mounted /home/budiman/Music
    home-bud...\x2dImages.mount loaded active mounted /home/budiman/Pictures/Dropb
    home-bud...x2dUploads.mount loaded active mounted /home/budiman/Pictures/Dropb
    home-budiman-Pictures.mount loaded active mounted /home/budiman/Pictures
    home-budiman-Videos.mount loaded active mounted /home/budiman/Videos
    media-bu...\x2dImages.mount loaded active mounted /media/budiman/Images/Dropbo
    media-bu...x2dUploads.mount loaded active mounted /media/budiman/Images/Dropbo
    media-budiman.mount loaded active mounted /media/budiman
    proc-sys...infmt_misc.mount loaded active mounted Arbitrary Executable File Fo
    run-user-1000-gvfs.mount loaded active mounted /run/user/1000/gvfs
    sys-kernel-config.mount loaded active mounted Configuration File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted /tmp
    systemd-...ord-console.path loaded active waiting Dispatch Password Requests t
    systemd-...ssword-wall.path loaded active waiting Forward Password Requests to
    cpupower.service loaded active exited Apply cpupower configuration
    dbus.service loaded active running D-Bus System Message Bus
    display-manager.service loaded active running Light Display Manager
    NetworkManager.service loaded active running Network Manager
    polkit.service loaded active running Authorization Manager
    preload.service loaded active running Adaptive readahead daemon
    rtkit-daemon.service loaded active running RealtimeKit Scheduling Polic
    systemd-binfmt.service loaded active exited Set Up Additional Binary For
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-...es-setup.service loaded active exited Recreate Volatile Files and
    systemd-...-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-...sessions.service loaded active exited Permit User Sessions
    systemd-...le-setup.service loaded active exited Setup Virtual Console
    udisks2.service loaded active running Disk Manager
    upower.service loaded active running Daemon for power management
    wpa_supplicant.service loaded active running WPA supplicant
    dbus.socket loaded active running D-Bus System Message Bus Soc
    dmeventd.socket loaded active listening Device-mapper event daemon F
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility N
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-...d-control.socket loaded active listening udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    dev-sda2.swap loaded active active /dev/sda2
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User System
    network.target loaded active active Network
    paths.target loaded active active Paths
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    timers.target loaded active active Timers
    systemd-...iles-clean.timer loaded active waiting Daily Cleanup of Temporary D
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    82 loaded units listed. Pass --all to see loaded but inactive units, too.
    To show all installed unit files use 'systemctl list-unit-files'.
    lines 68-90/90 (END)
    dev-sda2.swap loaded active active /dev/sda2
    basic.target loaded active active Basic System
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User System
    network.target loaded active active Network
    paths.target loaded active active Paths
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    timers.target loaded active active Timers
    systemd-...iles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
    This is my lsmod output:
    Module Size Used by
    cpufreq_userspace 2792 2
    fuse 59758 2
    cpufreq_powersave 962 0
    joydev 7403 0
    hid_generic 741 0
    uvcvideo 63656 0
    videobuf2_vmalloc 2636 1 uvcvideo
    videobuf2_memops 1715 1 videobuf2_vmalloc
    videobuf2_core 23893 1 uvcvideo
    lib80211_crypt_tkip 8078 0
    videodev 81179 2 uvcvideo,videobuf2_core
    media 8545 2 uvcvideo,videodev
    usbhid 35987 0
    hid 69458 2 hid_generic,usbhid
    wl 2426627 0
    sky2 43537 0
    lib80211 3037 2 wl,lib80211_crypt_tkip
    hp_wmi 6702 0
    coretemp 4990 0
    cfg80211 368786 1 wl
    snd_hda_codec_idt 47572 1
    sparse_keymap 2582 1 hp_wmi
    iTCO_wdt 4471 0
    iTCO_vendor_support 1545 1 iTCO_wdt
    psmouse 77896 0
    serio_raw 4001 0
    microcode 10864 0
    snd_hda_intel 28850 4
    snd_hda_codec 87310 2 snd_hda_codec_idt,snd_hda_intel
    rfkill 12625 3 cfg80211,hp_wmi
    lpc_ich 10077 0
    snd_hwdep 4746 1 snd_hda_codec
    snd_pcm 62883 2 snd_hda_codec,snd_hda_intel
    snd_page_alloc 6038 2 snd_pcm,snd_hda_intel
    snd_timer 14846 1 snd_pcm
    snd 44486 14 snd_hwdep,snd_timer,snd_hda_codec_idt,snd_pcm,snd_hda_codec,snd_hda_intel
    soundcore 4386 1 snd
    thermal 7045 0
    ac 1892 0
    fan 2133 0
    acpi_cpufreq 9166 1
    mperf 991 1 acpi_cpufreq
    battery 5658 0
    container 1993 0
    wmi 7163 1 hp_wmi
    evdev 7560 9
    processor 24359 3 acpi_cpufreq
    ext4 430663 2
    crc16 1091 1 ext4
    jbd2 65750 1 ext4
    mbcache 4322 1 ext4
    sr_mod 12924 0
    sd_mod 28242 4
    cdrom 30060 1 sr_mod
    ata_generic 2434 0
    pata_acpi 2367 0
    ata_piix 20760 0
    ahci 19268 3
    libahci 17379 1 ahci
    libata 146969 5 ahci,pata_acpi,libahci,ata_generic,ata_piix
    scsi_mod 110134 3 libata,sd_mod,sr_mod
    uhci_hcd 21448 0
    ehci_pci 3404 0
    ehci_hcd 42551 1 ehci_pci
    usbcore 148267 5 uhci_hcd,uvcvideo,ehci_hcd,ehci_pci,usbhid
    usb_common 622 1 usbcore
    i915 489921 3
    video 9834 1 i915
    button 3717 1 i915
    i2c_algo_bit 4583 1 i915
    intel_agp 8720 1 i915
    intel_gtt 10212 3 i915,intel_agp
    drm_kms_helper 31122 1 i915
    drm 181032 4 i915,drm_kms_helper
    agpgart 22207 3 drm,intel_agp,intel_gtt
    i2c_core 18994 5 drm,i915,drm_kms_helper,i2c_algo_bit,videodev
    My current hypotheses is the acpi_cpufreq that make this problem happens because when I booted into the lts kernel that module is not even loaded. But I can't even blacklist it because even if I make a modprobe.conf to disable it from loading it still be loaded automatically by the kernel. Any help here will be greatly appreciated, I'm not a "just post any problem before trying myself" person. I've tried every method by reading wikis and forums without any success, this is even my first post here . But this problem has been troubling me for a very long time. So please help me guys
    Tell me what information do I miss and I'll post it immediately.

    Did a fresh install and still having the same problem. Giving up now. Mod can now close this thread

  • Firefox works at mcdonalds with windows but not with linux

    I have Windows 7 Pro and Ubuntu 14.04 LTS on my laptop. I use firefox browser on both OS's. I am able to connect to internet when I use Windows OS and run firefox at McDonalds. But, when I try to use firefox and Ubuntu OS it will not connect while at McDonalds. Otherwise, the Ubuntu distro and firefox work fine everywhere else.

    ''bsluss [[#question-1051190|said]]''
    <blockquote>
    I have Windows 7 Pro and Ubuntu 14.04 LTS on my laptop. I use firefox browser on both OS's. I am able to connect to internet when I use Windows OS and run firefox at McDonalds. But, when I try to use firefox and Ubuntu OS it will not connect while at McDonalds. Otherwise, the Ubuntu distro and firefox work fine everywhere else.
    </blockquote>
    Thanks for the response. To narrow this down a bit more, the wireless makes the connection to their router, but, mozilla does not bring up the splash page that is needed to accept their connection. Again, it only happens when running firefox with Ubuntu; not when running firefox with Windows.

  • Create table runs in Toad but not in Linux

    Hello,
    I've just started writing in SQL 3 days ago so I would like to apologize in advance for the shabby code and the stupid question. I'm hoping that somebody can help me with my problem.
    Anyway, this has been bugging me for 2 days now and I can't seem to find the problem. The code below is just a simple create table that I coded in Toad for Oracle by Quest Software and runs fine in it but when I try to copy it over to our linux server and run it using '@/home/user/atm_dc.sql', the table is not created.
    Can someone help me?
    Thanks.
    drop table atm_dc;
    CREATE TABLE atm_dc
    AS (
    SELECT
    'I' as action_code,
    rpad(' ',22,' ') as card_num,
    rpad(' ',24,' ') as client_cd,
    '000119' as inst_cd,
    rpad(sa01mast.brncd,6,' ') as branch_cd,
    ' ' as vip_flag,
    ' ' as owner_cd,
    '0' as basic_card_flag,
    rpad(' ',22,' ') as basic_card_num,
    rpad(' ',4,' ') as title,
    case when length(cf01cif.sname) > 0 then
    rpad(cf01cif.sname,20,' ') else
    rpad(' ',20,' ') end as family_name,
    rpad(' ',20,' ') as first_name,
    rpad(' ',26,' ') as embossed_name,
    rpad(' ',26,' ') as encoded_name,
    case when length(cf01cif.maritsts) > 0 then
    case when cf01cif.maritsts in ('M') then '2' else '1' end else
    ' ' end as marital_status,
    case when length(cf01cif.sex) > 0 then
    case when cf01cif.sex in ('F') then 'F' else 'M' end else
    ' ' end as gender,
    rpad(' ',15,' ') as legal_id,
    '608' as nationality_code,
    '00' as num_of_children,
    rpad('0',12,'0') as credit_limit,
    '0' as issuers_client,
    ' ' as lodging_period,
    ' ' as res_status,
    rpad('0',12,'0') as net_yearly_income,
    '00' as no_of_dependents,
    case when length(cf01cif.birthdt) > 0 then
    to_char(cf01cif.birthdt,'YYYYMMDD') else rpad(' ',8,' ')
    end as birth_date,
    rpad(' ',5,' ') as birth_city,
    case when length(cf01cif.cntry) > 0 then
    rpad(cf01cif.cntry,3,' ') else rpad(' ',3,' ')
    end as birth_cntry,
    case when length(cf01addr.addr1) > 0 then
    rpad(substr(cf01addr.addr1,1,30),30,' ') else rpad(' ',30,' ')
    end as address1,
    case when length(cf01addr.addr2) > 0 then
    rpad(substr(cf01addr.addr2,1,30),30,' ') else rpad(' ',30,' ')
    end as address2,
    case when length(cf01addr.addr3) > 0 then
    rpad(substr(cf01addr.addr3,1,30),30,' ') else rpad(' ',30,' ')
    end as address3,
    case when length(cf01addr.addr4) > 0 then
    rpad(substr(cf01addr.addr4,1,30),30,' ') else rpad(' ',30,' ')
    end as address4,
    case when length(cf01addr.city) > 0 then
    rpad(substr(cf01addr.city,1,5),5,' ') else rpad(' ',5,' ')
    end as city_code,
    case when length(cf01addr.postcd) > 0 then
    rpad(cf01addr.postcd,10,' ') else rpad(' ',10,' ')
    end as zip_code,
    case when length(cf01addr.cntry) > 0 then
    rpad(cf01addr.cntry,3,' ') else
    rpad(' ',3,' ') end as country_code,
    rpad(' ',15,' ') as phone_no1,
    rpad(' ',15,' ') as phone_no2,
    rpad(' ',15,' ') as mobile_phone,
    rpad(' ',50,' ') as email_id,
    rpad(' ',40,' ') as employer,
    rpad(' ',30,' ') as emp_addr1,
    rpad(' ',30,' ') as emp_addr2,
    rpad(' ',30,' ') as emp_addr3,
    rpad(' ',30,' ') as emp_addr4,
    rpad(' ',5,' ') as emp_city_cd,
    rpad(' ',10,' ') as emp_zip_cd,
    rpad(' ',3,' ') as emp_cntry_cd,
    rpad(' ',8,' ') as cont_start_dt,
    ' ' as emp_status,
    to_char(sa01mast2.opendt,'YYYYMMDD') as open_dt,
    rpad(' ',8,' ') as start_val_dt,
    '001' as prod_code,
    '0' as delivery_mode,
    rpad(sa01mast.brncd||sa01mast.modcd||lpad(sa01mast.acno,6,'0')||
    lpad(sa01mast.chkdgt,2,'0'),24,' ') as account1,
    'PHP' as acct1_currency,
    case when sa01mast.crline in ('SA') then '10' else '20'
    end as account1_type,
    rpad(' ',12,' ') as limit_cash_dom,
    rpad(' ',12,' ') as limit_purch_dom,
    rpad(' ',12,' ') as limit_te_dom,
    rpad(' ',12,' ') as reserved1,
    rpad(' ',12,' ') as limit_cash_int,
    rpad(' ',12,' ') as limit_purch_int,
    rpad(' ',12,' ') as limit_te_int,
    rpad(' ',12,' ') as reserved2,
    rpad(' ',12,' ') as autho_limit_dom,
    rpad(' ',12,' ') as autho_limit_int,
    rpad(' ',12,' ') as reserved3,
    rpad(' ',4,' ') as activity_cd,
    rpad(' ',4,' ') as socio_prof_code,
    '00' status_code,
    rpad(' ',10,' ') as staff_id,
    '0' as delivery_flag,
    rpad(' ',8,' ') as delivery_date,
    rpad(' ',14,' ') as bank_dsa_ref,
    rpad(' ',50,' ') as ud_field1,
    rpad(' ',50,' ') as ud_field2,
    rpad(' ',50,' ') as ud_field3,
    rpad(' ',50,' ') as ud_field4,
    rpad(' ',50,' ') as ud_field5,
    rpad(' ',26,' ') as emboss_line3,
    rpad(' ',45,' ') as mailing_addr1,
    rpad(' ',45,' ') as mailing_addr2,
    rpad(' ',45,' ') as mailing_addr3,
    rpad(' ',45,' ') as mailing_addr4,
    rpad(' ',10,' ') as mailing_zip_code,
    rpad(' ',5,' ') as mailing_city_code,
    rpad(' ',3,' ') as mailing_country_code,
    rpad(' ',15,' ') as phone_home,
    rpad(' ',15,' ') as phone_alt,
    rpad(' ',15,' ') as phone_mobile,
    '0' as photo_indicator,
    ' ' as language_indicator,
    rpad(' ',25,' ') as maiden_name,
    rpad('0',8,'0') as check_sum
    FROM cf01cif, sa01mast, cf01addr, sa01mast2
    WHERE cf01cif.cifkey=sa01mast.cifkey and
         cf01cif.cifkey=cf01addr.cifkey and
    sa01mast2.brncd = sa01mast.brncd and
    sa01mast2.modcd = sa01mast.modcd and
    sa01mast2.acno = sa01mast.acno and
    sa01mast2.chkdgt = sa01mast.chkdgt and
              sa01mast2.opendt < sysdate
    );

    You can use the SPOOL command to create a output file. Run the below script. This will create a file "output.log". Check in the file for any error messages
    set echo on
    spool output.log
    drop table atm_dc
    CREATE TABLE atm_dc
    AS (
    SELECT
    'I' as action_code,
    rpad(' ',22,' ') as card_num,
    rpad(' ',24,' ') as client_cd,
    '000119' as inst_cd,
    rpad(sa01mast.brncd,6,' ') as branch_cd,
    ' ' as vip_flag,
    ' ' as owner_cd,
    '0' as basic_card_flag,
    rpad(' ',22,' ') as basic_card_num,
    rpad(' ',4,' ') as title,
    case when length(cf01cif.sname) > 0 then
    rpad(cf01cif.sname,20,' ') else
    rpad(' ',20,' ') end as family_name,
    rpad(' ',20,' ') as first_name,
    rpad(' ',26,' ') as embossed_name,
    rpad(' ',26,' ') as encoded_name,
    case when length(cf01cif.maritsts) > 0 then
    case when cf01cif.maritsts in ('M') then '2' else '1' end else
    ' ' end as marital_status,
    case when length(cf01cif.sex) > 0 then
    case when cf01cif.sex in ('F') then 'F' else 'M' end else
    ' ' end as gender,
    rpad(' ',15,' ') as legal_id,
    '608' as nationality_code,
    '00' as num_of_children,
    rpad('0',12,'0') as credit_limit,
    '0' as issuers_client,
    ' ' as lodging_period,
    ' ' as res_status,
    rpad('0',12,'0') as net_yearly_income,
    '00' as no_of_dependents,
    case when length(cf01cif.birthdt) > 0 then
    to_char(cf01cif.birthdt,'YYYYMMDD') else rpad(' ',8,' ')
    end as birth_date,
    rpad(' ',5,' ') as birth_city,
    case when length(cf01cif.cntry) > 0 then
    rpad(cf01cif.cntry,3,' ') else rpad(' ',3,' ')
    end as birth_cntry,
    case when length(cf01addr.addr1) > 0 then
    rpad(substr(cf01addr.addr1,1,30),30,' ') else rpad(' ',30,' ')
    end as address1,
    case when length(cf01addr.addr2) > 0 then
    rpad(substr(cf01addr.addr2,1,30),30,' ') else rpad(' ',30,' ')
    end as address2,
    case when length(cf01addr.addr3) > 0 then
    rpad(substr(cf01addr.addr3,1,30),30,' ') else rpad(' ',30,' ')
    end as address3,
    case when length(cf01addr.addr4) > 0 then
    rpad(substr(cf01addr.addr4,1,30),30,' ') else rpad(' ',30,' ')
    end as address4,
    case when length(cf01addr.city) > 0 then
    rpad(substr(cf01addr.city,1,5),5,' ') else rpad(' ',5,' ')
    end as city_code,
    case when length(cf01addr.postcd) > 0 then
    rpad(cf01addr.postcd,10,' ') else rpad(' ',10,' ')
    end as zip_code,
    case when length(cf01addr.cntry) > 0 then
    rpad(cf01addr.cntry,3,' ') else
    rpad(' ',3,' ') end as country_code,
    rpad(' ',15,' ') as phone_no1,
    rpad(' ',15,' ') as phone_no2,
    rpad(' ',15,' ') as mobile_phone,
    rpad(' ',50,' ') as email_id,
    rpad(' ',40,' ') as employer,
    rpad(' ',30,' ') as emp_addr1,
    rpad(' ',30,' ') as emp_addr2,
    rpad(' ',30,' ') as emp_addr3,
    rpad(' ',30,' ') as emp_addr4,
    rpad(' ',5,' ') as emp_city_cd,
    rpad(' ',10,' ') as emp_zip_cd,
    rpad(' ',3,' ') as emp_cntry_cd,
    rpad(' ',8,' ') as cont_start_dt,
    ' ' as emp_status,
    to_char(sa01mast2.opendt,'YYYYMMDD') as open_dt,
    rpad(' ',8,' ') as start_val_dt,
    '001' as prod_code,
    '0' as delivery_mode,
    rpad(sa01mast.brncd||sa01mast.modcd||lpad(sa01mast.acno,6,'0')||
    lpad(sa01mast.chkdgt,2,'0'),24,' ') as account1,
    'PHP' as acct1_currency,
    case when sa01mast.crline in ('SA') then '10' else '20'
    end as account1_type,
    rpad(' ',12,' ') as limit_cash_dom,
    rpad(' ',12,' ') as limit_purch_dom,
    rpad(' ',12,' ') as limit_te_dom,
    rpad(' ',12,' ') as reserved1,
    rpad(' ',12,' ') as limit_cash_int,
    rpad(' ',12,' ') as limit_purch_int,
    rpad(' ',12,' ') as limit_te_int,
    rpad(' ',12,' ') as reserved2,
    rpad(' ',12,' ') as autho_limit_dom,
    rpad(' ',12,' ') as autho_limit_int,
    rpad(' ',12,' ') as reserved3,
    rpad(' ',4,' ') as activity_cd,
    rpad(' ',4,' ') as socio_prof_code,
    '00' status_code,
    rpad(' ',10,' ') as staff_id,
    '0' as delivery_flag,
    rpad(' ',8,' ') as delivery_date,
    rpad(' ',14,' ') as bank_dsa_ref,
    rpad(' ',50,' ') as ud_field1,
    rpad(' ',50,' ') as ud_field2,
    rpad(' ',50,' ') as ud_field3,
    rpad(' ',50,' ') as ud_field4,
    rpad(' ',50,' ') as ud_field5,
    rpad(' ',26,' ') as emboss_line3,
    rpad(' ',45,' ') as mailing_addr1,
    rpad(' ',45,' ') as mailing_addr2,
    rpad(' ',45,' ') as mailing_addr3,
    rpad(' ',45,' ') as mailing_addr4,
    rpad(' ',10,' ') as mailing_zip_code,
    rpad(' ',5,' ') as mailing_city_code,
    rpad(' ',3,' ') as mailing_country_code,
    rpad(' ',15,' ') as phone_home,
    rpad(' ',15,' ') as phone_alt,
    rpad(' ',15,' ') as phone_mobile,
    '0' as photo_indicator,
    ' ' as language_indicator,
    rpad(' ',25,' ') as maiden_name,
    rpad('0',8,'0') as check_sum
    FROM cf01cif, sa01mast, cf01addr, sa01mast2
    WHERE cf01cif.cifkey=sa01mast.cifkey and
    cf01cif.cifkey=cf01addr.cifkey and
    sa01mast2.brncd = sa01mast.brncd and
    sa01mast2.modcd = sa01mast.modcd and
    sa01mast2.acno = sa01mast.acno and
    sa01mast2.chkdgt = sa01mast.chkdgt and
    sa01mast2.opendt < sysdate
    spool off

  • My codes run in windows but not in Linux what is wrong?

    //I have 4 codes in total but heres is one for example
    import java.util.*;
    // This state accepts numeric input less than 100 and subtracts
    // 1 from each input number before exiting the state.
    // We exit the state if the input is exactly 100.
    public class AState extends State {
    public AState (String n, boolean d ) {
    super(n,d);
    public void RUN () {
    int ch = 0;
    entry();
    Scanner stdin = new Scanner(System.in);
    ch = stdin.nextInt();
    while ( ch != 100 ) {
    ch--;
    System.out.print(" " + ch);
    ch = stdin.nextInt();
    // change state from AState to BState
    Controller.state = Controller.states[Controller.BSTATE];
    // this will be the AState version of exit().
    exit();
    //It runs perfectly in windows but once I compile in a terminal of Linux it doesn't run it show like 8 errors, why is that, can somebody tell me what can I do about it

    public class AState extends State {
    ^
    Astate.java:18: cannot find symbol
    symbol : method entry()
    location: class AState
    entry();
    ^
    ./Controller.java:8: class BState is public, should be declared in a file named BState.java
    public class BState extends State {
    ^
    ./Controller.java:8: cannot find symbol
    symbol: class State
    public class BState extends State {
    ^
    Astate.java:31: cannot access Controller
    bad class file: ./Controller.java
    file does not contain class Controller
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    Controller.state = Controller.states[Controller.BSTATE];
    ^
    6 errors
    //As i said before, this run perfently through windows the same exactly code.

Maybe you are looking for

  • Upgrading R / 3 4.7 system to ECC6.0 with EHP4 along with windows 2008

    Hi All, I am looking for your feedback about the plan for upgrading our Landscape to ECC 6. with EHP4 from R/34.7E. Current Environment: R/3 4.7X110 with SQL 2000 in 32 bit windows 2003 Planning to upgrade to the level of : ECC6.0 with EHP4 64 bit wi

  • New hp laptop with windows 8.1 , why is sys restore disabled

    Just purchased new HP laptop running Windows 8.1, wanted to set a restore point once I got my settings where I wanted them and discovered that not only is the restore drive disabled but also the system will not set a restore point as I am not the adm

  • How do I link and be able to go to a reference number in the body of the text to the references I am wishing to go to?

    Example: Obstructive sleep apnea (OSA) is associated with increased reduced slow wave sleep.1 to: 1. Ng AK, Guan C. Impact of obstructive sleep apnea on sleep-wake stage ratio. Conf Proc IEEE Eng Med Biol Soc 2012;2012:4660-3. Thank you, David A Walk

  • Album missing from album list..?

    Hey, I've uploaded an album from a CD into iTunes and I can view/play it fine. When I sync my iPod however the album can't be found under the 'album list'. If I go to the artists name I can find it there though.. It's not tagged as a compilation or a

  • Compounding query

    hi I have created a infoobject(zcomp), It has an attribute which has text values. Zcomp  has a compounding characteristic(Ocomp_code), I added zcomp into a cube, in this cube, zcomp display as 0000234322. but in query level it display like 0010/23432