Configuration of type4 drivers - NoClassDefFounException

I having problems configuiring mySQL type4 driver com.caucho.jdbc.mysql.Driver ...
NoClassDefFoundException is being thrown..
java.lang.NoClassDefFoundError: com/caucho/vfs/LogStream
at com.caucho.jdbc.mysql.Driver.<clinit>(Driver.java)
extracted the jar and set the classpath to the driver classes.
d:\java1.4\caucho.jar;d:\java1.4\com\caucho\jdbc\mysql\Driver.class;
here is my piece of code
try
     String sql=null;
     Driver driver=null;
     String lastErr;
     System.out.println("1");
     //String url ="jdbc:mysql-caucho://210.212.209.100:3306/db1&user=username&password=password";
     String url ="jdbc:mysql-caucho://210.212.209.100:3306/db1";
     driver = (Driver) Class.forName("com.caucho.jdbc.mysql.Driver").newInstance();
     System.out.println("2");
     try
          //Connection con = driver.connect(url, new Properties());
          Connection con = DriverManager.getConnection(url, "username", "password");
          System.out.println("3");
          int intc = 0;
          while(size != 0)
               try
                    // Code goes here
               catch (SQLException sqle){sqle.printStackTrace();}
               catch (FileNotFoundException fnfe){fnfe.printStackTrace();}
               catch (IOException ioe){ioe.printStackTrace();}
               catch (Exception e){e.printStackTrace();}
          }//end of while
     catch(SQLException ex){System.out.println(ex);lblmessage.setText(" Files not Uploaded ");}
catch(ClassNotFoundException cnfe){cnfe.printStackTrace();}
catch(InstantiationException ie){ie.printStackTrace();}
catch(IllegalAccessException iae){iae.printStackTrace();}
where i went wrong..pl help me
Thanks and regds
Gautam

d:\java1.4\caucho.jar;d:\java1.4\com\caucho\jdbc\mysql\Driver.classDon't know about the first part, but the second part is useless. If you extracted the jar to the java dir then the class path would be
d:\java1.4
This is because you set the classpath to the root of the package tree.

Similar Messages

  • How to configure oracle thin drivers for SUN APPLICATION SERVER

    hi all,
    I am working with EJB with oracle as back-end. I wants to know how to configure oracle thin drivers for the SUN APPLICATION SERVER. Please explain me breifly.
    Advanced thanks to all the replies.
    with regards,
    /kumaraswamy.n

    Kumaraswamy,
    Did you try searching the Internet? Here are the results of my Internet search:
    http://tinyurl.com/zo4gk
    And one of the first hits in the list was this:
    Deploying to a Sun Java System Application Server
    Good Luck,
    Avi.

  • Configuration of JDBC drivers for ocnnecting from BOE to Oracle

    HI all,
    I am trying to configure jbdc drivers in solaris for connecting BOE 3.1 sP2 to oracle 10g database.
    issue is not able to create connection in universe designer using jdbc drivers
    i couldnt get the exact info on this, please provide me the steps for connecting to oracle through jbdc drivers, Thanks,
    Thanks
    Ram

    I am now up and running.  Several tips were found on both Adobe and Oracle sites that were helpful. Here is a brief summary of the steps:
    Step 1, download* the Oracle Database11G release 2 Client for Microsoft Windows x64. (not the Instant Client). Follow the instructions provided on the download site. Select just the items you need from the custom install form.
    Step 2, add your datasources using the Oracle Net Configuration Assistant**.  Select Local Net Service Name Config. Follow the prompts, answer the questions.
    Step 3, add your datasources on Windows 2008 Server with Administrative Tools Datasources. Similar to step 2.
    Step 4, in CF10 Administrator set up your datasources. The first thing to do is set your Class Path to the location of the jdbc .jar files.  When you configured the Oracle installation you specified the location of the files. Go there and look for the\jdbc\lib folder. It contains the jar files for your drivers. Example:  C:\\Oracle\home\jdbc\lib\.  Now add your datasources. Select Other from the drivers drop-down list. This may be the tricky part. You will need the database information for connecting, such as host name, port, user, password, etc.  The connect url will look like: jdbc:oracle:thin@hostname:portnumber:servicename. Class: oracle.jdbc.OracleDriver  Name: whatever
    * download from:  oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    ** This utility should be selected as an item to install from step 1.

  • Configuring nvidia proprietary drivers in bumblebee

    I have arch linux 64bit and installed bumblebee and nvidia 302.17-1.
    How can I access settings of these drivers?
    I"m getting this error when I try it the usual way:
    #nvidia-settings
    You do not appear to be using the NVIDIA X driver. Please edit your X configuration file (just run `nvidia-xconfig` as root), and restart the X server.
    (even after running nvidia-xconfig as root)
    Last edited by ebshankar (2012-06-24 14:21:47)

    Durden wrote:
    Doesn't look like you have them installed. try:
    pacman -S nvidia
    and see if they are already installed correctly
    Its already installed
    Gusar wrote:Everything you want to run on the nvidia card needs to be started with optirun. This of course includes nvidia-settings.
    tried:
    #optirun nvidia-settings
    also, it gives the exact same error.

  • Configure ODBC on Linux

    I have ODBC drivers for Cache database for linux. My ODI 11g install is on linux (OEL 5). Is there a way to configure the ODBC drivers to connect to the database?
    Thanks

    I need help, in our project we have setup new solaris server and DBA said they have installed Oracle.
    SQLPLUS client is working fine, My question, I have asked my DBA tell me the path where the drivers are installed i.e. .so and I need ODBC.ini file to put my user credentials.
    so that i can use that data source in teradata programming. now the problem is he saying the drivers has been installed using mount and ask your application owner, he only cares oracle native drivers.
    please tell me how to solve this problem.
    I know thrid party odbc drivers would solve this issue, do not which company drivers i should ask.

  • Configuring Weblogic's jDriver for Oracle to use in distributed transactions

              Here is some errata to the instructions at "Configuring XA JDBC drivers" section of the online beta documentation:
              http://www.weblogic.com/docs60/adminguide/managetx.html#1041268
              The sample JDBC connection pool using Weblogic jDriver for Oracle should be:
              <JDBCConnectionPool
              Name="fundsXferAppPool"
              Targets="myserver"
              URL="jdbc:weblogic:oracle:localdb"
              DriverName="weblogic.jdbc.oci.xa.XADataSource"
              InitialCapacity="0"
              MaxCapacity="5"
              CapacityIncrement="1"
              Properties="user=scott;password=tiger;server=localdb;rmid=0"
              />
              <JDBCTxDataSource
              Name="fundsXferDataSource"
              Targets="myserver,server1"
              JNDIName="myapp.fundsXfer"
              PoolName="fundsXferAppPool"
              />
              Here is an example of an additional XA connection pool for a second database instance:
              <JDBCConnectionPool
              Name="fundsXferAppPool2"
              Targets="myserver"
              URL="jdbc:weblogic:oracle:localdb2"
              DriverName="weblogic.jdbc.oci.xa.XADataSource"
              InitialCapacity="0"
              MaxCapacity="5"
              CapacityIncrement="1"
              Properties="user=scott;password=tiger;server=localdb2;rmid=1"
              />
              <JDBCTxDataSource
              Name="fundsXferDataSource2"
              Targets="myserver,server1"
              JNDIName="myapp.fundsXfer2"
              PoolName="fundsXferAppPool2"
              />
              Please note the different "rmid" values for the 2 different database instances. Note also that the above sample only applies for Beta 1. Instructions may change in the future for Beta 2.
              Also, all the names of the data source properties shown in "Table 8-2 Data Source Properties for WebLogic jDriver for Oracle" should start with lower case.
              The Beta 1 online documentation will soon be updated to reflect the above. Our apologies for any inconvenience caused.
              -- Priscilla Fung, BEA Systems, Inc.
              

              Thanks
              Mark
              "Sree Bodapati" <[email protected]> wrote:
              >Hi Mark,
              >
              >Yes you need 8.1.6 DB Server or higher for WebLogic's jDriver for Oracle/XA
              >as well.
              >
              >/
              >sree
              >
              >
              >"Mark Cordobal" <[email protected]> wrote in message
              >news:[email protected]..
              >>
              >> I read that XA features require version Oracle8i release 8.1.6 or later
              >of
              >the Oracle
              >> server.
              >> Does this apply only to Oracle JDBC drivers (which implement 2pc on top
              >of
              >JAVA_XA
              >> package) or also to Weblogic's jDriver for Oracle/XA ?
              >> I mean, if I have two Oracle 8.06 (or however < 8.1.6) jdbc Resource
              >Manager, can
              >> I implement (wlserver 6.1sp2) a distributed xa transaction using
              >Weblogic's jDriver
              >> for Oracle/XA ?
              >> Or is it (jdriver) built also on top of JAVA_XA package, and so the db
              >server XA
              >> compliancy is a must ?
              >>
              >> Thanks in advance
              >>
              >> Mark
              >
              >
              

  • Orcle JDBC Drivers

    Hi,
    My aim is to write a simple Java program that connects to the
    Oracle Database and displays the data from a table. But I dont
    have any JDBC Drivers for oracle.
    So, I have downloaded the Orcle JDBC Drivers from the Oracle
    Site under the section below :
    Download the drivers NT
    Oracle8i 8.1.7 JDBC Drivers for use with JDK 1.2.x for NT.
    It is an Zip file which consists of so many files/directories..
    Where do I place all these files.
    And how do I create a Datasource which connects to the Oracle
    database and can be used in Java Program?
    Please help me in acheiving this simple task with detailed
    Instructions. ( I can achieve the above task using JDBC:ODBC
    Drivers, but now I want use the latest Drivers)
    Also where can I download the Type4 Drivers for Oracle?
    Thanks in Advance,
    Ram

    Just add the Classes12.zip to your Classpath settings.That is it.
    U unzip them and gets a folder called oracle. place this in ur
    web-inf\classes folder which is also there in classpath
    Here is a sample code code used based on JRUN and Oracle
    Conn.Poll. we have got 2 seperate DBases hence 2 DataSoruces
    package     com.tfl.db;
    import javax.sql.DataSource;
    import javax.naming.InitialContext;
    import javax.sql.ConnectionPoolDataSource;
    import oracle.jdbc.pool.OracleConnectionPoolDataSource;
    import oracle.jdbc.pool.OracleConnectionCacheImpl;
    import oracle.jdbc.pool.OracleConnectionEventListener;
    import java.sql.Connection;
    import java.sql.SQLException;
    import java.sql.ResultSet;
    import java.sql.ResultSetMetaData;
    import java.sql.Statement;
    import java.sql.CallableStatement;
    import java.util.StringTokenizer;
    import java.util.Vector;
    import javax.sql.ConnectionEventListener;
    import javax.activation.URLDataSource;
    import javax.sql.ConnectionEvent;
    public class DbBean     implements ConnectionEventListener
    //     private     javax.sql.PooledConnection          dbconn;     
         // for database connection
    //     private     javax.sql.PooledConnection          dbconn2;
              // for database connection
         Connection          dbconn;          // for database
    connection
         Connection          dbconn2;          // for
    database connection
         private     javax.sql.ConnectionPoolDataSource
         cpds=null;
         private     javax.sql.ConnectionPoolDataSource
         cpds2=null;
         private     OracleConnectionPoolDataSource     ocpds;
         private     OracleConnectionPoolDataSource     ocpds2;
         private     OracleConnectionCacheImpl     ocimpl;
         private     OracleConnectionCacheImpl     ocimpl2;
         java.sql.Connection con=null;
         java.sql.Connection con2=null;
         private Vector                    vector = null;
         ArrayMaker akr=null;
         DataFetcher df=null;
    InitialContext ctx=null;
         String mydb =null;
         String dbname=null;
         URLDataSource uds;
         public DbBean()
              super();
              ocpds=new OracleConnectionPoolDataSource();
              ocpds2=new OracleConnectionPoolDataSource();
              this.getAllConnReady();
         public void getAllConnReady()
              try{
                        ctx=new InitialContext();
              catch(Exception e)     {System.out.println
    ("DataSource Context failure ?? --- "+e);}     
              try{
              ocpds=(OracleConnectionPoolDataSource)ctx.lookup
    ("java:comp/env/jdbc/tfl_afs");
              ocpds2=(OracleConnectionPoolDataSource)ctx.lookup
    ("java:comp/env/jdbc/tfl_twh");
              System.out.println("JNDI Look up done ");
              ctx.close();
              } catch(Exception e){System.out.println
    ("DataSource Look up failure ?? --- "+e);}
              try{
                             ocimpl=new
    OracleConnectionCacheImpl(ocpds);
                             ocimpl2=new
    OracleConnectionCacheImpl(ocpds2);
                             ocimpl.setMinLimit(1);
                             ocimpl.setMaxLimit(20);
                             ocimpl.setCacheScheme
    (OracleConnectionCacheImpl.FIXED_WAIT_SCHEME);
                             ocimpl2.setMinLimit(1);
                             ocimpl2.setMaxLimit(20);
                             ocimpl2.setCacheScheme
    (OracleConnectionCacheImpl.FIXED_WAIT_SCHEME);
              } catch(Exception e){System.out.println
    ("DataSource Estb failed ?? --- "+e);}
              try{
              dbconn          = ocimpl.getConnection();
              dbconn2     = ocimpl2.getConnection();
              System.out.println("Pooled Connection Ready ");
              } catch(Exception e){System.out.println
    ("DataSource Estb failed ?? --- "+e);}
         public static void main(String a[])
              DbBean db = new DbBean();
         public ResultSet execSQL()
         Statement stmt= null;
         ResultSet rs =null;
                   try{
                        stmt= con.createStatement();
                        rs = stmt.executeQuery("Select
    usr_fname from auth_usr_personal where usr_sr_no>100 and
    usr_sr_no<150");
                        System.out.println("DB RS
    Ready to Return --- ");
                        return rs;
                   } catch(Exception e)
                   {System.out.println("DB  Execution
    Error  --- "+e);}
              return rs;
         public java.sql.Connection connect_Me_To(String dbname)     
              Connection con = null;
              this.dbname=dbname;
              try{
                             if
    (dbname.equalsIgnoreCase("afsweb"))
                                  try{     
                                  con=dbconn;
                                  if(con.isClosed
                   System.out.println("dbBean speaks--con
    is closed !--1--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn;
                   return con;
                                  catch(Exception
    e)
                   System.out.println("dbBean speaks--con
    is closed !--2--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn;
                   return con;
                             else
                             if
    (dbname.equalsIgnoreCase("twh"))
                             try{     
                                  con=dbconn2;
                                  if(con.isClosed
                   System.out.println("dbBean speaks--con
    is closed !--TWH-1--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn2;
                   return con;
                                  catch(Exception
    e)
                   System.out.println("dbBean speaks--con
    is closed !--TWH-2--make a new ");
                   ocpds=null;
                   ocpds2=null;
                   this.getAllConnReady();
                   con=dbconn2;
                   return con;
                   }catch (Exception exception)
                        System.out.println(" Exception
    while getting now Connection Remaking.." );     
                        ocpds=null;
                        ocpds2=null;
                        this.getAllConnReady();
                        connectAgain(dbname);
              return con;
    public void connectAgain(String dbname)
    System.out.println(" Exception while getting Conn now Re-
    establ.to--"+dbname );     
    connect_Me_To(dbname);
    public void connectionClosed(ConnectionEvent event)
                        System.out.println("It is a
    closed Connection..........Let us try again..........");
                        ocpds=null;
                        ocpds2=null;
                        this.getAllConnReady();
                        connectAgain(this.dbname);
    public void connectionErrorOccurred(ConnectionEvent event)
                        System.out.println("It is a
    closed Connection.Error Check with DBAs.............");
                        ocpds=null;
                        ocpds2=null;
                        this.getAllConnReady();
                        connectAgain(this.dbname);
    hope this helps

  • Toshiba VAP - Button Support - command line options configuration

    Hi,
    I need to configure Button Support Drivers for Portege Series Laptops as part of deploying Windows 7 x 64 bit Enterprise on the following models: Z830, Z930 and R930.
    I need to install Toshiba Value Added Package with only Flash Card option.
    What command line options are present to do this?
    I am looking to deploy this via SCCM.
    Thanks,

    That is a way to approach setup.exe in general, but the great Toshiba VAP doesn't provide you with such options that you can call out.
    I have tried several methods, but there seems to be no way to install Button Support / Flash Cards alone. I can not believe no one has installed TVAP in an enterprise?
    In an enterprise environment, you wouldn't necessarily give users access to encryption and password utilities, specific to laptop models. However, you need the app so the button support at least works, instead of providing the customer with a Laptop having non functional buttons!!
    Is there any thread that points to or can Toshiba support help enterprise customers to deploy TVAP?
    I have less hope, with the experience I have had with this app.

  • Configure an open vpn

    Hi,
    i'm new to Solaris and i dont know how to configure the vpn drivers. I have been in various sites like "how to " but they always refer to Linux .
    Where can i find such tips or even sample programs to make the right thing?
    I thank you all.

    Hi,
    Below is the link to the admin guide for the RV042.  Chapter 9 covers the configuration of site to site VPN’s and begins on page 123. 
    http://www.cisco.com/en/US/docs/routers/csbr/rv0xx/administration/guide/rv0xx_AG_78-19576.pdf
    If you need further assistance please feel free to contact Cisco Small Business for help in configuring and troubleshooting your VPN.
    Thank you,
    Jason Nickle

  • Nforce drivers, worth it?

    i have a linux box running on an nvidia e-7150 nForce 630i motherboard with an intel core quad.
    i use the nvidia display drivers and my own tweaks to xorg.conf to get video the way i want.  for sound, i use alsa and for ethernet i'm running the sky2 intel driver (i think).  i like to keep my system as free (as in speech) as possible, but i need that video driver.
    my question:
    is there any compelling reason(s) to download/install/configure the nforce drivers for the nvnet and nvsound modules? i've read most of the documentation about how nvsound needs oss but i could use alsa-oss emulation etc. but is it even worth the trouble?
    my system is performing flawlessly now but my card has 7.1 surround sound and optical out that i'm not using and i think the nforce drivers are the only way to utilize that, right?  i don't think the nvnet will give me any significant improvements but i'm wondering if anyone has experience with these drivers / this mobo and would like to offer some insight.
    thanks in advance.
    Last edited by brisbin33 (2008-08-25 19:36:17)

    thanks for the reply.  i've had issues in previous distros where playing multiple sound sources at once would kill sound in any program thereafter until a reboot.  at that time i didn't quite understand the whole alsa / oss / pulse audio interaction though.  my only real concern for trying out these drivers was breaking my system back into that situation because i was quite happy to find that problem didn't exist when i set up my alsa-only arch box.
    the idea of 7.1 surround sound enticed me; but i think you're right, "if it ain't broke don't fix it".
    PS: your homebrew vis workstation is sick

  • J2EE1.3.1 and sql200 type4 driver wont work.....

    J2EE1.3.1 dont support sql2000(type4) driver ??
    Any success with any one ???
    I tried to connect j2ee1.3.1 to sql2000(type4) drivers.
    I am using j2sdke1.4.1 on win2k os

    I honestly don't know. I don't really understand what exactly what the fixes are doing and why they're needed. I put the ms jdbc driver jars into system/lib under the j2ee install so I wouldn't have security problems like this. Why doesn't the section below take care of the driver jars?
    // Drivers and other system classes should be stored in this
    // code base.
    grant codeBase "file:${com.sun.enterprise.home}/lib/system/-" {
    permission java.security.AllPermission;
    Is is because the SocketPermission needed by the driver doesn't fall under java.security.AllPermission? If that's the case, why doesn't the cloudscape driver need it too? I may be wrong about this but doesn't it ultimately connect on a socket through rmi?
    Also, I've put this in instead on the "<<ALL FILES>>" line and it also works. Does this lock the secruity down better?
    permission java.io.FilePermission "${com.sun.enterprise.home}${/}lib${/}system${/}msutil.jar", "read";
    One more question. Does the added grant section appy to all code running under the j2ee server since it doesn't have a codeBase qualifier? If so, maybe it could be locked down better with a codeBase. I'm through experimenting for now, though, but will continue to watch this thread for new posts.
    Scott

  • J2EE1.3.1 dont support sql2000(type4) driver ??

    J2EE1.3.1 dont support sql2000(type4) driver ??
    Any success with any one ???
    I tried to connect j2ee1.3.1 to sql2000(type4) drivers.
    I am using j2sdke1.4.1 and os is win2k

    thanks for reply.....
    I am presently using clouscape without any problems....
    I have set classpath,default.properties and resource.properties properly and I have put the sql driver jar files in proper j2ee directory and made given the security permission in j2ee server.policy file.
    these r 2 lines I have added in default.properties
    jdbc.drivers=com.microsoft.jdbc.sqlserver.SQLServerDriver
    jdbc.datasources=jdbc/sqlserver|jdbc:microsoft:sqlserver://MR_T:1433;user=sa;password=sa;databasename=pubs
    these r lines added in resource.properties
    jdbcDataSource.5.name=jdbc/sqlserver
    jdbcDataSource.5.url=jdbc\:microsoft\:sqlserver\://MR_T\:1433;user\=sa;password\=sa;databasename\=pubs
    jdbcDriver.1.name=com.microsoft.jdbc.sqlserver.SQLServerDriver
    When i tried with simple java application with sql2000 type4 driver it works fine.
    I can see sql driver binding when I start j2ee server....finally I getting the following exception ....if I use sql2000 driver(type4)
    this is error which I am getting.........
    javax.ejb.CreateException: [Microsoft][SQLServer 2000 Driver for JDBC][SQLServer]Login failed for user '(null)'. Reason: Not associated with a trusted SQL Server connection.
         at EJBBean.ejbCreate(Unknown Source)
         at EJBBean_RemoteHomeImpl.create(EJBBean_RemoteHomeImpl.java:22)
         at EJBBeanRemoteHomeImpl_Tie._invoke(Unknown Source)
         at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatchToServant(GenericPOAServerSC.java:520)
         at com.sun.corba.ee.internal.POA.GenericPOAServerSC.internalDispatch(GenericPOAServerSC.java:210)
         at com.sun.corba.ee.internal.POA.GenericPOAServerSC.dispatch(GenericPOAServerSC.java:112)
         at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:255)
         at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProcessor.java:84)
         at com.sun.corba.ee.internal.orbutil.ThreadPool$PooledThread.run(ThreadPool.java:99)
    If u have any idea
    waiting for ur reply.........eagrly
    thanks

  • [solved] Xorg 1.8.1 + FGLRX Mouse and keyboard don't work...

    Beginning this week i installed Arch linux for the first time (several times infact) and i followed the installtion guide to get gnome working on my machine...
    pacman -Sy
    pacman -S xorg
    pacman -S gnome gnome-system-tools gnome-extra gdm gksu
    I also added the "fuse usblp"  and " fam hal" entries to /etc/rc.conf in their respective sections as decribed there.
    When i would reboot and type gdm the system would start up and i could configure everything else, but after reinstalling this morning this no longer works because the xorg got upgraded to a new version.
    When i type gdm or startx in complains that "vesa" has no modes, so i installed and configure the fglrx drivers from the pacman source.
    Now comes the actual problem, when i now type gdm or startx i get the graphical enviroment but my keyboard and mouse do not work and the computer is frozen.
    I tried going to a diffirent tty but it won't take those commands either.
    Does anyone have any idea what the problem could be ? i do not understand what is wrong....
    The Solution - Because the vesa driver didn't work i installed fglrx and i deleted this folder called /etc/X11/xorg.conf.d as i had never seen it before and figured that  i didn't need it if xorg.conf was present.
    Leaving the folder intact solved the problem
    it was a noobish mistake from a beginner, sorry folks
    Last edited by Dennis Beekman (2010-06-21 10:17:04)

    Beginning this week i installed Arch linux for the first time (several times infact) and i followed the installtion guide to get gnome working on my machine...
    pacman -Sy
    pacman -S xorg
    pacman -S gnome gnome-system-tools gnome-extra gdm gksu
    I also added the "fuse usblp"  and " fam hal" entries to /etc/rc.conf in their respective sections as decribed there.
    When i would reboot and type gdm the system would start up and i could configure everything else, but after reinstalling this morning this no longer works because the xorg got upgraded to a new version.
    When i type gdm or startx in complains that "vesa" has no modes, so i installed and configure the fglrx drivers from the pacman source.
    Now comes the actual problem, when i now type gdm or startx i get the graphical enviroment but my keyboard and mouse do not work and the computer is frozen.
    I tried going to a diffirent tty but it won't take those commands either.
    Does anyone have any idea what the problem could be ? i do not understand what is wrong....
    The Solution - Because the vesa driver didn't work i installed fglrx and i deleted this folder called /etc/X11/xorg.conf.d as i had never seen it before and figured that  i didn't need it if xorg.conf was present.
    Leaving the folder intact solved the problem
    it was a noobish mistake from a beginner, sorry folks
    Last edited by Dennis Beekman (2010-06-21 10:17:04)

  • I can't use shared folders feature in VMware

    Arch Linux is the guest system. Windows 7 is the host OS. I'm using VMware Workstation 10.0.1. After installing vmware tools (the original ones) I can't mount my shared folder. It says
    ~ mount -t vmhgfs .host:/ /mnt
    Error: cannot mount filesystem: No such device
    I've already searched the forum but I didn't find any solution to my problem.
    [Update]
    I think that it has something to do with the fact that vmware module sources are not compatible with the new UID and GID types:
    uid_t -> kuid_t
    gid_t -> kgid_t
    I admit that I have no idea about patching sources. I've found this thread. It helped me with patching the vmhgfs module. Unfortunately the vmci module is still failing to compile because it's not patched yet. I have no idea how to fix this problem.
    [Workaround]
    Well I gave up. I've chosen the easiest way - Samba.
    Additional information:
    ~ lsmod |grep -i vm
    kvm_intel 134316 0
    kvm 419974 1 kvm_intel
    vmw_balloon 6258 0
    vmwgfx 167331 2
    ttm 66913 1 vmwgfx
    vmw_vmci 53487 0
    drm 242043 3 ttm,vmwgfx
    ~ vmware-hgfsclient
    E
    ~ vmware-config-tools.pl
    Initializing...
    Making sure services for VMware Tools are stopped.
    Stopping Thinprint services in the virtual machine:
    Stopping Virtual Printing daemon: done
    Stopping VMware Tools services in the virtual machine:
    Guest operating system daemon: done
    Unmounting HGFS shares: done
    Guest filesystem driver: done
    sh: : command not found
    sh: : command not found
    Before you can compile modules, you need to have the following installed...
    make
    gcc
    kernel headers of the running kernel
    Searching for GCC...
    Detected GCC binary at "/bin/gcc".
    The path "/bin/gcc" appears to be a valid path to the gcc binary.
    Would you like to change it? [no]
    Searching for a valid kernel header path...
    Detected the kernel headers at "/lib/modules/3.14.3-2-ARCH/build/include".
    The path "/lib/modules/3.14.3-2-ARCH/build/include" appears to be a valid path
    to the 3.14.3-2-ARCH kernel headers.
    Would you like to change it? [no]
    make: Entering directory '/tmp/modconfig-jMh2Db/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.14.3-2-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/lib/modules/3.14.3-2-ARCH/build'
    CC [M] /tmp/modconfig-jMh2Db/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-jMh2Db/vmci-only/linux/driver.o
    In file included from /tmp/modconfig-jMh2Db/vmci-only/linux/vmciKernelIf.c:57:0:
    /tmp/modconfig-jMh2Db/vmci-only/./shared/vm_assert.h:259:0: warning: "DEPRECATED" redefined
    #define DEPRECATED(_fix) do {} while (0)
    ^
    In file included from include/linux/kernel.h:13:0,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/percpu.h:44,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/preempt.h:5,
    from include/linux/preempt.h:18,
    from include/linux/spinlock.h:50,
    from include/linux/mmzone.h:7,
    from include/linux/gfp.h:5,
    from include/linux/mm.h:9,
    from /tmp/modconfig-jMh2Db/vmci-only/linux/vmciKernelIf.c:38:
    include/linux/printk.h:96:0: note: this is the location of the previous definition
    #define DEPRECATED "[Deprecated]: "
    ^
    In file included from /tmp/modconfig-jMh2Db/vmci-only/./shared/vmware.h:39:0,
    from /tmp/modconfig-jMh2Db/vmci-only/linux/driver.c:62:
    /tmp/modconfig-jMh2Db/vmci-only/./shared/vm_assert.h:259:0: warning: "DEPRECATED" redefined
    #define DEPRECATED(_fix) do {} while (0)
    ^
    In file included from include/linux/kernel.h:13:0,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/percpu.h:44,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/current.h:5,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/processor.h:15,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/atomic.h:6,
    from /tmp/modconfig-jMh2Db/vmci-only/linux/driver.c:24:
    include/linux/printk.h:96:0: note: this is the location of the previous definition
    #define DEPRECATED "[Deprecated]: "
    ^
    /tmp/modconfig-jMh2Db/vmci-only/linux/driver.c: In function ‘LinuxDriver_Ioctl’:
    /tmp/modconfig-jMh2Db/vmci-only/linux/driver.c:740:12: error: incompatible types when assigning to type ‘VMCIHostUser’ from type ‘kuid_t’
    user = current_uid();
    ^
    scripts/Makefile.build:308: recipe for target '/tmp/modconfig-jMh2Db/vmci-only/linux/driver.o' failed
    make[2]: *** [/tmp/modconfig-jMh2Db/vmci-only/linux/driver.o] Error 1
    make[2]: *** Waiting for unfinished jobs....
    Makefile:1274: recipe for target '_module_/tmp/modconfig-jMh2Db/vmci-only' failed
    make[1]: *** [_module_/tmp/modconfig-jMh2Db/vmci-only] Error 2
    make[1]: Leaving directory '/usr/lib/modules/3.14.3-2-ARCH/build'
    Makefile:130: recipe for target 'vmci.ko' failed
    make: *** [vmci.ko] Error 2
    make: Leaving directory '/tmp/modconfig-jMh2Db/vmci-only'
    The communication service is used in addition to the standard communication
    between the guest and the host. The rest of the software provided by VMware
    Tools is designed to work independently of this feature.
    If you wish to have the VMCI feature, you can install the driver by running
    vmware-config-tools.pl again after making sure that gcc, binutils, make and the
    kernel sources for your running kernel are installed on your machine. These
    packages are available on your distribution's installation CD.
    [ Press Enter key to continue ]
    make: Entering directory '/tmp/modconfig-paCEZs/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.14.3-2-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/lib/modules/3.14.3-2-ARCH/build'
    CC [M] /tmp/modconfig-paCEZs/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-paCEZs/vmci-only/linux/driver.o
    In file included from /tmp/modconfig-paCEZs/vmci-only/./shared/vmware.h:39:0,
    from /tmp/modconfig-paCEZs/vmci-only/linux/driver.c:62:
    /tmp/modconfig-paCEZs/vmci-only/./shared/vm_assert.h:259:0: warning: "DEPRECATED" redefined
    #define DEPRECATED(_fix) do {} while (0)
    ^
    In file included from include/linux/kernel.h:13:0,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/percpu.h:44,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/current.h:5,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/processor.h:15,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/atomic.h:6,
    from /tmp/modconfig-paCEZs/vmci-only/linux/driver.c:24:
    include/linux/printk.h:96:0: note: this is the location of the previous definition
    #define DEPRECATED "[Deprecated]: "
    ^
    In file included from /tmp/modconfig-paCEZs/vmci-only/linux/vmciKernelIf.c:57:0:
    /tmp/modconfig-paCEZs/vmci-only/./shared/vm_assert.h:259:0: warning: "DEPRECATED" redefined
    #define DEPRECATED(_fix) do {} while (0)
    ^
    In file included from include/linux/kernel.h:13:0,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/percpu.h:44,
    from /usr/lib/modules/3.14.3-2-ARCH/build/arch/x86/include/asm/preempt.h:5,
    from include/linux/preempt.h:18,
    from include/linux/spinlock.h:50,
    from include/linux/mmzone.h:7,
    from include/linux/gfp.h:5,
    from include/linux/mm.h:9,
    from /tmp/modconfig-paCEZs/vmci-only/linux/vmciKernelIf.c:38:
    include/linux/printk.h:96:0: note: this is the location of the previous definition
    #define DEPRECATED "[Deprecated]: "
    ^
    /tmp/modconfig-paCEZs/vmci-only/linux/driver.c: In function ‘LinuxDriver_Ioctl’:
    /tmp/modconfig-paCEZs/vmci-only/linux/driver.c:740:12: error: incompatible types when assigning to type ‘VMCIHostUser’ from type ‘kuid_t’
    user = current_uid();
    ^
    scripts/Makefile.build:308: recipe for target '/tmp/modconfig-paCEZs/vmci-only/linux/driver.o' failed
    make[2]: *** [/tmp/modconfig-paCEZs/vmci-only/linux/driver.o] Error 1
    make[2]: *** Waiting for unfinished jobs....
    Makefile:1274: recipe for target '_module_/tmp/modconfig-paCEZs/vmci-only' failed
    make[1]: *** [_module_/tmp/modconfig-paCEZs/vmci-only] Error 2
    make[1]: Leaving directory '/usr/lib/modules/3.14.3-2-ARCH/build'
    Makefile:130: recipe for target 'vmci.ko' failed
    make: *** [vmci.ko] Error 2
    make: Leaving directory '/tmp/modconfig-paCEZs/vmci-only'
    The VM communication interface socket family is used in conjunction with the VM
    communication interface to provide a new communication path among guests and
    host. The rest of this software provided by VMware Tools is designed to work
    independently of this feature. If you wish to have the VSOCK feature you can
    install the driver by running vmware-config-tools.pl again after making sure
    that gcc, binutils, make and the kernel sources for your running kernel are
    installed on your machine. These packages are available on your distribution's
    installation CD.
    [ Press the Enter key to continue.]
    The module vmxnet3 from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The module pvscsi from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The module vmmemctl from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The VMware Host-Guest Filesystem allows for shared folders between the host OS
    and the guest OS in a Fusion or Workstation virtual environment. Do you wish
    to enable this feature? [yes]
    The vmxnet driver is no longer supported on kernels 3.3 and greater. Please
    upgrade to a newer virtual NIC. (e.g., vmxnet3 or e1000e)
    The vmblock enables dragging or copying files between host and guest in a
    Fusion or Workstation virtual environment. Do you wish to enable this feature?
    [yes]
    NOTICE: It appears your system does not have the required fuse packages
    installed. The VMware blocking filesystem requires the fuse packages and its
    libraries to function properly. Please install the fuse or fuse-utils package
    using your systems package management utility and re-run this script in order
    to enable the VMware blocking filesystem.
    VMware automatic kernel modules enables automatic building and installation of
    VMware kernel modules at boot that are not already present. This feature can be
    enabled/disabled by re-running vmware-config-tools.pl.
    Would you like to enable VMware automatic kernel modules?
    [no]
    Detected X server version 1.15.1
    Distribution provided drivers for Xorg X server are used.
    Skipping X configuration because X drivers are not included.
    Warning: This script could not find mkinitrd or update-initramfs and cannot
    remake the initrd file!
    Starting Virtual Printing daemon: done
    Checking acpi hot plug done
    Starting VMware Tools services in the virtual machine:
    Switching to guest configuration: done
    Guest operating system daemon: done
    The configuration of VMware Tools 9.6.1 build-1378637 for Linux for this
    running kernel completed successfully.
    You must restart your X session before any mouse or graphics changes take
    effect.
    You can now run VMware Tools by invoking "/usr/bin/vmware-toolbox-cmd" from the
    command line.
    To enable advanced X features (e.g., guest resolution fit, drag and drop, and
    file and text copy/paste), you will need to do one (or more) of the following:
    1. Manually start /usr/bin/vmware-user
    2. Log out and log back into your desktop session; and,
    3. Restart your X session.
    Enjoy,
    --the VMware team
    Last edited by Skitter (2014-05-14 16:51:50)

    Hi.
    I managed to compile open-vm-tools and the kernel module against 3.14.5 kernel.  Here is the tarball with the all the files.
    I still have an issue : With vmware-player 6.0.2, I can't acces my shared folder :
    root@P146S011b ~ # lsmod | grep hgfs
    vmhgfs 41622 0
    vmw_vmci 47960 2 vmw_vsock_vmci_transport,vmhgfs
    root@P146S011b ~ # vmware-hgfsclient
    R
    D
    C
    root@P146S011b ~ # mount -t vmhgfs .host:/R /mnt
    Could not add entry to mtab, continuing
    root@P146S011b ~ # tail -1 /etc/mtab
    .host:/R /mnt vmhgfs rw,relatime 0 0
    root@P146S011b ~ # cd /mnt
    cd:cd:6: not a directory: /mnt
    1 root@P146S011b ~ #
    Forgot to add an install file with a depmod -a inside. You will have to run it by yourself

  • Open-vm-tools/official vmware tools not installing.

    I'm trying to install the latest offical vmware tools (16/9/2013) and open-vm-tools but both seem to always fail. I tried some of the patches listed on the wiki, but nothing got me anywhere. The big thing I'm trying to accomplish is to be able to use vmhgfs but, I'd like to have all the tools if possible. Here is what I did.
    Open Vm Tools
    #[root@localhost] - [14-01-01 18:09:33] - [/home/toxicarrow/Documents/firewall] - [R:0]
    pacman -S open-vm-tools open-vm-tools-dkms
    resolving dependencies...
    looking for inter-conflicts...
    Packages (2): open-vm-tools-5:2013.09.16-5 open-vm-tools-dkms-5:2013.09.16-5
    Total Installed Size: 8.21 MiB
    :: Proceed with installation? [Y/n]
    (2/2) checking keys in keyring [#####################################################################################################################] 100%
    (2/2) checking package integrity [#####################################################################################################################] 100%
    (2/2) loading package files [#####################################################################################################################] 100%
    (2/2) checking for file conflicts [#####################################################################################################################] 100%
    (2/2) checking available disk space [#####################################################################################################################] 100%
    (1/2) installing open-vm-tools [#####################################################################################################################] 100%
    >>>
    >>> You can mount VMware Shared Folders via:
    >>> mount -t vmhgfs .host:/ /mnt/hgfs
    >>>
    >>> or by adding this line to /etc/fstab:
    >>> .host:/ /mnt/hgfs vmhgfs defaults 0 0
    >>>
    Optional dependencies for open-vm-tools
    gtkmm [installed]
    libnotify [installed]
    libxtst [installed]
    fuse [installed]
    libsm [installed]
    open-vm-tools-modules: for linux kernel
    open-vm-tools-dkms: for linux-lts and other kernels [pending]
    netctl: suspend-resume network state [installed]
    networkmanager: suspend-resume network state
    (2/2) installing open-vm-tools-dkms [#####################################################################################################################] 100%
    >>> Enable building of open-vm-tools modules:
    >>> $ dkms add open-vm-tools/2013.09.16
    >>>
    >>> Enabling vmxnet driver in /usr/lib/modprobe.d/open-vm-tools-modules.conf
    >>> (this will disable pcnet32 driver)
    >>>
    >>> If vmxnet driver doesn't handle your NIC, you have to manually
    >>> disable loading of pcnet32 driver
    >>>
    #[root@localhost] - [14-01-01 18:09:47] - [/home/toxicarrow/Documents/firewall] - [R:0]
    pacman -S open-vm-tools-modules
    warning: open-vm-tools-dkms-5:2013.09.16-5 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Packages (1): open-vm-tools-dkms-5:2013.09.16-5
    Total Installed Size: 5.57 MiB
    Net Upgrade Size: 0.00 MiB
    :: Proceed with installation? [Y/n]
    (1/1) checking keys in keyring [#####################################################################################################################] 100%
    (1/1) checking package integrity [#####################################################################################################################] 100%
    (1/1) loading package files [#####################################################################################################################] 100%
    (1/1) checking for file conflicts [#####################################################################################################################] 100%
    (1/1) checking available disk space [#####################################################################################################################] 100%
    (1/1) reinstalling open-vm-tools-dkms [#####################################################################################################################] 100%
    >>> Enable building of open-vm-tools modules:
    >>> $ dkms add open-vm-tools/2013.09.16
    >>>
    #[root@localhost] - [14-01-01 18:10:14] - [/home/toxicarrow/Documents/firewall] - [R:0]
    dkms install -m open-vm-tools -v 2013.04.16 -k $(uname -r)
    Error! Could not find module source directory.
    Directory: /usr/src/open-vm-tools-2013.04.16 does not exist.
    #[root@localhost] - [14-01-01 18:13:14] - [/home/toxicarrow/Documents/firewall] - [R:2]
    dkms install -m open-vm-tools -v 2013.09.16 -k $(uname -r)
    Kernel preparation unnecessary for this kernel. Skipping...
    Building module:
    cleaning build area....
    make KERNELRELEASE=3.12.6-1-ARCH VM_UNAME=3.12.6-1-ARCH MODULEBUILDDIR=/var/lib/dkms/open-vm-tools/2013.09.16/build -C vmblock; make VM_UNAME=3.12.6-1-ARCH MODULEBUILDDIR=/var/lib/dkms/open-vm-tools/2013.09.16/build -C vmci; make VM_UNAME=3.12.6-1-ARCH MODULEBUILDDIR=/var/lib/dkms/open-vm-tools/2013.09.16/build -C vmhgfs; make VM_UNAME=3.12.6-1-ARCH MODULEBUILDDIR=/var/lib/dkms/open-vm-tools/2013.09.16/build -C vmsync; make VM_UNAME=3.12.6-1-ARCH MODULEBUILDDIR=/var/lib/dkms/open-vm-tools/2013.09.16/build -C vmxnet; make VM_UNAME=3.12.6-1-ARCH MODULEBUILDDIR=/var/lib/dkms/open-vm-tools/2013.09.16/build -C vsock........
    Error! Build of vmblock.ko failed for: 3.12.6-1-ARCH (x86_64)
    Consult the make.log in the build directory
    /var/lib/dkms/open-vm-tools/2013.09.16/build/ for more information.
    #[root@localhost] - [14-01-01 18:13:45] - [/home/toxicarrow/Documents/firewall] - [R:7]
    Official Tools
    Before patches
    #[root@localhost] - [14-01-02 2:40:49] - [/home/toxicarrow/vmware/vmware-tools-distrib] - [R:32]
    ./vmware-install.pl
    A previous installation of VMware Tools has been detected.
    The previous installation was made by the tar installer (version 4).
    Keeping the tar4 installer database format.
    You have a version of VMware Tools installed. Continuing this install will
    first uninstall the currently installed version. Do you wish to continue?
    (yes/no) [yes]
    Uninstalling the tar installation of VMware Tools.
    Stopping services for VMware Tools
    Stopping VMware Tools services in the virtual machine:
    Guest operating system daemon: done
    Unmounting HGFS shares: done
    Guest filesystem driver: done
    VM communication interface socket family: done
    VM communication interface: done
    Stopping Thinprint services in the virtual machine:
    Stopping Virtual Printing daemon: done
    The removal of VMware Tools 9.6.1 build-1378637 for Linux completed
    successfully.
    Installing VMware Tools.
    In which directory do you want to install the binary files?
    [/usr/bin]
    What is the directory that contains the init directories (rc0.d/ to rc6.d/)?
    [/etc/init.d]
    What is the directory that contains the init scripts?
    [/etc/init.d]
    In which directory do you want to install the daemon files?
    [/usr/sbin]
    In which directory do you want to install the library files?
    [/usr/lib/vmware-tools]
    The path "/usr/lib/vmware-tools" does not exist currently. This program is
    going to create it, including needed parent directories. Is this what you want?
    [yes]
    In which directory do you want to install the documentation files?
    [/usr/share/doc/vmware-tools]
    The path "/usr/share/doc/vmware-tools" does not exist currently. This program
    is going to create it, including needed parent directories. Is this what you
    want? [yes]
    The installation of VMware Tools 9.6.1 build-1378637 for Linux completed
    successfully. You can decide to remove this software from your system at any
    time by invoking the following command: "/usr/bin/vmware-uninstall-tools.pl".
    Before running VMware Tools for the first time, you need to configure it by
    invoking the following command: "/usr/bin/vmware-config-tools.pl". Do you want
    this program to invoke the command for you now? [yes]
    Initializing...
    Making sure services for VMware Tools are stopped.
    Stopping VMware Tools services in the virtual machine:
    Guest operating system daemon: done
    Unmounting HGFS shares: done
    Guest filesystem driver: done
    VM communication interface socket family: done
    VM communication interface: done
    Stopping Thinprint services in the virtual machine:
    Stopping Virtual Printing daemon: done
    sh: : command not found
    sh: : command not found
    Before you can compile modules, you need to have the following installed...
    make
    gcc
    kernel headers of the running kernel
    Searching for GCC...
    Detected GCC binary at "/bin/gcc".
    The path "/bin/gcc" appears to be a valid path to the gcc binary.
    Would you like to change it? [no]
    Searching for a valid kernel header path...
    Detected the kernel headers at "/lib/modules/3.12.6-1-ARCH/build/include".
    The path "/lib/modules/3.12.6-1-ARCH/build/include" appears to be a valid path
    to the 3.12.6-1-ARCH kernel headers.
    Would you like to change it? [no]
    make: Entering directory '/tmp/modconfig-lyoMIO/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/linux/driver.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciDriver.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciResource.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciRoute.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciContext.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciDatagram.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciHashtable.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciEvent.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciQueuePair.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciQPair.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/common/vmciDoorbell.o
    CC [M] /tmp/modconfig-lyoMIO/vmci-only/driverLog.o
    LD [M] /tmp/modconfig-lyoMIO/vmci-only/vmci.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-lyoMIO/vmci-only/vmci.mod.o
    LD [M] /tmp/modconfig-lyoMIO/vmci-only/vmci.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-lyoMIO/vmci-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-lyoMIO/vmci-only'
    cp -f vmci.ko ./../vmci.o
    make: Leaving directory '/tmp/modconfig-lyoMIO/vmci-only'
    make: Entering directory '/tmp/modconfig-VlEWPD/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/linux/driver.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciDriver.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciResource.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciRoute.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciContext.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciDatagram.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciHashtable.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciEvent.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciQueuePair.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciQPair.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/common/vmciDoorbell.o
    CC [M] /tmp/modconfig-VlEWPD/vmci-only/driverLog.o
    LD [M] /tmp/modconfig-VlEWPD/vmci-only/vmci.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-VlEWPD/vmci-only/vmci.mod.o
    LD [M] /tmp/modconfig-VlEWPD/vmci-only/vmci.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-VlEWPD/vmci-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-VlEWPD/vmci-only'
    cp -f vmci.ko ./../vmci.o
    make: Leaving directory '/tmp/modconfig-VlEWPD/vmci-only'
    make: Entering directory '/tmp/modconfig-VlEWPD/vsock-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-VlEWPD/vsock-only/linux/af_vsock.o
    CC [M] /tmp/modconfig-VlEWPD/vsock-only/linux/vsockAddr.o
    CC [M] /tmp/modconfig-VlEWPD/vsock-only/linux/notifyQState.o
    CC [M] /tmp/modconfig-VlEWPD/vsock-only/linux/util.o
    CC [M] /tmp/modconfig-VlEWPD/vsock-only/linux/stats.o
    CC [M] /tmp/modconfig-VlEWPD/vsock-only/linux/notify.o
    CC [M] /tmp/modconfig-VlEWPD/vsock-only/driverLog.o
    LD [M] /tmp/modconfig-VlEWPD/vsock-only/vsock.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-VlEWPD/vsock-only/vsock.mod.o
    LD [M] /tmp/modconfig-VlEWPD/vsock-only/vsock.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-VlEWPD/vsock-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-VlEWPD/vsock-only'
    cp -f vsock.ko ./../vsock.o
    make: Leaving directory '/tmp/modconfig-VlEWPD/vsock-only'
    The module vmxnet3 from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The module pvscsi from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The module vmmemctl from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The VMware Host-Guest Filesystem allows for shared folders between the host OS
    and the guest OS in a Fusion or Workstation virtual environment. Do you wish
    to enable this feature? [yes]
    make: Entering directory '/tmp/modconfig-C1YUSD/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/linux/driver.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciDriver.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciResource.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciRoute.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciContext.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciDatagram.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciHashtable.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciEvent.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciQueuePair.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciQPair.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/common/vmciDoorbell.o
    CC [M] /tmp/modconfig-C1YUSD/vmci-only/driverLog.o
    LD [M] /tmp/modconfig-C1YUSD/vmci-only/vmci.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-C1YUSD/vmci-only/vmci.mod.o
    LD [M] /tmp/modconfig-C1YUSD/vmci-only/vmci.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-C1YUSD/vmci-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-C1YUSD/vmci-only'
    cp -f vmci.ko ./../vmci.o
    make: Leaving directory '/tmp/modconfig-C1YUSD/vmci-only'
    make: Entering directory '/tmp/modconfig-C1YUSD/vmhgfs-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/message.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/rpcout.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/hgfsUtil.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/cpName.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/request.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/stubs.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/link.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/bdhandler.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/transport.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/module.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/file.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/super.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/vmci.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/dir.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/fsutil.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/cpNameLinux.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/hgfsBd.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/filesystem.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/page.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/backdoorGcc64.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/backdoor.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/hgfsEscape.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/inode.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/dentry.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/cpNameLite.o
    CC [M] /tmp/modconfig-C1YUSD/vmhgfs-only/kernelStubsLinux.o
    LD [M] /tmp/modconfig-C1YUSD/vmhgfs-only/vmhgfs.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-C1YUSD/vmhgfs-only/vmhgfs.mod.o
    LD [M] /tmp/modconfig-C1YUSD/vmhgfs-only/vmhgfs.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-C1YUSD/vmhgfs-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-C1YUSD/vmhgfs-only'
    cp -f vmhgfs.ko ./../vmhgfs.o
    make: Leaving directory '/tmp/modconfig-C1YUSD/vmhgfs-only'
    The vmxnet driver is no longer supported on kernels 3.3 and greater. Please
    upgrade to a newer virtual NIC. (e.g., vmxnet3 or e1000e)
    The vmblock enables dragging or copying files between host and guest in a
    Fusion or Workstation virtual environment. Do you wish to enable this feature?
    [yes]
    NOTICE: It appears your system does not have the required fuse packages
    installed. The VMware blocking filesystem requires the fuse packages and its
    libraries to function properly. Please install the fuse or fuse-utils package
    using your systems package management utility and re-run this script in order
    to enable the VMware blocking filesystem.
    VMware automatic kernel modules enables automatic building and installation of
    VMware kernel modules at boot that are not already present. This feature can be
    enabled/disabled by re-running vmware-config-tools.pl.
    Would you like to enable VMware automatic kernel modules?
    [no]
    Detected X server version 1.14.5
    Distribution provided drivers for Xorg X server are used.
    Skipping X configuration because X drivers are not included.
    Warning: This script could not find mkinitrd or update-initramfs and cannot
    remake the initrd file!
    Checking acpi hot plug done
    Starting VMware Tools services in the virtual machine:
    Switching to guest configuration: done
    VM communication interface: done
    VM communication interface socket family: failed
    Guest filesystem driver: failed
    Mounting HGFS shares: failed
    VMware User Agent: done
    Guest operating system daemon: done
    Unable to start services for VMware Tools
    Execution aborted.
    After patches
    #[root@localhost] - [14-01-02 2:44:39] - [/home/toxicarrow/vmware] - [R:0]
    git clone https://github.com/rasa/vmware-tools-patches.git
    Cloning into 'vmware-tools-patches'...
    remote: Reusing existing pack: 134, done.
    remote: Total 134 (delta 0), reused 0 (delta 0)
    Receiving objects: 100% (134/134), 22.06 KiB | 0 bytes/s, done.
    Resolving deltas: 100% (74/74), done.
    Checking connectivity... done.
    #[root@localhost] - [14-01-02 2:44:55] - [/home/toxicarrow/vmware] - [R:0]
    ls
    = VMwareTools-9.6.1-1378637.tar.gz manifest.txt* run_upgrader.sh vmware-tools-distrib/ vmware-tools-patches/ vmware-tools-upgrader-32* vmware-tools-upgrader-64*
    #[root@localhost] - [14-01-02 2:44:57] - [/home/toxicarrow/vmware] - [R:0]
    cp VMwareTools-9.6.1-1378637.tar.gz vmware-tools-patches
    #[root@localhost] - [14-01-02 2:45:13] - [/home/toxicarrow/vmware] - [R:0]
    cd vmware-tools-patches
    #[root@localhost] - [14-01-02 2:45:17] - [/home/toxicarrow/vmware/vmware-tools-patches] - [R:0]
    ls
    LICENSE VMwareTools-9.6.1-1378637.tar.gz patch-module.sh* patches/ untar-and-patch-and-compile.sh*
    README.md download-patches.sh* patch-modules.sh* untar-all-and-patch.sh* untar-and-patch.sh*
    #[root@localhost] - [14-01-02 2:45:18] - [/home/toxicarrow/vmware/vmware-tools-patches] - [R:0]
    ./untar-and-patch-and-compile.sh
    === Patching ./VMwareTools-9.6.1-1378637.tar.gz ...
    --- Applying vmci/vmware9.k3.8rc4.patch ...
    patching file linux/driver.c
    Hunk #1 FAILED at 124.
    Hunk #2 FAILED at 1750.
    Hunk #3 FAILED at 1978.
    3 out of 3 hunks FAILED -- saving rejects to file linux/driver.c.rej
    --- Applying vmhgfs/vmhgfs-uid-gid-kernel-3.12-tools-9.6.1.patch ...
    patching file file.c
    patching file filesystem.c
    patching file fsutil.c
    patching file inode.c
    Hunk #1 succeeded at 514 (offset -3 lines).
    Hunk #2 succeeded at 617 (offset -3 lines).
    Hunk #3 succeeded at 1216 (offset -3 lines).
    patching file shared/compat_cred.h
    --- Applying vmhgfs/vmhgfs-d_count-kernel-3.11-tools-9.6.0.patch ...
    patching file inode.c
    Hunk #1 succeeded at 31 with fuzz 1.
    Hunk #2 FAILED at 1893.
    Hunk #3 FAILED at 1946.
    2 out of 3 hunks FAILED -- saving rejects to file inode.c.rej
    --- Applying vmhgfs/vmware9.compat_mm.patch ...
    patching file shared/compat_mm.h
    Hunk #1 FAILED at 91.
    Hunk #2 FAILED at 100.
    2 out of 2 hunks FAILED -- saving rejects to file shared/compat_mm.h.rej
    --- Applying vmhgfs/patch_inode.c.patch ...
    patching file inode.c
    Hunk #1 FAILED at 1798.
    Hunk #2 FAILED at 1818.
    2 out of 2 hunks FAILED -- saving rejects to file inode.c.rej
    --- Applying vmblock/vmblock.3.11.patch ...
    patching file linux/file.c
    --- Applying vmblock/vmblock.3.10.patch ...
    patching file linux/control.c
    Creating a new VMware Tools installer database using the tar4 format.
    Installing VMware Tools.
    In which directory do you want to install the binary files?
    [/usr/bin]
    What is the directory that contains the init directories (rc0.d/ to rc6.d/)?
    [/etc/init.d]
    What is the directory that contains the init scripts?
    [/etc/init.d]
    In which directory do you want to install the daemon files?
    [/usr/sbin]
    In which directory do you want to install the library files?
    [/usr/lib/vmware-tools]
    The path "/usr/lib/vmware-tools" does not exist currently. This program is
    going to create it, including needed parent directories. Is this what you want?
    [yes]
    In which directory do you want to install the documentation files?
    [/usr/share/doc/vmware-tools]
    The path "/usr/share/doc/vmware-tools" does not exist currently. This program
    is going to create it, including needed parent directories. Is this what you
    want? [yes]
    The installation of VMware Tools 9.6.1 build-1378637 for Linux completed
    successfully. You can decide to remove this software from your system at any
    time by invoking the following command: "/usr/bin/vmware-uninstall-tools.pl".
    Before running VMware Tools for the first time, you need to configure it by
    invoking the following command: "/usr/bin/vmware-config-tools.pl". Do you want
    this program to invoke the command for you now? [yes]
    Initializing...
    Making sure services for VMware Tools are stopped.
    Stopping VMware Tools services in the virtual machine:
    Guest operating system daemon: done
    Unmounting HGFS shares: done
    Guest filesystem driver: done
    Stopping Thinprint services in the virtual machine:
    Stopping Virtual Printing daemon: done
    sh: : command not found
    sh: : command not found
    make: Entering directory '/tmp/modconfig-HrsGw6/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/linux/driver.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciDriver.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciResource.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciContext.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciDatagram.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciHashtable.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciEvent.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciQueuePair.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciDoorbell.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciQPair.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/common/vmciRoute.o
    CC [M] /tmp/modconfig-HrsGw6/vmci-only/driverLog.o
    LD [M] /tmp/modconfig-HrsGw6/vmci-only/vmci.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-HrsGw6/vmci-only/vmci.mod.o
    LD [M] /tmp/modconfig-HrsGw6/vmci-only/vmci.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-HrsGw6/vmci-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-HrsGw6/vmci-only'
    cp -f vmci.ko ./../vmci.o
    make: Leaving directory '/tmp/modconfig-HrsGw6/vmci-only'
    make: Entering directory '/tmp/modconfig-pVUBEq/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/linux/driver.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciDriver.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciResource.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciContext.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciDatagram.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciHashtable.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciEvent.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciQueuePair.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciDoorbell.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciQPair.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/common/vmciRoute.o
    CC [M] /tmp/modconfig-pVUBEq/vmci-only/driverLog.o
    LD [M] /tmp/modconfig-pVUBEq/vmci-only/vmci.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-pVUBEq/vmci-only/vmci.mod.o
    LD [M] /tmp/modconfig-pVUBEq/vmci-only/vmci.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-pVUBEq/vmci-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-pVUBEq/vmci-only'
    cp -f vmci.ko ./../vmci.o
    make: Leaving directory '/tmp/modconfig-pVUBEq/vmci-only'
    make: Entering directory '/tmp/modconfig-pVUBEq/vsock-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-pVUBEq/vsock-only/linux/af_vsock.o
    CC [M] /tmp/modconfig-pVUBEq/vsock-only/linux/vsockAddr.o
    CC [M] /tmp/modconfig-pVUBEq/vsock-only/linux/notifyQState.o
    CC [M] /tmp/modconfig-pVUBEq/vsock-only/linux/util.o
    CC [M] /tmp/modconfig-pVUBEq/vsock-only/linux/stats.o
    CC [M] /tmp/modconfig-pVUBEq/vsock-only/linux/notify.o
    CC [M] /tmp/modconfig-pVUBEq/vsock-only/driverLog.o
    LD [M] /tmp/modconfig-pVUBEq/vsock-only/vsock.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-pVUBEq/vsock-only/vsock.mod.o
    LD [M] /tmp/modconfig-pVUBEq/vsock-only/vsock.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-pVUBEq/vsock-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-pVUBEq/vsock-only'
    cp -f vsock.ko ./../vsock.o
    make: Leaving directory '/tmp/modconfig-pVUBEq/vsock-only'
    The module vmxnet3 from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The module pvscsi from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The module vmmemctl from this package is not supported for kernels >= 3.10.
    Please enable this module in your kernel. You may also have to enable
    HYPERVISOR_GUEST.
    The VMware Host-Guest Filesystem allows for shared folders between the host OS
    and the guest OS in a Fusion or Workstation virtual environment. Do you wish
    to enable this feature? [yes]
    make: Entering directory '/tmp/modconfig-ukgHfB/vmci-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/linux/driver.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/linux/vmciKernelIf.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciDriver.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciResource.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciContext.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciDatagram.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciHashtable.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciEvent.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciQueuePair.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciDoorbell.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciQPair.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/common/vmciRoute.o
    CC [M] /tmp/modconfig-ukgHfB/vmci-only/driverLog.o
    LD [M] /tmp/modconfig-ukgHfB/vmci-only/vmci.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-ukgHfB/vmci-only/vmci.mod.o
    LD [M] /tmp/modconfig-ukgHfB/vmci-only/vmci.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-ukgHfB/vmci-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-ukgHfB/vmci-only'
    cp -f vmci.ko ./../vmci.o
    make: Leaving directory '/tmp/modconfig-ukgHfB/vmci-only'
    make: Entering directory '/tmp/modconfig-ukgHfB/vmhgfs-only'
    Using 2.6.x kernel build system.
    /bin/make -C /lib/modules/3.12.6-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= modules
    make[1]: Entering directory '/usr/src/linux-3.12.6-1-ARCH'
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/backdoorGcc64.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/message.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/request.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/filesystem.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/cpName.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/dentry.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/rpcout.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/hgfsUtil.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/stubs.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/hgfsEscape.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/link.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/transport.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/module.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/file.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/super.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/vmci.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/bdhandler.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/dir.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/fsutil.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/cpNameLinux.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/hgfsBd.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/page.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/backdoor.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/inode.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/cpNameLite.o
    CC [M] /tmp/modconfig-ukgHfB/vmhgfs-only/kernelStubsLinux.o
    LD [M] /tmp/modconfig-ukgHfB/vmhgfs-only/vmhgfs.o
    Building modules, stage 2.
    MODPOST 1 modules
    CC /tmp/modconfig-ukgHfB/vmhgfs-only/vmhgfs.mod.o
    LD [M] /tmp/modconfig-ukgHfB/vmhgfs-only/vmhgfs.ko
    make[1]: Leaving directory '/usr/src/linux-3.12.6-1-ARCH'
    /bin/make -C $PWD SRCROOT=$PWD/. \
    MODULEBUILDDIR= postbuild
    make[1]: Entering directory '/tmp/modconfig-ukgHfB/vmhgfs-only'
    make[1]: 'postbuild' is up to date.
    make[1]: Leaving directory '/tmp/modconfig-ukgHfB/vmhgfs-only'
    cp -f vmhgfs.ko ./../vmhgfs.o
    make: Leaving directory '/tmp/modconfig-ukgHfB/vmhgfs-only'
    The vmxnet driver is no longer supported on kernels 3.3 and greater. Please
    upgrade to a newer virtual NIC. (e.g., vmxnet3 or e1000e)
    The vmblock enables dragging or copying files between host and guest in a
    Fusion or Workstation virtual environment. Do you wish to enable this feature?
    [yes]
    NOTICE: It appears your system does not have the required fuse packages
    installed. The VMware blocking filesystem requires the fuse packages and its
    libraries to function properly. Please install the fuse or fuse-utils package
    using your systems package management utility and re-run this script in order
    to enable the VMware blocking filesystem.
    VMware automatic kernel modules enables automatic building and installation of
    VMware kernel modules at boot that are not already present. This feature can be
    enabled/disabled by re-running vmware-config-tools.pl.
    Would you like to enable VMware automatic kernel modules?
    [no]
    Detected X server version 1.14.5
    Distribution provided drivers for Xorg X server are used.
    Skipping X configuration because X drivers are not included.
    Warning: This script could not find mkinitrd or update-initramfs and cannot
    remake the initrd file!
    Checking acpi hot plug done
    Starting VMware Tools services in the virtual machine:
    Switching to guest configuration: done
    VM communication interface: done
    VM communication interface socket family: failed
    Guest filesystem driver: failed
    Mounting HGFS shares: failed
    Guest operating system daemon: done
    Unable to start services for VMware Tools
    Execution aborted.
    #[root@localhost] - [14-01-02 2:46:53] - [/home/toxicarrow/vmware/vmware-tools-patches] - [R:0]
    Any idea what I should be doing?

    I have the same problem on ESXI 5.5 for over a month now, tried the patches, tried the LTS kernel which others say results in an immediate result without patches, nothing seems to work and nobody seems to be able to offer a solution.
    Did you make any progress ??
    Error! Build of vmblock.ko failed for: 3.10.25-1-lts (x86_64)
    Consult the make.log in the build directory
    /var/lib/dkms/open-vm-tools/2013.09.16/build/ for more information.
    make[2]: *** No rule to make target '/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock/linux/inode', needed by '/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock/vmblock.o'. Stop.
    Makefile:1224: recipe for target '_module_/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock' failed
    make[1]: *** [_module_/var/lib/dkms/open-vm-tools/2013.09.16/build/vmblock] Error 2
    make[1]: Leaving directory '/usr/src/linux-3.10.25-1-lts'
    Makefile:120: recipe for target 'vmblock.ko' failed
    Last edited by crankshaft (2014-01-10 11:32:32)

Maybe you are looking for

  • Collapse folders on close when in list view in finder

    Is there a way to have finder automatically collapse all the folders when you close the finder window in list view?

  • What are the steps  needs to be perform to define a data model

    What are the steps  needs to be perform to define a data model a.     Information Gathering  b.     Hardware & Software c.     Structure the Information – MDM d.     Transfer into a Physical Model – BW data model e.     Explore use of existing model

  • Faild to save sequence file. Out of memory

    I need to write several arrays to my report file. This works fine for a couple of times, but when I add to many steps I get the message "Failed to save sequence file xxx.seq. Out of memory" from the Sequence Editor. I found the "CustomActionStep" on

  • Can we create export dump files on client side??

    Hi, Please see this link http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_overview.htm#i1010293 Check the "NOTE" which says that All Data Pump Export and Import processing, including the reading and writing of dump files, is done

  • Project Captures as 1 Blank Single Frame

    I am trying to do a software demonstration and every time I end it, there is only 1 single frame that is blank. I have tried changing resoltuion and turning off hardware acceleration and it hasn't helped. Any suggestions? Thanks. Dave