Workstation Ubuntu 16.04-11 start ends in a loop Signal 11

I recently updated a Ubuntu 14.04 to 16.04 Ubuntu machine. The machine is using VMware Workstation 11.1.3 who worked on 14.04 without problems.

If I try to boot the workstation on 16.04 via

vmware

Nothing happens and he returned to the command prompt. If I start by:

env VMWARE_USE_SHIPPED_LIBS=1 /usr/bin/vmware

I do not see a GTK-error repetition

(vmware-modconfig:14139): Gtk-WARNING **: Unable to locate theme engine in module_path: "murrine",

that seems to be known and non-critical, then one final GTK error:

Gtk-Message: Failed to load module "canberra-gtk-module": libcanberra-gtk-module.so: cannot open shared object file: No such file or directory

and finally the following error:

Loop on signal 11

No idea where to start debugging this problem? Most post I found to date on issues of Signal 11 handle with unique departure of virtual machines, then I get this error already trying to startuo workstation itself.

I can start / stop the service vmware without problems:

sudo /etc/init.d/vmware start

Starting VMware services:

  Virtual machine monitor                                            done

  Virtual machine communication interface                            done

  VM communication interface socket family                            done

  Blocking file system                                                done

  Virtual ethernet                                                    done

  VMware Authentication Daemon                                        done

  Shared Memory Available                                            done

Installation of the modules seems to work as well through. I can add the cmd-output if necessary.

vmware-modconfig --console --install-all

I was able to solve the problem as follows:

Temporary

export LD_LIBRARY_PATH=/usr/lib/vmware/lib/libglibmm-2.4.so.1/:$LD_LIBRARY_PATH

Permanent

echo /usr/lib/vmware/lib/libglibmm-2.4.so.1 | sudo tee - a /etc/ld.so.conf.d/LD_LIBRARY_PATH.conf

sudo ldconfig

So I can start again via the workstation

VMware

and the GUI is displayed as expected

Tags: VMware

Similar Questions

  • Receive the error under XP "workstation service has not yet started.

    I disabled the administrator account and have no other account with admin rights I did the thing of mode without failure, but when I try to uncheck the box disable when I click on apply I get an error message (the workstation service has not yet started.) So, I have no suggestions admin right?

    * original title - I disabled the account administrator and don't have any other accounts with admin rights.*

    Hi Ron53,

    Please see article with a possible diagnosis:

    http://support.Microsoft.com/kb/314543

    I hope this helps!

  • Windows startup is not full, and then after a few seconds that the starting ends.

    windows startup is not full, and then after a few seconds that the starting ends.

    Original title: boot of win7

    Yes, it's the way it happens. All the other stuff are load - computer office, drivers, anti-virus, etc.
    It takes longer is that you have a lot of programs that load with Windows.
    and is faster if you have Windows on a SSD instead of a disk hard standard tray.
    Win7 also much faster than XP load, anything.

  • start end in if then else.

    Hello

    I've seen people to help

    If 1 = 1 then

    HOMELESS: = 9;

    on the other

    HOMELESS: = 10;

    end if;

    or


    If 1 = 1 then
    Start
    HOMELESS: = 9;
    end
    on the other
    Start
    HOMELESS: = 10;
    end;
    end if;

    (1) which is good. (good coding practices)
    (2) is it wrong by removing start end if then else.

    what I show begin end can be used for the management of exceptions, if it can be used for any other things please tel me.


    Yours sincerely

    944768 wrote:
    what I show begin end can be used for the management of exceptions, if it can be used for any other things please tel me.

    The previous poster gave you good links.

    In your example, I think that putting BEGIN/END in each IF/ELSE condition is rare and would not be useful, so I'd omit them.

    Nested BEGIN/END blocks can be useful If you want to:
    (a) put a label, or
    (b) DECLARE a variable that will be used only within that block, and/or
    (c) write a specific EXCEPTION handler.

    Since your example only none of that above, I don't see the use of these nested blocks. When something is useless, do not.

    P.S. If the goal is to write modular code, anonymous blocks can declare functions and procedures that can be called from the main block.

    set serveroutput on
    DECLARE
      PROCEDURE proc_inside(p_msg in varchar2) IS
        BEGIN
          dbms_output.put_line(
            'Message from procedure within an anonymous block: '||p_msg
          );
        END proc_inside;
    BEGIN
      proc_inside('Message A.');
      proc_inside('Message B.');
    END;
    /
    
    anonymous block completed
    Message from procedure within an anonymous block: Message A.
    Message from procedure within an anonymous block: Message B.
    

    Published by: Ashton stew on March 10, 2013 16:46

  • Is there a way to see the anchor of start/end of the object?

    Untitled.jpgHow would the star, I know where it would be start/end if I had to use a laser machine for cutting the shape

    Add arrow heads

  • Application of "Start end date."

    Salvation of nice people!

    I have a sql query OK, but I want to turn it into an 'end date' application 'start date '.

    It shows results for a month of the year.

    Unfortunately, it is beyond my knowledge to turn it into a "start-end" date request Moreover, this request was made through your help in this forum useful.

    For example, start date would be "22/03/2010; date of end "10/02/2011.

    Coud you please help me?

    Kind regards

    Christian
    WITH RAINFALL AS
      (SELECT DATE1 RAINFALLDATE,
        VALEUR VALUE
      FROM EVV_STPL
      WHERE CLEF_VAR = :P10_DEPT
      AND DATE1 BETWEEN TO_DATE('01'
        ||TO_CHAR(:P10_MONTH)
        ||TO_CHAR(:P10_YEAR)
        ||'235959', 'DDMMYYYYHH24MISS')
      AND LAST_DAY(TO_DATE('01'
        ||TO_CHAR(:P10_MONTH)
        ||TO_CHAR(:P10_YEAR)
        ||'235959', 'DDMMYYYYHH24MISS'))
      ORDER BY DATE1
      ),
      DAYS AS
      (SELECT to_date(TO_CHAR(:P10_MONTH)
        ||TO_CHAR(:P10_YEAR),'MMYYYY')-1 + level AS DT
      FROM dual
      WHERE (to_date(TO_CHAR(:P10_MONTH)
        ||TO_CHAR(:P10_YEAR),'MMYYYY')-1+level) <= last_day(to_date(TO_CHAR(:P10_MONTH)
        ||TO_CHAR(:P10_YEAR),'MMYYYY'))
        CONNECT BY level<=31
      ),
      MY_TAB AS
      (SELECT TRUNC(RAINFALLDATE, 'DD') DATTE,
        SUM(TOTO) CUMUL
      FROM
        (SELECT RAINFALLDATE,
          VALUE,
          LEAD(VALUE) OVER (PARTITION BY TRUNC(RAINFALLDATE) ORDER BY RAINFALLDATE) - VALUE OTO
        FROM RAINFALL
        )
      WHERE TOTO >= 0
      GROUP BY TRUNC(RAINFALLDATE, 'DD')
      )
    SELECT INITCAP(TO_CHAR(DAYS.DT, 'DY DD/MM/YYYY')) JOUR,
      NVL(MT.CUMUL, 0) CUMUL
    FROM MY_TAB MT,
      DAYS
    WHERE DAYS.DT = MT.DATTE (+)
    ORDER BY DAYS.DT

    Hi, Christian,.

    Christian wrote:
    Hi Frank!

    Thanks for you kind comments! I tried the query, but got a syntax error.

    What is the message? Post the entire message, including the line number.

    As you suggest, I will post an example of data and the result according to. »

    CREATE TABLE "EVV_STPL"
    (
    "CLEF_VAR" NUMBER(4,0),
    "DATE1" DATE,
    "VALEUR" NUMBER(16,8)
    )
    REM INSERTING into evv_stpl
    Insert into "evv_stpl" (DATE1,VALEUR) values (to_timestamp('10/03/08 10:04:14,000000000','DD/MM/RR HH24:MI:SS,FF'),0,80000001);
    

    These statemenets works when you run?
    I'm sorry if I posted a code that did not work. Without your table, I could not test it. You can test these statements, however. Please make sure they work before you post them.

    Quotation marks double insdie names are case-sensitive. If the table is called "EVV_STPL" and "vsd" Carmelo"are two different tables. It is better not to use quotes, but if you must, pursue only the capital letters inside them.

    Most of the instructions INSERT triggers the error "ORA-00913: too many values. Are you truying to use a comma as a decimal separator? I don't think that you can do with digital liteals, only in TO_NUMBER TO_CHAR.

    If the data type of date1 is DATE, why you use TO_TIMESTAMP in INSERT statements? Why not TO_DATE?

    Don't you need values for clef_var?

    Try to publish the sample data again. Do not post a lot. I expect 10 to 20 lines would be a lot.

    Output is the following:

    Sam. 01/03/2008     0,00
    Dim. 02/03/2008     0,00
    Lun. 03/03/2008     0,00
    

    Why are the parameters (: p10_dept,: start_date and: end_date) which produce this output?

    If the point of the whole problem is to allow a variable date range, we can start by testing on a small beach, maybe 3 or 4 days. This would reduce the amount of sample data that you post more.

    The CREATE TABLE statement was enough for me run the query. I accidentally typed two ') about 7 lines from the end.
    The first row of the main query form be:
    {code}
    SELECT TO_CHAR (DAYS. DT, ' Dy DD/MM/YYYY ') DAY-"Dy" (capital D, small y) means INITCAP
    one (1) here
    {code}

  • Start and stop a loop automatically subtracted at each iteration

    Hello

    I know that there are some topics about this, but I couldn't find any solution, especially because I'm using version 7.1 and cannot open files from new version.

    My problem is the following:

    I need to load a tank of 6 to 10 in the morning, every day for 3 days. The process should start and stop automatically, which means, no funds to start or stop. Start and stop conditions come from time.

    I start with a big loop of 72 iterations, which is 72 hours.

    The tank must start at level 6, whenever he starts.

    After the departure, 1 unit must be subtracted to each iteration. That means, that the tank is level 10, at 06:00 07:00 level 9 and so on. At the end of the day, at 10:00 the fill level is equal to 2.

    The next day, the process must start again and the tank must start at level 6.

    Any suggestions? Thanks in advance.

    Hi Florian.

    Thank you for your message. That solved this problem, but in fact my VI did not work as I wanted.

    I created a new one, with and an external file from 1 to 24, repeat 3 times. Now I got it. Maybe there is a better way to do it, but it works now. Thanks for all the help. I appreciate a lot.

  • How to end parallel while loops

    Hi, I'm using LV8.5.  I have 2 while loops, running in parallel.  Loop1 is faster (waiting time of 100 ms) and Loop2 is slower (several minutes waiting time).  I use a local variable (STOP button) Boolean to commonality between the loops.  The button is in the loop faster (Loop1) and the local variable is in Loop2.  When I try to end the While loop, Loop1 stops immediately, while I have to wait for Loop2 finish.  Is there a simple way to make two loops to stop immediately?  I have been using a Control\Stop Application, but may not be the right solution.

    Thank you.

    Hi shanx2,

    reduce waiting time in your second loop and count the iterations instead. The loop will do the same, but the stop will react much faster. Another possibility would be to use a queue instead. Connect to a timeout that corresponds to the current time-out period, you use and send a message to stop the loop. You can choose between the queue has been exceeded or not. Connect this result to the conditional loop. You can send the message from the queue after the first loop was arrested.

    Mike

  • Mouse USB and keyboard problems in VMWare Workstation / Ubuntu 8.10

    I am running VMWare Workstation for Linux version 6.5.0 build 118166

    My host is Ubuntu 8.10 / 2.6.27 - 7-generic and I am hosting another instance of the same operating system on the same machine.

    The problem I see is that the keyboard and mouse misbehave / erratic from the host machine. It is a multimedia keyboard 1.1 Microsoft wireless

    There are essentially two problems:

    (1) dedicated cursor keys / pageup / to / home / delete do not work properly. For example, PageUp wants to take a screenshot.

    (2) the mouse seems slow to recognize clicks / trolling. For example, if I click on a tab in Firefox and move immediately, the tab starts to drag. Even if I click on an image and then move the mouse - drag is initiated.

    I tried several combinations of keyboard layout in the case of Ubuntu comments does not. No problems of this nature in the host, or an instance of XP comments.

    Any suggestions?

    Workaround KB 1007439 make a difference?

  • ACS 5.3 vmware Workstation Ubuntu

    Hello

    I managed to install ACS 5.3 on vmware 8.0.4 (Ubuntu 12.04).

    I can connect but I have some fatal errors from the server ({0} or 500) when you work wihthin access policies.

    I can not change (or same) selection of selection of unique result of selection of the rule result. That triggered the error message.

    My question:

    VMware workstation is really OK 5.x (I got the same errors with 5.1 and 5.2 even on windows 7 / vmware workstation 9)?

    Best regards.

    Vincent.

    Thank you for following it upwards. + 5.

    Tarik Admani
    * Please note the useful messages *.

  • Disable Cisco on CTS system start/end call tones

    Does anyone know how to disable the Cisco tones on call start and end on the CTS systems. I have looked everywhere in CUCM and don't see any type of setting for her thus done quick search via the web. When I'm testing, I'm so tired of listening to the tones over and over again and the volume control does not seem to help.

    Thanks for all the ideas.

    Tom

    Hi Tom,

    The tone at the end of the call can be enabled or disabled by the parameter of "call termination enable ring" in the codec in CUCM configuration. Documentation speaks of this setting controls the ring at the end of the call, and I'm not aware of any call origination tone control framework.

    Kind regards

    Antonio.

  • How to use Mvware Workstation to open BigInsight Quick Start edition

    Hi all

    I downloaded IBM edition quick start in Vmware format BigInsight (specifically the file is iibi2120_QuickStart_Single_VMware.vmdk).
    I tried it opens via Winzip but it says I need to download a player vmdk. I went to the site and he suggested me to download the Vmware worstation. So I donwloaded the 3 files (Portal Workspace VMware 2.0.0 customers of office workspace of VMware, VMware Workspace for Windows). I'm now bide understand how the use of these as I tried uncompressing the Big Insight file again without success.
    Nobody knows how to help?
    I would really appreciate it.
    Thank you very much
    RedToby

    None of these products you mention are actually of VMware Workstation for Windows.  You can also use the free VMware Player.  What you downloaded is a virtual disk file, not a virtual machine complete... but you can easily create a virtual machine and direct him to use the virtual disk file you downloaded, rather than create a new empty virtual disk (by default).  You will want to use the custom mode when you create a new virtual machine, not the wizard!

  • VMware Workstation VMX unrecoverable ERROR when starting a VMachine

    Hi all

    This is my first post and would really apreciate to help as I am facing a problem with VM Workstation (and with VMplayer)

    I installed an evaluation of VMware Workstation 9 on my PC (see attached the System Configuration.png).

    When you try to start a newly created VMachine I still get the same error you see in 2 attached images-screenshots 'fatal error VMX' and after that "cannot find a peer process valid to connect to" (see attachment VMware Player - Workstation and VMware Player - Workstation Error_02.png Error_01.png)

    I don't really know what else to try, I tried to reinstall VM Workstation 9, I uninstalled VM Workstation 9 and tryied with VMPlayer 4 and 5, but I still get the same error.

    As you can see in attachment System Configuration.png my motherboard is made with the NVidia GeForce 7100 Northbridge and SouthBridge NForce 630i2008.

    I have attached vmware.log and vmware-vmx - 3468.dmp

    I also check with VM tools boot cd and the results where 'compatible with VMWARE = YES ". only RDTSCP was: No.

    Can someone please? wouldn't be a problem of compatibility of equipment?

    Thank you in advance, I really apreciate any help.

    Costas

    Welcome to the community,

    Please take a look at http://kb.vmware.com/kb/1227 to see if this helps you solve the problem.

    André

  • VMware Workstation 7.1 extremely slow start WinXP32 comments

    The problem is that the guest OS starts very slowly.  From the moment the power on button is pressed when it goes to windows

    Office and all the tray icons loaded, it takes 4 minutes.  While in the comments, things very slow feeling, menus and windows takes a long time to open up, buttons respond slowly, etc.  The system is unable to use interactively.

    Exactly the same configuration on VirtualBox starts in 35 seconds.  The virtual VMware and Virtualbox machine is on the same disk hard drive as the bottleneck, which eliminates.

    Video 3 minute demo showing the comparison between VMware and VirtualBox.

    http://www.YouTube.com/watch?v=mLPgVxlw7m0

    Note that the mark of 1 minute, VirtualBox went to Windows desktop already that VMware will not get on the occasion of up to 3 minutes.

    Note that there is no other other than the VMware and Virtualbox virtual machines running those...

    Host of OS = Windows Server 2008 R2 Datacenter edition

    Server has 4 CPU (Opteron 8347 2.0 Ghz), each with 4 cores (16 cores in total)

    8 GB RAM

    Guest OS = Windows XP SP3 32-bit

    vCPU = 2 to 4 cores each (8 cores in total)

    1 GB of RAM

    Guest operating system has been installed with all what default values.  For VMware, used Easy Install from VMware.  Nothing else significant running on the host computer.  Host operating system feels very sensitive.  Simple installation without Windows updates; However, additions of comments have been installed.

    Can someone tell me what could be the reason that VMware is so slow?

    Thank you for your help.

    If this unique virtual machine is vital - I would consider it in UK on an ESXi
    ESXi evolves much better than the workstation when several vCPUs are needed

  • Ubuntu CD does not start in vmware

    Hello

    I created a virtual machine for ubuntu 32-bit linux.

    I inserted the CD, when you feed the virtual machine, it attempts to boot from the network card? !!

    Leopold

    Make sure that the CD is bootable!

    Put the CD of ' connect at power on "in the settings of the virtual machine.

    If she meets the initialization of the network, check the settings of the virtual machine in order to ensure that the CD is 'connected' and then do a CTRL-ALT-INS (warm start) and press ESC to get the boot menu. From there, select the CD to the bot of.

    André

Maybe you are looking for