Javac error with classpath, but java works

after setting class path, for example, i build a hello.java under c:\dev and i put it in the classpath,
i goto c:\dev\ and typed javac hello.java, then i got hello.class, then i goto d:\
and type java hello, it prints the string correctly, but if i type javac hello.java under d:\, it gave error: cannot read hello.java, but in the classpath, c:\dev is correctly set and commond java can run the hello.class from d:\, so why canot javac do the same.
does that mean i have to go to the directory where the .java file is in to compile?

It's true, class path only helps javac find other classes to include with your class. You must either compile in the source path, specify the source path in the file name or best choice, use ANT.

Similar Messages

  • I have ipod nano 6G.I was trying to restore it to clear all the data but it showed error 1439 and couldn't restore.I tried every method given in errors help page but nothing worked.What should i do?

    I have ipod nano 6G.I was trying to restore it to clear all the data but it showed error 1439 and couldn't restore.I tried every method given in errors help page but nothing worked.What should i do?

    Just in case (even though your symptoms aren't explicitly mentioned in the document), let's check to see if there's a LSP problem in play here:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • My Xlite 4.0 software does not work with Jetpack but does work with droid hotspot can this be fixed?

    My Xlite 4.0 software does not work with Jetpack but does work with droidx hotspot can this be fixed?  I have attached a packet capture for packets from DROIDX with android 2.3.4 marked as XliteWith3G.cap and a packet capture for Xlite with the Jet pack XliteWith4G.cap   obiviously same packets coming from Xlite different results depending on WiFi connection.

    Hi Vidya,
    Thanks for posting your example. You may want to remove your workspace details from the previous posting, or at least update the password on the workspace. I've taken a look at your example and initially couldn't see anything wrong with your tree query. However, when I ran your query in SQL Workshop, it only returned one row, which would explain why you were only seeing one node in your tree! I've updated your query to use a WITH clause, and the tree is now working correctly. I believe you've hit an underlying database bug where the CONNECT BY query is only returning 1 row, when in fact it should return > 1 row. By re-writing the query to use a WITH clause, you can get around the problem.
    Regards,
    Hilary

  • Java is not working with Firefox (but is working with Safari)

    My computer is showing that Java is not enabled via Firefox. When I try to go into Tools/Add-ons, I see that there is no Java plug-in on that list (though I previously had no problem with Java). When I run software update on my Mac, it tells me my software is all up to date. Not sure what else to do. Java is working in Safari, so the problem is clearly with Firefox. I've tried disabling all my plug-ins, and clearing my cache. Nothing has helped.

    Apple has removed support for the Java Plugin2 with the latest Java Update 10 for OS X 10.5 Java version, so the Java plugin is no longer available for Firefox versions and other browsers like Google Chrome that require the Java Plugin2.
    There will be fix for this in Firefox 6 or in Firefox 5.0.1 if that version will be released, so that Firefox will find the plugin again.
    I don't know if all Java applets will still be working on OS X 10.5 with this fix (Apple recommends updating to OS X 10.6).
    * [/questions/844734]
    * [/forums/contributors/707078]

  • Java pulgin is enablesed and still not working with firefox but is working with my explorer browser

    Java 1.7.0_10 from Oracle Corp is working with my Explorer but when I go to a sight with Firefox, it shows that its not installed. When I go into Firefox's plug-ins, it shows that its enabled....How do I fix this?

    Your plugins list only shows the Java Deployment plugin and not the Java plugin.<br />
    A possible cause is that the Java installer failed to create the necessary registry keys that Firefox uses to scan for plugins.
    See this page about a possible JavaFX installation causing this.
    *[[/questions/944191?page=4]]
    See also:
    *http://kb.mozillazine.org/Java

  • I cannot email a pages document to anyone.  Gmail reports error with server but works when i send a PDF

    I cannot email a document via share option or by attaching it to an email.  Never use to be a problem before the update

    Yes, others have reported it too. Tell Apple http://www.apple.com/feedback/pages.html
    and while waitng for an update use Pages 09. It should still be in Applications/iWork09 folder it you haven't deleted it.

  • Error with TaskSearchFilter using Java APIs in custom component

    I have created a custom Java component for use in LC Process Mgr.
    Upon invoke of process containing component, component fails with the following message:
    2011-02-28 16:28:31,260 ERROR [com.adobe.workflow.AWS] Cannot coerce object: [email protected]41 of type: com.adobe.idp.taskmanager.dsc.client.query.TaskSearchFilter to type: class com.adobe.idp.taskmanager.dsc.client.query.TaskSearchFilter
    Code is pretty basic:
            ServiceClientFactory myFactory = ServiceClientFactory.createInstance();
            TaskManagerQueryService queryManager = TaskManagerClientFactory.getQueryManager(myFactory);
            TaskSearchFilter filter = new TaskSearchFilter();
            filter.addCondition(TaskSearchingConstants.pSTATUS, Operator.EQUALS, "3");
            List<TaskRow> result = queryManager.taskSearch(filter);
    Error seems to occur with the creation of the List. This code works ok when run as standalone file in either Eclipse or Netbeans but not within the component.
    All necessary JARs are included and are listed in the class-path in component.xml.
    Does anyone have any ideas?
    Thanks,
    David

    Looks like a class loader issue.  Usually this is caused by having the a class (TaskSearchFilte) in your component that on the server.   In other words there are two copies of the TaskSearchFilte class - yours and the one already in LiveCycle - and they are in conflict.
    If that's the case, the solution is simple:
    remove the jar files containing the TaskSearchFilte (and any other LiveCycle clients) from your component's jar file.  You may need them in the build path, so your code can compile - but you don't need them in the final component jar.
    remove the references to these jar files from the component.xml file's class-path entry
    add an import-packages section to your component.xml file.  This will not reference the jar files, but the package names themselves.  For example:
    <import-packages>    
         <package version="1.0">com.adobe.idp.taskmanager.dsc.client.query.TaskSearchFilter</package>
         <!--  add more as needed -->
    </import-packages>

  • Compile error with IDLJ generated java files.

    When compiling the IDLJ generated java files, javac is not able to recognize org.omg.CORBA.ObjectHelper
    classs. Looks like the import is not finding this class.
    I have located these classes in rt.jar but including this jar in CLASSPATH gives
    a version '48.0' is too recent error.
    Thanks
    Ramesh

    PLEASE IGNORE THIS MESSAGE. I HAVE RESOLVED THIS ISSUE.
    "Ramesh Nadella" <[email protected]> wrote:
    >
    When compiling the IDLJ generated java files, javac is not able to recognize
    org.omg.CORBA.ObjectHelper
    classs. Looks like the import is not finding this class.
    I have located these classes in rt.jar but including this jar in CLASSPATH
    gives
    a version '48.0' is too recent error.
    Thanks
    Ramesh

  • Error with cluster setup: Java.lang.AssertionError

    I am trying to setup a Weblogic 9.2 in a clustered Env in Windows 2003. My First machine comes up successfully but when I try to bring up the second server, I got the following error:
    <May 30, 2011 9:31:53 PM EST> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: java.lang.AssertionError: java.lang.reflect.InvocationTargetExceptionjava.lang.AssertionError: java.lang.reflect.InvocationTargetException
    Any idea what went wrong? Thanks in advance.
    Edited by: 862535 on May 31, 2011 2:51 AM

    Hi,
    I am using the startWeblogic.cmd file to start my admin server. The configurations are as follows:
    <?xml version='1.0' encoding='UTF-8'?>
    <domain xmlns="http://www.bea.com/ns/weblogic/920/domain" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90/security/xacml http://www.bea.com/ns/weblogic/90/security/xacml.xsd http://www.bea.com/ns/weblogic/90/security http://www.bea.com/ns/weblogic/90/security.xsd http://www.bea.com/ns/weblogic/920/domain http://www.bea.com/ns/weblogic/920/domain.xsd http://www.bea.com/ns/weblogic/90/security/wls http://www.bea.com/ns/weblogic/90/security/wls.xsd">
    <name>AdobeClusterTest1</name>
    <domain-version>9.2.2.0</domain-version>
    <security-configuration>
    <name>AdobeClusterTest1</name>
    <realm>
    <sec:authentication-provider xsi:type="wls:default-authenticatorType"></sec:authentication-provider>
    <sec:authentication-provider xsi:type="wls:default-identity-asserterType">
    <sec:active-type>AuthenticatedUser</sec:active-type>
    </sec:authentication-provider>
    <sec:role-mapper xmlns:xac="http://www.bea.com/ns/weblogic/90/security/xacml" xsi:type="xac:xacml-role-mapperType"></sec:role-mapper>
    <sec:authorizer xmlns:xac="http://www.bea.com/ns/weblogic/90/security/xacml" xsi:type="xac:xacml-authorizerType"></sec:authorizer>
    <sec:adjudicator xsi:type="wls:default-adjudicatorType"></sec:adjudicator>
    <sec:credential-mapper xsi:type="wls:default-credential-mapperType"></sec:credential-mapper>
    <sec:cert-path-provider xsi:type="wls:web-logic-cert-path-providerType"></sec:cert-path-provider>
    <sec:cert-path-builder>WebLogicCertPathProvider</sec:cert-path-builder>
    <sec:name>myrealm</sec:name>
    </realm>
    <default-realm>myrealm</default-realm>
    <anonymous-admin-lookup-enabled>true</anonymous-admin-lookup-enabled>
    <credential-encrypted>{3DES}X6flYzaSKVldhjc89aglUdABSB3zzVZsY9YI67ccMHrgZMaLCfNECt1V+JUIH076w2Sf7Iog+vZDHCpTplkDiHrZ/rnC6Frd</credential-encrypted>
    <node-manager-username>weblogic</node-manager-username>
    <node-manager-password-encrypted>{3DES}f472My412IbO+dkDSoutKA==</node-manager-password-encrypted>
    <enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>
    </security-configuration>
    <jta>
    <abandon-timeout-seconds>600</abandon-timeout-seconds>
    </jta>
    <server>
    <name>AdminServer</name>
    <listen-address></listen-address>
    </server>
    <server>
    <name>TestServer2</name>
    <ssl>
    <enabled>false</enabled>
    </ssl>
    <machine>AdobeMachine2</machine>
    <listen-port>8002</listen-port>
    <cluster>lc8_cluster</cluster>
    <listen-address>20.2.4.52</listen-address>
    <jta-migratable-target>
    <user-preferred-server>TestServer2</user-preferred-server>
    <cluster>lc8_cluster</cluster>
    </jta-migratable-target>
    </server>
    <server>
    <name>TestServer1</name>
    <machine>AdobeMachine1</machine>
    <listen-port>8002</listen-port>
    <cluster>lc8_cluster</cluster>
    <listen-address>20.2.4.51</listen-address>
    <jta-migratable-target>
    <user-preferred-server>TestServer1</user-preferred-server>
    <cluster>lc8_cluster</cluster>
    </jta-migratable-target>
    </server>
    <cluster>
    <name>lc8_cluster</name>
    <multicast-address>239.192.0.1</multicast-address>
    <multicast-port>8011</multicast-port>
    </cluster>
    <production-mode-enabled>true</production-mode-enabled>
    <embedded-ldap>
    <name>AdobeClusterTest1</name>
    <credential-encrypted>{3DES}E0x7cApYC85prQMGcqhWRW9x123x/hPp1BB2w1x7TI=</credential-encrypted>
    </embedded-ldap>
    <configuration-version>9.2.2.0</configuration-version>
    <machine>
    <name>AdobeMachine1</name>
    <node-manager>
    <listen-address>20.2.4.51</listen-address>
    <debug-enabled>true</debug-enabled>
    </node-manager>
    </machine>
    <machine>
    <name>AdobeMachine2</name>
    <node-manager>
    <listen-address>20.2.4.52</listen-address>
    <debug-enabled>true</debug-enabled>
    </node-manager>
    </machine>
    <migratable-target>
    <name>TestServer1 (migratable)</name>
    <notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
    <user-preferred-server>TestServer1</user-preferred-server>
    <cluster>lc8_cluster</cluster>
    </migratable-target>
    <migratable-target>
    <name>TestServer2 (migratable)</name>
    <notes>This is a system generated default migratable target for a server. Do not delete manually.</notes>
    <user-preferred-server>TestServer2</user-preferred-server>
    <cluster>lc8_cluster</cluster>
    </migratable-target>
    <admin-server-name>AdminServer</admin-server-name>
    </domain>
    I have the same set of configurations on another machine. 1 works while the other did not. Any idea? Thanks again.

  • Mac OSX, Startup Error with CC 2014 (CC works): Couldn't find any capable video play modules

    I'm getting this on two different machines running different OSX versions with different graphics cards:
    Adobe Premiere Pro Startup Error
    Adobe Premiere Pro could not find any capable video play modules. Please update your video display drivers and start again.
    My computers are:
    iMAC / OS X 10.9.5 / AMD Radeon HD 6970M 2048 MB
    MacBook Pro / OS X 10.10 / AMD Radeon HD 6750M 1024MB
    Was in a chat with an Adobe tech person and they even remotely got on my computer and changed permissions on two Adobe folders and sub folders and it still didn't work. Adobe Premiere CC seems to work. But clients are all using CC 2004.

    Hi ufoclub,
    Try this:
    Go to the following locations:
    Location 1: When in Finder, click on Go > Go to Folder > ~/Library/Application Support/Adobe
    Location 2: Go > Go to Folder > ~/Library/Preferences/Adobe
    Location 3: Documents > Adobe 
    In all the locations, rename the 'Adobe' folders to 'OldAdobe'
    Launch Premiere, accept the License Agreement and see if it works.
    Note: You will lose your customized workspaces and keyboard shortcuts.
    Thanks,
    Rameez

  • My OfficeJet 6110 will print (with errors) with Yosemite but will not scan

    I just finished reading this entire thread:
    http://h30434.www3.hp.com/t5/Mac-Printing-and-Scanning/Mac-OS-10-10-Yosemite-and-HP-Printer-Support/...
    I have rebooted the computer; repaired disk permissions; deleted and added the 6110 back; dowloaded the HP printer drivers and manually installed them; deleted printer and reinstalled printer drivers; repaired permissions again.
    Almost everytime I print, the printer does not actuate and I get an "inkjet error." Then I just print again and it works fine. However, it will not scan and although it shows up in SystemPreferencec>Printers and Scanners, it does not show up in Image Capture or Preview>Import from Scanner.
    I also have an Epson GT-S50 scanner. It scans perfectly without any problem.
    I just changed machines to a new iMac from my earlier Mac Pro. The 6110 worked fine with the Mac Pro running Mavericks.
    Here's the kicker: Although the scanner does not show up under ImageCapture or Preview or when R-clicking the installed printer window, it seems to work fine with the scanning software named VueScan. Under VueScan it shows up as an OfficeJet 6105 but seems to work ok.
    I want to use the native scanning software, however.
    I don't know what to do next.
    iMac Retina 5K running 10.10.1, 32GB RAM
    Thanks Stan

    Hello @snsokstan,
    Thank you for visiting the HP Support Forums! I understand you are running into some problems trying to install your HP Officejet 6110 to your Mac running the new Yosemite 10.10 Operating system.
    I see you have tried all the recommendations to install the printer with no success. After taking a look at the supported printers list on the Apple Site, your printer is not supported. This is why you are running into problems with the printing and scanning.
    I suggest contact our technical support at 800-474-6836 to see what upgrade options they may have available to you. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    I hope this helps!
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • [Solved] was getting errors with wine, but found patched linux version

    Installed wine for the first time, following the wiki and reading most of the things linked there (such as the winehq faq for disabling winemenubuilder), made separate WINEPREFIXs for 32 and 64 bit, then unzipped a program (Meritous) into the 32 bit prefix's "Program Files" and--
    [solitudesands@TheEntireBracadaDesert Meritousness]$ WINEPREFIX=~/w32 wine Meritous.exe
    wine: cannot find L"C:\\windows\\system32\\winemenubuilder.exe"
    err:wineboot:ProcessRunKeys Error running cmd L"C:\\windows\\system32\\winemenubuilder.exe -a -r" (2)
    fixme:keyboard:X11DRV_LoadKeyboardLayout L"00000409", 0080: stub!
    fixme:keyboard:X11DRV_LoadKeyboardLayout L"00000409", 0001: stub!
    wine: Unhandled page fault on read access to 0x00000034 at address 0x7bc3c8a1 (thread 0009), starting debugger...
    At which point the bug reporting wine function pops up offering this:
    Unhandled exception: page fault on read access to 0x00000034 in 32-bit code (0x7bc3c8a1).
    Register dump:
    CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
    EIP:7bc3c8a1 ESP:005533c0 EBP:005533d8 EFLAGS:00010206( R- -- I - -P- )
    EAX:7e64c301 EBX:7bcc7000 ECX:005533f0 EDX:7e6d7280
    ESI:00000020 EDI:00000000
    Stack dump:
    0x005533c0: 00682af8 7bc3c896 005533f0 7e6cf000
    0x005533d0: 0067fb40 00000000 00553408 7e65e39c
    0x005533e0: 00553438 7e663856 7e64c301 7e65e39c
    0x005533f0: 00000020 00553410 00553448 7e65e374
    0x00553400: 00553420 7e6cf000 00553468 7e663e7f
    0x00553410: 00682af8 00682af8 00000040 7e663e7f
    000c: sel=0067 base=00000000 limit=00000000 16-bit r-x
    Backtrace:
    =>0 0x7bc3c8a1 RtlEnterCriticalSection+0x21() in ntdll (0x005533d8)
    1 0x7e65e39c MSVCRT__lock_file+0x3b() in msvcrt (0x00553408)
    2 0x7e663e7f MSVCRT_fread+0x5e() in msvcrt (0x00553468)
    3 0x00401b28 in meritous (+0x1b27) (0x0067fbd8)
    4 0x004213f6 in meritous (+0x213f5) (0x0067fc08)
    5 0x004215b7 in meritous (+0x215b6) (0x0067fd88)
    6 0x00420f0b in meritous (+0x20f0a) (0x0067fe00)
    7 0x0040122d in meritous (+0x122c) (0x0067fe20)
    8 0x00401258 in meritous (+0x1257) (0x0067fe30)
    9 0x7b85c48c call_process_entry+0xb() in kernel32 (0x0067fe48)
    10 0x7b85d54a in kernel32 (+0x4d549) (0x0067fe78)
    11 0x7bc7c610 call_thread_func_wrapper+0xb() in ntdll (0x0067fe98)
    12 0x7bc7f50f call_thread_func+0xde() in ntdll (0x0067ff88)
    13 0x7bc7c5ee RtlRaiseException+0x21() in ntdll (0x0067ffb8)
    14 0x7bc51441 call_dll_entry_point+0x440() in ntdll (0x0067ffd8)
    15 0xf7553a8d wine_call_on_stack+0x1c() in libwine.so.1 (0x00000000)
    16 0xf7553c0a wine_switch_to_stack+0x29() in libwine.so.1 (0xff90b0a8)
    17 0x7bc56bd5 LdrInitializeThunk+0x1f4() in ntdll (0xff90b0f8)
    18 0x7b8634f2 __wine_kernel_init+0x871() in kernel32 (0xff90c268)
    19 0x7bc57a33 __wine_process_init+0x162() in ntdll (0xff90c2d8)
    20 0xf7551643 wine_init+0x2f2() in libwine.so.1 (0xff90c348)
    21 0x7bf00db2 main+0x81() in <wine-loader> (0xff90c7a8)
    22 0xf738de5e __libc_start_main+0xdd() in libc.so.6 (0x00000000)
    0x7bc3c8a1 RtlEnterCriticalSection+0x21 in ntdll: movl 0x14(%esi),%eax
    Modules:
    Module Address Debug info Name (68 modules)
    PE 230000- 24a000 Deferred sdl_image
    PE 400000- 473000 Export meritous
    PE 10000000-10046000 Deferred sdl
    PE 60400000-60475000 Deferred sdl_mixer
    ELF 7b800000-7ba5a000 Dwarf kernel32<elf>
    \-PE 7b810000-7ba5a000 \ kernel32
    ELF 7bc00000-7bce4000 Dwarf ntdll<elf>
    \-PE 7bc10000-7bce4000 \ ntdll
    ELF 7bf00000-7bf04000 Dwarf <wine-loader>
    ELF 7dcbc000-7dce0000 Deferred imm32<elf>
    \-PE 7dcc0000-7dce0000 \ imm32
    ELF 7dd02000-7dd08000 Deferred libxfixes.so.3
    ELF 7dd08000-7dd13000 Deferred libxcursor.so.1
    ELF 7dd13000-7dd26000 Deferred libxi.so.6
    ELF 7dd26000-7dd2a000 Deferred libxcomposite.so.1
    ELF 7dd2a000-7dd35000 Deferred libxrandr.so.2
    ELF 7dd35000-7dd40000 Deferred libxrender.so.1
    ELF 7dd40000-7dd46000 Deferred libxxf86vm.so.1
    ELF 7dd46000-7dd4a000 Deferred libxinerama.so.1
    ELF 7dd4a000-7dd70000 Deferred libxcb.so.1
    ELF 7dd70000-7dea7000 Deferred libx11.so.6
    ELF 7dea7000-7debc000 Deferred libxext.so.6
    ELF 7dee0000-7df72000 Deferred winex11<elf>
    \-PE 7def0000-7df72000 \ winex11
    ELF 7df72000-7e090000 Deferred opengl32<elf>
    \-PE 7df90000-7e090000 \ opengl32
    ELF 7e090000-7e1cc000 Deferred wined3d<elf>
    \-PE 7e0a0000-7e1cc000 \ wined3d
    ELF 7e1cc000-7e240000 Deferred ddraw<elf>
    \-PE 7e1d0000-7e240000 \ ddraw
    ELF 7e253000-7e27c000 Deferred libexpat.so.1
    ELF 7e27c000-7e2b8000 Deferred libfontconfig.so.1
    ELF 7e2b8000-7e32b000 Deferred libpcre.so.1
    ELF 7e32b000-7e436000 Deferred libglib-2.0.so.0
    ELF 7e436000-7e492000 Deferred libharfbuzz.so.0
    ELF 7e492000-7e4d0000 Deferred libpng16.so.16
    ELF 7e4d0000-7e4e1000 Deferred libbz2.so.1.0
    ELF 7e4e1000-7e4f8000 Deferred libz.so.1
    ELF 7e4f8000-7e59c000 Deferred libfreetype.so.6
    ELF 7e59c000-7e601000 Deferred libncursesw.so.5
    ELF 7e625000-7e6d9000 Dwarf msvcrt<elf>
    \-PE 7e640000-7e6d9000 \ msvcrt
    ELF 7e6d9000-7e704000 Deferred msacm32<elf>
    \-PE 7e6e0000-7e704000 \ msacm32
    ELF 7e704000-7e786000 Deferred rpcrt4<elf>
    \-PE 7e710000-7e786000 \ rpcrt4
    ELF 7e786000-7e8bf000 Deferred ole32<elf>
    \-PE 7e7a0000-7e8bf000 \ ole32
    ELF 7e8bf000-7e930000 Deferred advapi32<elf>
    \-PE 7e8d0000-7e930000 \ advapi32
    ELF 7e930000-7ea51000 Deferred gdi32<elf>
    \-PE 7e940000-7ea51000 \ gdi32
    ELF 7ea51000-7eba7000 Deferred user32<elf>
    \-PE 7ea60000-7eba7000 \ user32
    ELF 7eba7000-7ec5e000 Deferred winmm<elf>
    \-PE 7ebb0000-7ec5e000 \ winmm
    ELF 7ef8f000-7efdc000 Deferred libm.so.6
    ELF 7efdf000-7efe6000 Deferred libxdmcp.so.6
    ELF 7efe6000-7f000000 Deferred version<elf>
    \-PE 7eff0000-7f000000 \ version
    ELF f734d000-f7352000 Deferred libdl.so.2
    ELF f7352000-f7360000 Deferred libnss_files.so.2
    ELF f7372000-f7376000 Deferred libxau.so.6
    ELF f7376000-f752e000 Dwarf libc.so.6
    ELF f752e000-f754a000 Deferred libpthread.so.0
    ELF f754a000-f7703000 Dwarf libwine.so.1
    ELF f7704000-f7728000 Deferred ld-linux.so.2
    ELF f7728000-f7729000 Deferred [vdso].so
    Threads:
    process tid prio (all id:s are in hex)
    00000008 (D) C:\Program Files\Meritousness\Meritous.exe
    00000009 0 <==
    0000000e services.exe
    0000001d 0
    0000001c 0
    00000016 0
    00000014 0
    00000010 0
    0000000f 0
    00000012 winedevice.exe
    0000001b 0
    00000018 0
    00000017 0
    00000013 0
    00000019 plugplay.exe
    0000001f 0
    0000001e 0
    0000001a 0
    00000020 explorer.exe
    00000021 0
    System information:
    Wine build: wine-1.7.28
    Platform: i386
    Host system: Linux
    Host version: 3.16.3-1-ARCH
    However, unlike the few dozen other threads also including "Unhandled page fault on read access", I don't have any other errors to work with, and my backtrace is 23 lines instead of the usual 2-3. I've tried 'pacman -Ss'  for various libraries and drivers like in the other threads, but there doesn't appear to be anything I'm missing. Also, the game isn't in the appdb, so I can't look there for help.
    I'm figuratively flying blind, from newbiness and from lack of understandable, so any more experience with random failures like this would be appreciated.
    Help?
    Edit: Oh, and if you're wondering why I don't just compile from source, it's because that version always crashes halfway through the game; I'll be copying my saves from that version to this one if I get it running.
    Last edited by Torignit (2014-10-15 11:04:00)

    You'd better choose to build it from the AUR with makepkg and install it with pacman:
    https://wiki.archlinux.org/index.php/AU … Guidelines
    But nice that you could now play with it.
    Concerning Wine: I didn't see this game in the WineHQ - Wine Application Database
    Maybe it doesn't work with Wine.
    Last edited by berbae (2014-10-16 09:52:19)

  • Wifi on Surface Pro - installed with ndiswrapper but not working

    Hi there guys.
    I have installed Arch on a Surface Pro and most things work well.
    The biggest problem so far is wifi - it comes with a 88w8797 Marvell Avastar chipset. I managed to find the drivers and used ndiswrapper to install them.
    $ ndiswrapper -l
    mwlu97w8 : driver installed
    device (1286:2043) present (alternate driver: mwifiex_usb)
    The ndiswrapper help page says that one should get rid of alternate drivers before enabling ndiswrapper but I have no clue where to start - that seems to be a kernel loaded module (link) but it really doesn't do much apparently.
    I did 'modprobe ndiswrapper' but as you can see below, nothing seems to be really happening
    # iwconfig
    enp0s20u2u3 no wireless extensions.
    lo no wireless extensions.
    dmesg returns this on ndiswrapper
    $ dmesg | grep ndiswrapper
    [ 2.996565] ndiswrapper version 1.58 loaded (smp=yes, preempt=yes)
    [ 4.230024] usbcore: registered new interface driver ndiswrapper
    The gnome network manager, just like iwconfig, shows no able wireless.
    I'm at a loss on what to do, any help is greatly appreciatted
    Last edited by OttoRobba (2013-02-21 10:26:50)

    The blacklisting was a good call as I had completely forgot to do so. Made a /etc/modprobe.d/blacklist.conf  with 'install mwifiex_usb /bin/false' -  nothing changed though, the wireless network still won't show.
    # lsusb
    Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
    Bus 003 Device 003: ID 058f:6254 Alcor Micro Corp. USB Hub
    Bus 003 Device 002: ID 1286:2043 Marvell Semiconductor, Inc.
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
    Bus 001 Device 003: ID 045e:0795 Microsoft Corp.
    Bus 002 Device 003: ID 045e:079c Microsoft Corp.
    Bus 002 Device 004: ID 03eb:8209 Atmel Corp.
    Bus 002 Device 005: ID 045e:0794 Microsoft Corp.
    Bus 003 Device 006: ID 04e8:6863 Samsung Electronics Co., Ltd
    # lspci
    00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
    00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
    00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
    00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
    00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
    00:1f.0 ISA bridge: Intel Corporation HM77 Express Chipset LPC Controller (rev 04)
    00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
    00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
    It seems ndiswrapper is failing to load - I wonder if there is another module claiming the device?
    #dmesg
    [ 4.191249] ndiswrapper (import:232): unknown symbol: ntoskrnl.exe:'__chkstk'
    [ 4.191274] ndiswrapper (import:232): unknown symbol: ntoskrnl.exe:'MmGetSystemRoutineAddress'
    [ 4.191295] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisFreeIoWorkItem'
    [ 4.191305] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisQueueIoWorkItem'
    [ 4.191326] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisFreeMdl'
    [ 4.191336] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisAllocateMdl'
    [ 4.191346] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisAllocateNetBufferAndNetBufferList'
    [ 4.191356] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisFreeNetBufferList'
    [ 4.191366] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisFreeNetBufferListPool'
    [ 4.191376] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisAllocateNetBufferListPool'
    [ 4.191386] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMAllocatePort'
    [ 4.191403] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMIdleNotificationComplete'
    [ 4.191413] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMIdleNotificationConfirm'
    [ 4.191423] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMFreePort'
    [ 4.191432] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMNetPnPEvent'
    [ 4.191443] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMIndicateReceiveNetBufferLists'
    [ 4.191453] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMSendNetBufferListsComplete'
    [ 4.191463] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMOidRequestComplete'
    [ 4.191473] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMIndicateStatusEx'
    [ 4.191483] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMSetMiniportAttributes'
    [ 4.191493] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisSetOptionalHandlers'
    [ 4.191504] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisAllocateMemoryWithTagPriority'
    [ 4.191514] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisOpenConfigurationEx'
    [ 4.191523] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisFreeTimerObject'
    [ 4.191533] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisCancelTimerObject'
    [ 4.191543] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisSetTimerObject'
    [ 4.191599] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisAllocateIoWorkItem'
    [ 4.191613] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMRegisterMiniportDriver'
    [ 4.191623] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisMDeregisterMiniportDriver'
    [ 4.191648] ndiswrapper (import:232): unknown symbol: NDIS.SYS:'NdisAllocateTimerObject'
    [ 4.191663] ndiswrapper (load_sys_files:199): couldn't prepare driver 'mwlu97w8'
    [ 4.191827] ndiswrapper (load_wrap_driver:121): couldn't load driver 'mwlu97w8'
    [ 4.191926] usbcore: registered new interface driver ndiswrapper

  • Can't scan with feeder, but feeder works when printing

    Hello Everyone,
    Hope you can help me. The feeder works fine when printing, but does not feed when scanning. However, the scanner works fine on the flat bed. so...
    The feeder works when printing
    the scanner works on the flat bed, but
    I'm not able to scan with the feeder. Ugh!
    I updated my driver and tried everything on the HP website to no avail. Scanning page by page on the flat bed is way too tedious and time-consuming. Can anyone help me?

    Hi @zaja 
    Have you seen this page: The Automatic Document Feeder (ADF) Does Not Pick Up Paper?
    AlliBee
    I am an HP employee, but opinions expressed here are my own.
    Click the thumbs up + button if I have helped you. Mark Accepted Solution if your problem is solved. If both apply......do both.

  • I can't open a forum index on my laptop with Firefox but it works in IE. What can I do to correct firefox?

    I can't open a forum index. I'm using a new windows 7 laptop with the lates firefox. Site works fine on home desktop and cell with firefox. Also on this laptop with IE.
    Here is the config settings.,
    "application": {
    "name": "Firefox",
    "version": "18.0",
    "userAgent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0",
    "supportURL": "http://support.mozilla.org/1/firefox/18.0/WINNT/en-US/"
    "modifiedPreferences": {
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.disk.smart_size.use_old_max": false,
    "browser.cache.disk.smart_size_cached_value": 358400,
    "browser.places.smartBookmarksVersion": 4,
    "browser.startup.homepage": "about:blank",
    "browser.startup.homepage_override.buildID": "20130104151925",
    "browser.startup.homepage_override.mstone": "18.0",
    "extensions.lastAppVersion": "18.0",
    "gfx.direct3d.prefer_10_1": true,
    "network.cookie.prefsMigrated": true,
    "places.history.expiration.transient_current_max_pages": 104858,
    "places.database.lastMaintenance": 1358019789,
    "privacy.donottrackheader.enabled": true,
    "privacy.sanitize.migrateFx3Prefs": true,
    "security.warn_viewing_mixed": false
    "graphics": {
    "numTotalWindows": 1,
    "numAcceleratedWindows": 1,
    "windowLayerManagerType": "Direct3D 10",
    "adapterDescription": "Intel(R) HD Graphics Family",
    "adapterVendorID": "0x8086",
    "adapterDeviceID": "0x0106",
    "adapterRAM": "Unknown",
    "adapterDrivers": "igdumd64 igd10umd64 igd10umd64 igdumdx32 igd10umd32 igd10umd32",
    "driverVersion": "8.15.10.2559",
    "driverDate": "10-21-2011",
    "adapterDescription2": "",
    "adapterVendorID2": "",
    "adapterDeviceID2": "",
    "adapterRAM2": "",
    "adapterDrivers2": "",
    "driverVersion2": "",
    "driverDate2": "",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.1.7601.17789",
    "webglRenderer": "Google Inc. -- ANGLE (Intel(R) HD Graphics Family)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": false,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.9.4",
    "version": "4.9.4"
    "NSS": {
    "minVersion": "3.14.1.0 Basic ECC",
    "version": "3.14.1.0 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.14.1.0",
    "version": "3.14.1.0"
    "NSSSSL": {
    "minVersion": "3.14.1.0 Basic ECC",
    "version": "3.14.1.0 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.14.1.0 Basic ECC",
    "version": "3.14.1.0 Basic ECC"
    "extensions": [
    "name": "Bing Bar",
    "version": "5.0",
    "isActive": false,
    "id": "[email protected]"
    "name": "Search Helper Extension",'
    "version": "1.0",
    "isActive": false,
    "id": "{27182e60-b5f3-411c-b545-b44205977502}"
    Here is the part of the site I can get to. I can log into the site, but can't get to the forum. You do not need to login to get to the forum page.
    http://forum.guzzitech.com/forum.html
    and the screen says it may be from not allowing cookies, but I am.

    hello jlzibell, please go through the troubleshooting steps described at [[Websites say cookies are blocked - Unblock them]].

Maybe you are looking for

  • Patch 4775612 issue for Migration of 11.5.10.2 from Windows to Linux

    Hi All I am planing to migrate Oracle Application 11.5.10.2 from Windows 2003 to Oracle Enterprise Linux. I have Dual node system. My Application is on APPS NODE and my CONCURRENT MANAGER and DB are on DB node. I applied Patch *4775612* on both the n

  • XML having a JSP as XSL stylesheet ...

    Hi, In WLS 5.1 SP6, I have a XML which uses as XSL stylesheet a JSP served by WebLogic (<?xml/stylesheet href="style.jsp?order=3"?> It appears that, when I try to pass more than one parameter to my JSP (i.e. "style.jsp?order=3&value=1"), the XML page

  • Applications Stack

    I have had OS X Leopard on my computer since it was released, and for a while I had all of my apps in dedicated stacks. Recently I was cleaning up my computer and discovered DragThing and started using that instead, until it was suggested that I remo

  • Cross Tab Size and Formatting

    Good Day To All, I have 3 Cross tab that fit perfectly on one page, but when it was created the user used an incorrect field as its columns. When I change the column field to the correct field the Cross-Tab increases in size shifting the last cross t

  • Installation logiciel FAILED

    I have pay this evaluation version , when you activate my version , why demand a serial number , unknow for me in version evaluation ?