Sun IDM Repositor Configuration Error: Failed to load JDBC Driver

Hi Gurus,
I am new to Java IDM and predictably failed in my first attempt to install Java IDM in a Windows machine with SQL Server 2000 SP3.
I followed the Installation document step by step and I think I din' t miss any!!.. But still I got caught by an error, here it is:
I successfully installed IDM but failed while configuring Repository. I have downloaded the JDBC driver from Microsoft for SQL Server 2000, SP3. Then after that I copied the Jar from JDBC driver folder to
%WSHOME%/bin/lib folder. After this I launched the Repository configuration setup.
I got the following error while trying to connect the waveset database with Repository type as SQL Server (JDBC Driver)
com.waveset.util.ConfigurationError: Failed to load JDBC Driver 'com.microsoft.sqlserver.jdbc.SQLServerDriver':
==> java.lang.ClassNotFoundException: com.microsoft.sqlserver.jdbc.SQLServerDriver
The Parameters that I have given for connection are:
URL: jdbc:sqlserver://127.0.0.1:1433;DatabaseName=waveset
JDBC Driver: com.microsoft.sqlserver.jdbc.SQLServerDriver
Connect as User: waveset
Connect Password: waveset
I have created the database and granted all access to user waveset.
Please help me come out of this. I tried dropping and recreating the database with a different name. Still it did not work, looks like it is a JDBC driver specific issue. Please guide me if I did anything wrong.
Appreciate any help
Thanks

Open your driver jar using winzip or something and check if the class: com.microsoft.sqlserver.jdbc.SQLServerDriver is present in the jar. I think you need to use a different class name. or your jar file is wrong. I think there are separate jars for SQL server 2000 and for SQL Server 2005.

Similar Messages

  • Failed to load JDBC driver

    I am trying to run a program and keep getting the error Failed to load JDBC driver. java.lang.ClassNotFoundException
    How can I correct this?

    I was just trying to execute this example from Deitel's Java book.
    import java.awt.*;
    import java.sql.*;
    import java.util.*;
    import javax.swing.*;
    public class DisplayAuthors extends JFrame {
       // JDBC driver name and database URL
       static final String JDBC_DRIVER = "com.ibm.db2j.jdbc.DB2jDriver";
       static final String DATABASE_URL = "jdbc:db2j:books";
       // declare Connection and Statement for accessing
       // and querying database
       private Connection connection;
       private Statement statement;
       // constructor connects to database, queries database, processes
       // results and displays results in window
       public DisplayAuthors()
          super( "Authors Table of Books Database" );
          // connect to database books and query database
          try {
             // specify location of database on filesystem
             System.setProperty( "db2j.system.home", "C:/Cloudscape_5.0" );
             // load database driver class
             Class.forName( JDBC_DRIVER );
             // establish connection to database
             connection = DriverManager.getConnection( DATABASE_URL );
             // create Statement for querying database
             statement = connection.createStatement();
             // query database
             ResultSet resultSet =
                statement.executeQuery( "SELECT * FROM authors" );
             // process query results
             StringBuffer results = new StringBuffer();
             ResultSetMetaData metaData = resultSet.getMetaData();
             int numberOfColumns = metaData.getColumnCount();
             for ( int i = 1; i <= numberOfColumns; i++ )
                results.append( metaData.getColumnName( i ) + "\t" );
             results.append( "\n" );
             while ( resultSet.next() ) {
                for ( int i = 1; i <= numberOfColumns; i++ )
                   results.append( resultSet.getObject( i ) + "\t" );
                results.append( "\n" );
             // set up GUI and display window
             JTextArea textArea = new JTextArea( results.toString() );
             Container container = getContentPane();
             container.add( new JScrollPane( textArea ) );
             setSize( 300, 100 );  // set window size
             setVisible( true );   // display window
          }  // end try
          // detect problems interacting with the database
          catch ( SQLException sqlException ) {
             JOptionPane.showMessageDialog( null, sqlException.getMessage(),
                "Database Error", JOptionPane.ERROR_MESSAGE );
             System.exit( 1 );
          // detect problems loading database driver
          catch ( ClassNotFoundException classNotFound ) {
             JOptionPane.showMessageDialog( null, classNotFound.getMessage(),
                "Driver Not Found", JOptionPane.ERROR_MESSAGE );           
             System.exit( 1 );
          // ensure statement and connection are closed properly
          finally {
             try {
                statement.close();
                connection.close();           
             // handle exceptions closing statement and connection
             catch ( SQLException sqlException ) {
                JOptionPane.showMessageDialog( null,
                   sqlException.getMessage(), "Database Error",
                   JOptionPane.ERROR_MESSAGE );
                System.exit( 1 );
       }  // end DisplayAuthors constructor
       // launch the application
       public static void main( String args[] )
          DisplayAuthors window = new DisplayAuthors();     
          window.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    }  // end class DisplayAuthors

  • URGENT: Error:  Failed to Load JDBC/ODBC Driver

    I have created a database in Access and created user interface for it. Whenever I run the program from DOS (i.e java CarRental) the program begins but when I try to add a customer or add a vehicle I get the error java.lang.ClassNotFoundException: com.ms.jdbc.odbc.JdbcOdbcDriver.
    However, if I run it directly from MVisual J++ 6 it connects to the database fine. I have installed J2SDK 1_4 on my computer. Should I make changes to the following code?
    String url = "jdbc:odbc:CarRental";
                   try{
         Class.forName( "com.ms.jdbc.odbc.JdbcOdbcDriver" );
         connection = DriverManager.getConnection(url);
    Since I downloaded J2SDK does it need to be "sun.jdbc.odbc.JdbcOdbcDriver"?
    Please help- time is running thin!
    Thanks
    Angie

    The correct classname for the JDBC:ODBC bridge is
    sun.jdbc.odbc.JdbcOdbcDriver
    Thomas

  • Can't load jdbc driver in servlet

    Dear All,
    I have tried to connect to MS SQL SERVER 2000 through JDBC DRIVER FOR
    SQLSERVER. However I receieved an error: can't load jdbc driver class:
    null.
    The following steps were what I did:
    1.Set up SQL Server and create a few tables and users.
    2.Config Server.xml
    Add the following codes in /tomcat/conf/Server.xml
    <Context path="/persistence" docBase="persistence" debug="0"
    reloadable="true">
              <Resource name="jdbc/persistenceDB" auth="Container"
    type="javax.sql.DataSource"/>
              <ResourceParams name="jdbc/PersistenceDB">
                   <Parameter>
                        <name>user</name>
                        <value>kitty</value>
                   </Parameter>
                   <Parameter>
                        <name>password</name>
                        <value>abc</value>
                   </Parameter>
                   <Parameter>
                        <name>driverClassName</name>
                        <value>com.microsoft.jdbc.sqlserver.SQLServerDriver</value>
                   </Parameter>
                   <Parameter>
                        <name>url</name>
    <value>jdbc:microsoft:sqlserver://localhost:1433;databaseName=persistence;selectMethod=cursor;</value>
                   </Parameter>
              </ResourceParams>               
    </Context>
    3.Config my web application's web.xml
    Added the following piece of code in WEB.XML
    <resource-ref>
    <res-ref-name>jdbc/persistenceDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    4.Use Datasource in my code
    package persistence.database;
    import java.sql.*;
    import javax.naming.InitialContext;
    import javax.sql.DataSource;
    import javax.servlet.ServletContext;
    import persistence.*;
    import com.microsoft.jdbcx.sqlserver.*;
    import javax.naming.Context;
    public class DatabaseAuthenticator implements Authenticator {
    private DataSource ds;
    public void init(ServletContext sctx) throws Exception {
    InitialContext init = new InitialContext();
    try{
         Context ctx = (Context) init.lookup("java:/comp/env");
    ds = (DataSource) ctx.lookup("jdbc/persistenceDB");
    } catch (Exception e) { e.printStackTrace();
    public User authenticate(String username, String password)
    throws AuthenticationException, UnknownException {
    Connection conn = null;
    PreparedStatement pstmt = null;
    ResultSet rs;
    try {
    if (ds != null) {System.out.println("Success to get
    datasource");
            } else {System.out.println("Failed");}
    System.out.println(ds.toString());
    try
    conn = ds.getConnection();     
    catch (Exception e)
    e.printStackTrace();
    pstmt = conn.prepareStatement("SELECT user_id " + .........
    5. put msutil.jar, mssqlserver.jar and msbase.jar under /tomcat/common/lib/.
    When I tried to run the program, I receieved an error: can't load jdbc
    driver class: null.
    I've got no idea what's going on.
    Any Suggestion?
    Thanks in advance
    Kitty

    Hi Kitty,
    The connection you're trying to set up points to nothing :
    Connection conn = null;
    So, you receive a complaint that that driver cannot be loaded. Please read
    http://java.sun.com/docs/books/tutorial/jdbc/basics/connecting.html
    download the right database driver and use that. Good luck!
    Wouter van Reeven
    public User authenticate(String username, String
    g password)
    throws AuthenticationException, UnknownException
    ption {
    Connection conn = null;
    PreparedStatement pstmt = null;
    ResultSet rs;

  • Log4j:ERROR Failed to load driver

    I want to use log4j to log information,my jdk version is 1.5.0_06,and my oracle version is 9.2.0.1.0,my web.xml and servlet is follows:
    web.xml
    <servlet>          
    <display-name>LogServlet</display-name>
    <servlet-name>LogServlet</servlet-name>
    <servlet-class>
    test.a
    </servlet-class>
    <init-param>
    <param-name>log4j-config-file</param-name>
    <param-value>
    /WEB-INF/log4j.properties
    </param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    /*a.java*/
    package test;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.log4j.*;
    public class a extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ }
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ }
    public void init() throws ServletException{
    String prefix = getServletContext().getRealPath("/");
    String file = getServletConfig().getInitParameter("log4j-config-file");
    if (file != null) {
    PropertyConfigurator.configure(prefix + file);
    /*log4j.properties*/
    log4j.rootLogger=DEBUG,DATABASE
    log4j.addivity.org.apache=true
    log4j.appender.DATABASE.Threshold=INFO
    log4j.appender.DATABASE=org.apache.log4j.jdbc.JDBCAppender
    log4j.appender.DATABASE.URL=jdbc:oracle:thin:@192.1.1.2:1521:Ora
    log4j.appender.DATABASE.driver=oracle.jdbc.driver.OracleDriver
    log4j.appender.DATABASE.user=scott
    log4j.appender.DATABASE.password=tiger
    log4j.appender.DATABASE.sql=INSERT INTO test VALUES('%m')
    log4j.appender.DATABASE.layout=org.apache.log4j.PatternLayout
    When I start Tomcat,it raise following error:
    log4j:ERROR Failed to load driver
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at org.apache.log4j.jdbc.JDBCAppender.setDriver(JDBCAppender.java:351)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:205)
    at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:164)
    at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:129)
    at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:96)
    at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:654)
    at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:612)
    at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:509)
    at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:415)
    at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:316)
    at org.apache.log4j.PropertyConfigurator.configure(PropertyConfigurator.java:324)
    at test.a.init(a.java:20)
    at javax.servlet.GenericServlet.init(GenericServlet.java:211)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3915)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4176)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
    at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:910)
    at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:873)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:474)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1118)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1020)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1012)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
    at org.apache.catalina.core.StandardService.start(StandardService.java:450)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:275)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    I have put all jar file of the directory C:\oracle\ora92\jdbc\lib,such as classes12.jar,classes12_g.jar,classes12dms.jar,classes12dms_g.jar,nls_charset11.jar,nls_charset12.jar,ocrs12.jar,ojdbc14.jar,ojdbc14_g.jar into the direcory tomcat5\webapps\ROOT\WEB-INF\lib
    But Tomcat still raise above error? Why? I am puzzled with it for a long time! Anybody meet with above question? Any idea will be appreciated!

    Well, classes12.zip is a fairly old driver, especially for JDK 1.5, and even for Oracle 9. So, I would first suggest visiting Oracle's JDBC driver download sie.
    If that fails, please post the code you are using to connect to your database (please do not post the real domain or your user name or password). :^)
    - Saish

  • Acrobat fatal error: failed to load core dll

    Hi,
    I have a problem with acrobat reader on my laptop.
    My OS is Vista Home Premium.
    I had Master collection CS4 installed.
    When starting up acrobat reader; i got following error:
    failed to load core dll.
    I went to the log and this is the explenatoin written in there: (i'm dutch speaking)
    Kan activeringscontext voor 'C:\Program Files\Adobe\Reader  9.0\Reader\AcroRd32.dll' niet maken. Fout in manifest of beleidsbestand  '' op regel . Een onderdeelversie die nodig is voor de toepassing  conflicteert met een andere onderdeelversie die reeds actief is.  Conflicterende onderdelen zijn: Onderdeel 1:  C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.42_none_db5f52fb98cb24  ad.manifest.  Onderdeel 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb  8f8.manifest.
    Kan activeringscontext voor 'C:\Windows\system32\BHOManager.dll' niet  maken. Fout in manifest of beleidsbestand '' op regel . Een  onderdeelversie die nodig is voor de toepassing conflicteert met een  andere onderdeelversie die reeds actief is. Conflicterende onderdelen  zijn: Onderdeel 1: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.42_none_db5f52fb98cb24  ad.manifest.  Onderdeel 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb  8f8.manifest.
    I simultaneously had a problem with Dreamweaver.
    I think all this is caused by an Side By Side configuration issue.
    I've tried to do following steps:
    -redistibrutable 2008 c++ package geinstall
    -system recoverage tool
    -reinstall cs4 master collection
    -uninstall master collection, clean up, install reeware acrobat reader
    -uninstall acrobat reader, ccleaner register issues resolver , also older than 24 uur , reboot,  install acrobat reader freeware
    -revo uninstall tool to remove acrobat
    none of the above actions were successful.
    What could u suggest or give as a solution.
    Atm i'm using an altarnative pdf-reader.
    But as i bought the master collection,
    i'd rather have my adobe acrobat reader pro and dreamweaver working.
    Thanks in advance,
    With friendly regards
    Anton

    Hi Anton
    I am sorry, I do not have an answer just a similar problem.
    I am no expert, but all these manifest files are to ensure that different developers can ensure that the appropriate versions of common libraries are used by particular versions of their software.
    Deatils are below. The original problem was a corrupted manifest file, probably due to a disk error. This resulted in several programs failing to run. In particular I was unable to access backup on my Windows Home Server. From the logs I was able to identify the manifest file in error and located a copy of a file with the same name on another of my computers. Using notepad I then changed the file causing the problem to match the file on the other computer.
    This appeared to resolve all my problems.
    When the Acrobat Reader updated itself, however, the"failed to load core DLL" message appeared. Simply uninstalling all adobe programs and re-installing makes no difference.
    If you have the solution please post.
    If not, I will continue to research this problem.
    Very best wishes
    Graham
    Details from error log and manifest files:
    Acrobat failed to load its core DLL
    Log Name:      Application
    Source:        SideBySide
    Date:          29/10/2010 23:30:07
    Event ID:      80
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      9GHASUSP5QSEx64
    Description:
    Activation context generation failed for "C:\Program Files (x86)\Adobe\Reader 9.0\Reader\AcroRd32.dll".
    Error in manifest or policy file "" on line .
    A component version required by the application conflicts with another component version already active.
    Conflicting components are:.
    Component 1: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_d 08a205e442db5b5.manifest.
    Component 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_none_10 b2f55f9bffb8f8.manifest.
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <noInheritable></noInheritable>
        <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.4927" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
        <file name="msvcr80.dll" hash="b2cd2205044f7cfd822da03b5f8d329ac5f4fcde" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>niXcYiF5k0Z3fQ7PBFMJuaYHWTU=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcp80.dll" hash="984100dac2591da1a03c5146fecc47eb5deabec7" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>aW9cDm76mbaI14MUAAx8P0auVdE=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcm80.dll" hash="34d9d81de781f7566e20e2bd33e410bc80837703" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>pyazDrJIgYvW/Y3vCJt/9hpimHA=</dsig:DigestValue></a smv2:hash></file>
    </assembly>
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <noInheritable></noInheritable>
        <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.762" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
        <file name="msvcr80.dll" hash="10f4cb2831f1e9288a73387a8734a8b604e5beaa" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>n9On8FItNsK/DmT8UQxu6jYDtWQ=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcp80.dll" hash="b2082dfd3009365c5b287448dcb3b4e2158a6d26" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>0KJ/VTwP4OUHx98HlIW2AdW1kuY=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcm80.dll" hash="542490d0fcf8615c46d0ca487033ccaeb3941f0b" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>YJuB+9Os2oxW4mY+2oC/r8lICZE=</dsig:DigestValue></a smv2:hash></file>
    </assembly>

  • Depmod error: failed to load symbols from ...

    Hello,
    I installed today arch and the installation went well except nvidia-340xx install gave me this error messsage; now, X wont start.
    depmod ERROR: failed to load symbols from /lib/modules/3.16.4-1-ARCH/kernel/drivers/usb/wusbcore/wusbcore.ko.gz invalide argument
    Any idea?

    Scimmia wrote:failed to load symbols doesn't sound good. It may need a reinstall of the kernel if something got corrupted on disk.
    This is exactly what i have done and the error message went away.
    But at boot still hangs.
    This is the Xorg.1.log file:
    [ 46.713]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 46.713] X Protocol Version 11, Revision 0
    [ 46.714] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 46.714] Current Operating System: Linux myhost 3.16.4-1-ARCH #1 SMP PREEMPT Mon Oct 6 08:22:27 CEST 2014 x86_64
    [ 46.714] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=33a28745-d878-4b98-a9ab-dee48b53a9b2 rw quiet
    [ 46.714] Build Date: 21 September 2014 10:53:13AM
    [ 46.714]
    [ 46.714] Current version of pixman: 0.32.6
    [ 46.715] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 46.715] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 46.716] (==) Log file: "/var/log/Xorg.1.log", Time: Thu Oct 16 15:26:17 2014
    [ 46.717] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 46.717] (==) No Layout section. Using the first Screen section.
    [ 46.717] (==) No screen section available. Using defaults.
    [ 46.717] (**) |-->Screen "Default Screen Section" (0)
    [ 46.717] (**) | |-->Monitor "<default monitor>"
    [ 46.717] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 46.717] (==) Automatically adding devices
    [ 46.717] (==) Automatically enabling devices
    [ 46.717] (==) Automatically adding GPU devices
    [ 46.717] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 46.717] Entry deleted from font path.
    [ 46.718] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 46.718] Entry deleted from font path.
    [ 46.718] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 46.718] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 46.718] Entry deleted from font path.
    [ 46.718] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 46.718] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 46.718] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 46.718] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 46.718] (II) Loader magic: 0x818d80
    [ 46.718] (II) Module ABI versions:
    [ 46.718] X.Org ANSI C Emulation: 0.4
    [ 46.718] X.Org Video Driver: 18.0
    [ 46.718] X.Org XInput driver : 21.0
    [ 46.718] X.Org Server Extension : 8.0
    [ 46.725] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
    [ 46.725] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 46.726] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 1
    [ 46.726] (EE) Error systemd-logind returned paused fd for drm node
    [ 46.726] (II) systemd-logind: releasing fd for 226:0
    [ 46.729] (--) PCI:*(0:1:0:0) 10de:0404:0000:0000 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/131072
    [ 46.729] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 46.729] (II) LoadModule: "glx"
    [ 46.730] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 46.775] (II) Module glx: vendor="NVIDIA Corporation"
    [ 46.775] compiled for 4.0.2, module version = 1.0.0
    [ 46.775] Module class: X.Org Server Extension
    [ 46.775] (II) NVIDIA GLX Module 340.46 Wed Sep 24 13:54:14 PDT 2014
    [ 46.775] (==) Matched nouveau as autoconfigured driver 0
    [ 46.775] (==) Matched nvidia as autoconfigured driver 1
    [ 46.775] (==) Matched nv as autoconfigured driver 2
    [ 46.775] (==) Matched modesetting as autoconfigured driver 3
    [ 46.775] (==) Matched fbdev as autoconfigured driver 4
    [ 46.775] (==) Matched vesa as autoconfigured driver 5
    [ 46.775] (==) Assigned the driver to the xf86ConfigLayout
    [ 46.775] (II) LoadModule: "nouveau"
    [ 46.775] (WW) Warning, couldn't open module nouveau
    [ 46.775] (II) UnloadModule: "nouveau"
    [ 46.775] (II) Unloading nouveau
    [ 46.775] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 46.775] (II) LoadModule: "nvidia"
    [ 46.775] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 46.776] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 46.776] compiled for 4.0.2, module version = 1.0.0
    [ 46.776] Module class: X.Org Video Driver
    [ 46.776] (II) LoadModule: "nv"
    [ 46.777] (WW) Warning, couldn't open module nv
    [ 46.777] (II) UnloadModule: "nv"
    [ 46.777] (II) Unloading nv
    [ 46.777] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "modesetting"
    [ 46.777] (WW) Warning, couldn't open module modesetting
    [ 46.777] (II) UnloadModule: "modesetting"
    [ 46.777] (II) Unloading modesetting
    [ 46.777] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "fbdev"
    [ 46.777] (WW) Warning, couldn't open module fbdev
    [ 46.777] (II) UnloadModule: "fbdev"
    [ 46.777] (II) Unloading fbdev
    [ 46.777] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "vesa"
    [ 46.777] (WW) Warning, couldn't open module vesa
    [ 46.778] (II) UnloadModule: "vesa"
    [ 46.778] (II) Unloading vesa
    [ 46.778] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 46.778] (II) NVIDIA dlloader X Driver 340.46 Wed Sep 24 13:34:03 PDT 2014
    [ 46.778] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 46.778] (++) using VT number 2
    [ 46.778] (--) controlling tty is VT number 2, auto-enabling KeepTty
    [ 46.778] (II) Loading sub module "fb"
    [ 46.778] (II) LoadModule: "fb"
    [ 46.778] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 46.778] (II) Module fb: vendor="X.Org Foundation"
    [ 46.778] compiled for 1.16.1, module version = 1.0.0
    [ 46.778] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 46.778] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 46.778] (II) Loading sub module "wfb"
    [ 46.778] (II) LoadModule: "wfb"
    [ 46.778] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 46.779] (II) Module wfb: vendor="X.Org Foundation"
    [ 46.779] compiled for 1.16.1, module version = 1.0.0
    [ 46.779] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 46.779] (II) Loading sub module "ramdac"
    [ 46.779] (II) LoadModule: "ramdac"
    [ 46.779] (II) Module "ramdac" already built-in
    [ 46.779] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 46.779] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 46.779] (==) NVIDIA(0): RGB weight 888
    [ 46.779] (==) NVIDIA(0): Default visual is TrueColor
    [ 46.779] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 46.780] (**) NVIDIA(0): Enabling 2D acceleration
    [ 46.904] (II) NVIDIA(0): Display (Acer AL2016W (DFP-0)) does not support NVIDIA 3D
    [ 46.904] (II) NVIDIA(0): Vision stereo.
    [ 46.904] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 46.906] (II) NVIDIA(0): NVIDIA GPU GeForce 8400 GS (G84) at PCI:1:0:0 (GPU-0)
    [ 46.906] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 46.906] (--) NVIDIA(0): VideoBIOS: 60.84.68.00.00
    [ 46.906] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 46.909] (--) NVIDIA(0): Valid display device(s) on GeForce 8400 GS at PCI:1:0:0
    [ 46.909] (--) NVIDIA(0): CRT-0
    [ 46.909] (--) NVIDIA(0): CRT-1
    [ 46.909] (--) NVIDIA(0): TV-0
    [ 46.909] (--) NVIDIA(0): Acer AL2016W (DFP-0) (boot, connected)
    [ 46.909] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(GPU-0): CRT-1: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(GPU-0): TV-0: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(0): Acer AL2016W (DFP-0): Internal TMDS
    [ 46.909] (--) NVIDIA(GPU-0): Acer AL2016W (DFP-0): 330.0 MHz maximum pixel clock
    [ 46.909] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46.909] (**) NVIDIA(0): device Acer AL2016W (DFP-0) (Using EDID frequencies has
    [ 46.909] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46.914] (==) NVIDIA(0):
    [ 46.914] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 46.914] (==) NVIDIA(0): will be used as the requested mode.
    [ 46.914] (==) NVIDIA(0):
    [ 46.914] (II) NVIDIA(0): Validated MetaModes:
    [ 46.914] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 46.914] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050
    [ 46.951] (--) NVIDIA(0): DPI set to (99, 98); computed from "UseEdidDpi" X config
    [ 46.951] (--) NVIDIA(0): option
    [ 46.951] (--) Depth 24 pixmap format is 32 bpp
    [ 46.951] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 46.955] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 46.955] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 46.955] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 46.955] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 46.955] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 46.955] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 46.955] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 46.955] (II) NVIDIA(0): Config Options in the README.
    [ 46.958] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
    [ 47.037] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 47.037] (==) NVIDIA(0): Backing store enabled
    [ 47.037] (==) NVIDIA(0): Silken mouse enabled
    [ 47.038] (==) NVIDIA(0): DPMS enabled
    [ 47.038] (II) Loading sub module "dri2"
    [ 47.038] (II) LoadModule: "dri2"
    [ 47.038] (II) Module "dri2" already built-in
    [ 47.038] (II) NVIDIA(0): [DRI2] Setup complete
    [ 47.038] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 47.038] (--) RandR disabled
    [ 47.045] (II) Initializing extension GLX
    [ 47.102] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 47.102] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 47.102] (II) LoadModule: "evdev"
    [ 47.102] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 47.102] (II) Module evdev: vendor="X.Org Foundation"
    [ 47.102] compiled for 1.16.0, module version = 2.9.0
    [ 47.102] Module class: X.Org XInput Driver
    [ 47.102] ABI class: X.Org XInput driver, version 21.0
    [ 47.103] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 28 paused 0
    [ 47.103] (II) Using input driver 'evdev' for 'Power Button'
    [ 47.103] (**) Power Button: always reports core events
    [ 47.103] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 47.103] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 47.103] (--) evdev: Power Button: Found keys
    [ 47.103] (II) evdev: Power Button: Configuring as keyboard
    [ 47.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 47.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 47.103] (**) Option "xkb_rules" "evdev"
    [ 47.103] (**) Option "xkb_model" "pc104"
    [ 47.103] (**) Option "xkb_layout" "us"
    [ 47.141] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 47.141] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 47.142] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 29 paused 0
    [ 47.142] (II) Using input driver 'evdev' for 'Power Button'
    [ 47.142] (**) Power Button: always reports core events
    [ 47.142] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 47.142] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 47.142] (--) evdev: Power Button: Found keys
    [ 47.142] (II) evdev: Power Button: Configuring as keyboard
    [ 47.142] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event2"
    [ 47.142] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 47.142] (**) Option "xkb_rules" "evdev"
    [ 47.142] (**) Option "xkb_model" "pc104"
    [ 47.142] (**) Option "xkb_layout" "us"
    [ 47.142] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 47.142] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 47.143] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 30 paused 1
    [ 47.143] (EE) Error systemd-logind returned paused fd for drm node
    [ 47.143] (II) systemd-logind: releasing fd for 226:0
    [ 47.144] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/event1)
    [ 47.144] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Applying InputClass "evdev pointer catchall"
    [ 47.144] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 31 paused 0
    [ 47.144] (II) Using input driver 'evdev' for 'Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)'
    [ 47.144] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): always reports core events
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Device: "/dev/input/event1"
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Vendor 0x45e Product 0x40
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found 3 mouse buttons
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found scroll wheel(s)
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found relative axes
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found x and y relative axes
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Configuring as mouse
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Adding scrollwheel support
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): YAxisMapping: buttons 4 and 5
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 47.144] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb1/1-2/1-2:1.0/0003:045E:0040.0001/input/input1/event1"
    [ 47.144] (II) XINPUT: Adding extended input device "Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)" (type: MOUSE, id 8)
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): initialized for relative axes.
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) keeping acceleration scheme 1
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration profile 0
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
    [ 47.145] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/mouse0)
    [ 47.145] (II) No input driver specified, ignoring this device.
    [ 47.145] (II) This device may have been added with another device file.
    [ 47.145] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event5)
    [ 47.145] (II) No input driver specified, ignoring this device.
    [ 47.145] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event6)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event7)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event8)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.147] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event9)
    [ 47.147] (II) No input driver specified, ignoring this device.
    [ 47.147] (II) This device may have been added with another device file.
    [ 47.147] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 47.147] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 47.147] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 32 paused 0
    [ 47.147] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 47.147] (**) AT Translated Set 2 keyboard: always reports core events
    [ 47.148] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 47.148] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 47.148] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 47.148] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 47.148] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 47.148] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 47.148] (**) Option "xkb_rules" "evdev"
    [ 47.148] (**) Option "xkb_model" "pc104"
    [ 47.148] (**) Option "xkb_layout" "us"
    [ 47.148] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 47.148] (II) No input driver specified, ignoring this device.
    [ 47.148] (II) This device may have been added with another device file.
    [ 79.735] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 79.735] (II) UnloadModule: "evdev"
    [ 79.735] (II) systemd-logind: releasing fd for 13:64
    [ 79.763] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Close
    [ 79.763] (II) UnloadModule: "evdev"
    [ 79.763] (II) systemd-logind: releasing fd for 13:65
    [ 79.826] (II) evdev: Power Button: Close
    [ 79.826] (II) UnloadModule: "evdev"
    [ 79.826] (II) systemd-logind: releasing fd for 13:66
    [ 79.853] (II) evdev: Power Button: Close
    [ 79.853] (II) UnloadModule: "evdev"
    [ 79.853] (II) systemd-logind: releasing fd for 13:67
    [ 80.240] (II) NVIDIA(GPU-0): Deleting GPU-0
    [ 80.242] (EE) Server terminated successfully (0). Closing log file.

  • Error: Failed to load Main-Class manifest attribute from HelloWorld.jar

    Hi,
    I got a file call HelloWorld.java and a file call mainClass which contain one line ==>
    Main-Class: HelloWorld
    Then I run the command:
    jar cmf mainClass HelloWorld.jar HelloWorld.class
    java -jar HelloWorld.jarAnd I got the following error:
    =======================================
    Failed to load Main-Class manifest attribute from
    HelloWorld.jar
    =======================================
    Why is that? I follow the instruction from the sun website, but still not working... can anybody help??
    Thanks

    For whatever reason the last line of the Manifest file is always ignored. So if your Main-Class is the first AND last line it is being ignored. Solution, make sure you have at least one or more blank lines after the Main-Class line.

  • OBIEE 11g BI Publisher; New Data Set Creation Error "Failed to load SQL"

    Hi,
    I'm trying to create a new SQL data set (from a client machine). I use "query builder" to build the data set. But when I click "OK", it fires the error "Failed to load SQL".
    But strangely, if connect to the OBIEE server's desktop and create the data set it works without any issues. I wonder this would be a firewall issue. If so what are the ports I should open.
    It's a enterprise installation. And we have already open 9703, 9704, and 9706.
    Has anyone came across such a situation?

    Talles,
    First of all you might have more chance of getting a response over in the BIP forum. Other than that all I can think of is: is your MS SQL Server running with mixed mode auth?

  • When trying to upload a document or attach a document in an email Firefox gives me an error "Failed to load CTDFMRES.dll" and stops responding, I have no issues in any other browsers. And I am using Firefox 4, Fixes???

    When trying to upload a document or attach a document in an email Firefox gives me an error "Failed to load CTDFMRES.dll" and stops responding, I have no issues in any other browsers. And I am using Firefox 4, Fixes???

    You don't have to disable any addons or extentions!!!You guys are not going to believe this I figured out the problem it's really dumb...ok here goes the attachment uploader loads seperate so I got to thinking it's a popup so I went to options content and under block pop ups there is an option exceptions click on that and in the box type firefox.com and hit allow pow its fixed!!!!! :-)

  • Error: "failed to load book because the requested resource is missing"

    I book a book via the iPad. The book appeared in my library no problem with the "new" tag and stuff, but when I tap it to read I get an error "failed to load book because the requested resource is missing." Any ideas? I'm on the road, so I haven't synced or backed up or anything..
    I've also verified that I have a good connection, etc. I'm able to hit the "store" button and browse the store no prob, as well as web, etc.
    Any thoughts?

    I believe I may have the answer to these many concerns. 
    When a book is over 20 or so megs, iBook will sometimes make an attempt to download on the iPad (when it should not). This causes problems. Perhaps the one you are experiencing. Therefore you have to wait until you are on a wifi connection before purchasing dictionary-like books. But if you've already made the mistake of downloading, theres no guarantee wifi will correct this. 
    What worked for me (like others have already mentioned) is that if you have an iphone or touch you can download it from there, sync with your computer and sync your iPad later. The book(s) will transfer just fine as long as you have this enabled on your devices.
    Initially this didn't work for me because in my frustration with a prior issue I took the liberty to create another iTunes account. Therefore iPad purchases were not visible on my phone. So be sure to have the same accounts activated on your devices and iTunes. 
    Yet even further diagnostics may need to be explored as I'm still prompted to provide my password every time i open iBooks (as if the download is still pending). Kinda afraid to revert to factory settings over a small issue. In the coming update Apple should fix these problems altogether. Hope this helps!

  • EPM Configurator Error "Failed to navigate from RegistryWizardState: Error while initializing registry.

    Hi,
    I am getting Below error in RHEL 6.5
    EPM Configurator Error "Failed to navigate from RegistryWizardState: Error while initializing registry. See logs for more details"  while configuring Essbase Server on 64 bit OS using Oracle Database
    Any help...?

    Hi ,
    This community is to discuss Oracle Application Server specific issues, you can post this query in the below Hyperion Forms for better response:
    Hyperion EPM
    [OR]
    Oracle Hyperion EPM (MOSC)
    [OR]
    Hyperion Certification for EPM (MOSC)
    Regards,
    Prakash.

  • Error, "Failed to load the folio"

    So I joined the Creative cloud. Comming from CS5 I must say I really like CS6.
    Today I say this youtube video from Terry White in which he explains how to create an app in Indesign. I had installed the latest DPS and Adobe Air from the Adobe download site and it installed fine.
    I wanted to try this so I followed him with creating an Folio overlay and tried to preview this with the adobe content viewer on the desktop (macPro OS 10.8.2) and came with the following error ; Error, "Failed to load the folio".
    No matter what I try, the error keeps on comming. I tried uninstall the old CS5. Uninstalling Indesign CS6, adobe air. Then rebooted the mac and installed it all over again (except CS5).
    The troubleshooting page says this;
    Error, "Failed to load the folio"
    If you receive this error, it could be due to use of platform invalid characters in the magazine title. For example, the following characters used in the magazine title could cause this error, \ / : * ? " < > |
    Rename your magazine title so that none of these characters are used. It's sometimes necessary to test by eliminating any characters that aren't alphanumeric. If changing the magazine name fixes the problem, update the folio in the Folio Builder panel to update the content on the server. Adobe hopes to have these issues fixed in later releases of the product.
    If special characters are not the cause of this error, then some other content or attribute could be the cause. Use comparison testing and binary isolation to test sections of your content individually to see if you can isolate the offending element.
    But my title is just test.indd.
    Even when there is just one image on the page I get the same error when trying to preview.
    I also tried to create a folio with the folio builder. The folio gets created but as soon as i try to import an article it says he is done, but the symbol in front of the article is still spinning as if it is not uploading it to the cloud.
    But this also happens when I try to do it offline.
    I have ran out of solutions to try. Can someone shed some light on this? Thanks.

    I get the same problem. The only thing that worked for me was to go to another computer and try it there... And then it works. Not great when you want to teach a class full of students how to do something and only half the class works.

  • Error: Failed to load script file; java.lang.ArrayIndexOutOfBound.Exception: 3184

    Script editor was working find when I last used it last week.  Tried to open a script today to make some changes and now I'm getting this error message.  I have uninstalled and re-installed editor, checked the compatibility mode and it wont open the script.  any ideas out there what the problem could be? need some trouble shooting help.
    Error:
    failed to load script file: java.lang.ArrayIndexOutOfBound.Expception: 3184
    Thanks
    Lora

    Hmmm....   I haven't seen that, but I can tell you what I would do if I were you.  This is kind of drastic, but the alternative may be a workstation reimage.
    Open the windows control panel, and open the add/remove programs snap in.
    Uninstall the CRS editor.
    Uninstall all the JRE instances you have.  They may be listed as something like Java (TM) update....   or they may appear as J2SE Runtime....   Check in the J's (it's alphabetical) and uninstall all of them.
    Reboot the machine.
    Download and reinstall Java 1.6.0.17   (This is what's running on my workstation right now, and it works with the editor).
    Reinstall the CRS editor
    Reboot the machine
    Try it and see if it behaves.  If it doesn't, you may need to rebuild the whole thing.

  • Error: Failed to load xml file

    Hi,
    I have a multiple project output using RobohHelp HTML 9. In the online help system,  when I search for certain terms, I encounter this message "Error: Failed to load xml file"
    could anyone let me know if you have encountered the same and how you dealt with this?

    Hi Jeff..i resolved the issue..
    Given that i use merged webhelp, I checked the output of multiple projects. One of the online outputs from one of the projects was having this problem. So I cleared the Webhelp output folder and regenerated this project. This was the fix.
    Now I encounter one more problem. When I search for information, the search bar shows 100% complete but the results would'nt show. Can you let me know if you have come across such a problem?

Maybe you are looking for

  • HT1338 Update to OS X 10.8.4 keeps showing in the App Store after reboot

    What do I do when I click "update" in the App Store for 10.8.4 and when the computer restarts, the update is still listed in the updates tab? The hard drive is still showing as 10.8.3. I have done this 5 or 6 times and every time I click the update b

  • Help me gather my rosebuds, Please!

    Okay, here's my problem... Had (have) an iMac G4 PPC, 2 external drives. Was so full, that I had audio render, video, capture scratch, and main file using all three. Bought a Macbook pro core 2 dual. During my transfer, some files for a particular pr

  • .jsp works in ROOT but not separate web

    I am very new to JSP but I am running the Java runtime on a Unix           REDHAT machine and I am using Apache Tomcat. I have the $TOMCAT_HOME           defined and the usual helloworld.jsp will run at           $TOMCAT_HOME/webapps/ROOT but not at

  • Archivelink Toolbox

    Dear All, We are in ECC 6. We have implemented SAP content Server and Archivelink to attach some documents to BUS2012. All work properly but I would like to change the display of the attachment list : from ME23N transaction, click on attachment butto

  • Strange Swing bug in Oracle's JDK7

    I have a strange bug with every java app i run with the Java 7 VM. Every frame is limited to a maximum width of 1024 pixels. Doesn't matter if you try to resize it by code or dragging the border with the mouse pointer. I have a Macbook with Mac OSX 1