You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(6) |
Oct
(6) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
(2) |
Jul
(4) |
Aug
(2) |
Sep
(18) |
Oct
(5) |
Nov
(13) |
Dec
(14) |
2009 |
Jan
(9) |
Feb
(14) |
Mar
(8) |
Apr
(9) |
May
(28) |
Jun
(10) |
Jul
(1) |
Aug
(16) |
Sep
(10) |
Oct
|
Nov
(2) |
Dec
|
2010 |
Jan
(2) |
Feb
(21) |
Mar
(11) |
Apr
(8) |
May
(1) |
Jun
|
Jul
(23) |
Aug
(11) |
Sep
|
Oct
(12) |
Nov
|
Dec
(6) |
2011 |
Jan
|
Feb
(1) |
Mar
(4) |
Apr
(2) |
May
(2) |
Jun
(4) |
Jul
(4) |
Aug
(2) |
Sep
|
Oct
(7) |
Nov
|
Dec
(9) |
2012 |
Jan
(4) |
Feb
(5) |
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
(5) |
Oct
(1) |
Nov
|
Dec
|
2014 |
Jan
(1) |
Feb
(3) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
(2) |
2016 |
Jan
(1) |
Feb
|
Mar
(9) |
Apr
(3) |
May
(1) |
Jun
(4) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
(2) |
Feb
|
Mar
(1) |
Apr
(3) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
2018 |
Jan
|
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
From: Petr V. <pe...@vm...> - 2020-10-05 16:42:36
|
Behrad Eslamifar wrote on 10/5/2020 10:28 AM: > Hi > > I vmxnet3 file in open-vm-tools, max tx and rx queue is 32 but i only > have 8 queues in ubuntu. What is ther problem? > #define VMXNET3_EXT_MAX_TX_QUEUES 32 > #define VMXNET3_EXT_MAX_RX_QUEUES 32 > > OS: ubuntu 16.04 and 18.04 > esxi: 6.7 > open-vm-tools from official ubuntu repository Hi Behrad, you'll need newer ESXi version (7.0), and virtual machine using hardware version 17 to have vmxnet3 device that supports more than 8 queues. Then you'll need newer guest driver to be able to use the feature - currently driver in the Linux kernel does not support extended queues. Petr |
From: Behrad E. <b.e...@gm...> - 2020-10-05 08:28:55
|
Hi I vmxnet3 file in open-vm-tools, max tx and rx queue is 32 but i only have 8 queues in ubuntu. What is ther problem? #define VMXNET3_EXT_MAX_TX_QUEUES 32 #define VMXNET3_EXT_MAX_RX_QUEUES 32 OS: ubuntu 16.04 and 18.04 esxi: 6.7 open-vm-tools from official ubuntu repository Thanks |
From: Debananda P. <deb...@gm...> - 2020-01-27 10:20:52
|
Hi, After upgrading glib from 2.61.0 to 2.63.4, I am getting Deprecation error for open-vm-tools 11.0.5-15389592 as below : fileLogger.c: In function 'FileLoggerLog': fileLogger.c:351:13: error: Deprecated pre-processor symbol [-Werror] g_static_mutex_lock(&logger->lock); ^~~~~~~~~~~~~~~~~~~~~~~~~~ Kindly let me know, how to proceed or if there is any plan for new release of open-vm-tools, where deprecated APIs will not be used. Regards, D Pal |
From: Karl M. <kme...@me...> - 2018-02-08 16:12:13
|
I was hoping to ask for some design help on VMWare. I am developing a new licensing feature for a desktop app. A typical solution to this problem is a stand-alone license server which just counts concurrent licensed instances on the LAN. Unfortunately, the customer has taken that offtheytable and require us to do software only, disconnected, per seat activation. I know their environment and their reasons are mission critical for them... So to implement the license policy requires us to uniquely identify each physical machine the app is installed with a UUID. For the case of Windows running hardware, we can make a hash value from the serial numbers in the bios through WMI and treat the hash value as a UUID. Although there is a risk a determined cheat could spoof their bios we decided that was an acceptable risk since bios spoofing is clumsy. Above a certain level of effort they could just edit our assembly and crack the security check anyway... The case of Windows in a guest OS on VMWare is harder to design something robust to very simple cheating. Just about everything in the guest OS is configurable and easily replicated with thevmxand checkpointing. So guest OS features like the bios or MAC addresses just seem too easy for a user to spoof by making many instances of particular (licensed) guest image. I am looking for something an application can query which identifies the underlying host in a robust way. One solution I been exploring is using theVMXhIO port to query the underlying host. Using the IO Port was very attractive since it seemed to require minimal dependencies, installation and configuring and was typically on by default According to https://sites.google.com/site/chitchatvmback/backdoor#cmd0fh command 13h will provide the bios UUID but then I realized that VMWare allows multiple instances of a particular guest image as long as they run on physically distinct hosts. It seems I really need to be asking for the/HOST's/UUID The PowerCLI does seem to provide that data with the Get-VMHost command https://www.vmware.com/support/developer/PowerCLI/PowerCLI41U1/html/Get-VMHost.html something like (Get-VMHost -Name MY_VCENTER_IP).ExtensionData.hardware.systeminfo.uuid Is therea IOPort way to get the same or equivalent value - the physical host UUID? I just need a stable and robust way to identify what (physical) machine the app is running on. Ideally, one which is simple to implement and does not have a lot of dependencies or configuration for the customer to deal with. thanks Karl Meissner |
From: Achilles G. <ach...@gm...> - 2018-02-04 09:31:43
|
Hello! I am looking for the file that is creating the following service file : ~~~ /usr/lib/systemd/system/vmtoolsd.service ~~~ My aim is to simply add extra arguments and make specific changes in Exec section of the aforementioned service file. something like : ~~~ -ExecStart = /usr/bin/vmtoolsd +ExecStart = /usr/bin/vmtoolsd ARG1 ARG2 ~~~ I know I can edit the unit file simply, but I want to build a binary which would have this by default for some of my systems. The above is just an example, I wish to execute vmtoolsd in a different namespace than it currently runs in. Best, Achilles |
From: Mario S. <mar...@ca...> - 2017-12-07 11:41:22
|
Hello! Where can I find the list of configuration options that I can put into the conf file supplied to vmtoolsd via the --conf option? Thank you, Mario |
From: spezialist <spe...@em...> - 2017-11-18 09:52:54
|
Hi all! In continuation of the topic, published on https://communities.vmware.com/message/2721551#2721551: what is VMware Co. thinks that open-vm-tools have long been available as ready-made rpm-files for RHEL/CentOS 6.x on EPEL repo? I.e., can I use the RHEL/CentOS 6.x guest OS with the above rpm-files from EPEL repo, for example under ESXi 5.5U3? Problems will be or not? And the most important question -- is whether VMware Co will refuse me in the official technical support if on the RHEL/CentOS 6.x guest OS I will have open-vm-tools installed from the EPEL repository, rather than native vmware-tools. Very thanks for the support. -- Чорнобиль форева! -- реклама ----------------------------------------------------------- http://FREEhost.UA - мы размещаем больше 100 тыс. сайтов! Качественный хостинг для новичков и профи - http://goo.gl/EcgF4I |
From: Tim M. <tpm...@gm...> - 2017-07-10 19:01:41
|
I have an ubuntu 16.04 disk image that I want to use for KVM and vSphere 6.5. Are there any issues with running the disk image on KVM with open-vm-tools installed? Thanks, Tim |
From: Ravindra K. <rav...@vm...> - 2017-04-05 00:48:08
|
You might have missed the second part of the documentation, which talks about the option "pref.timeLagInMilliseconds". One time sync does not kick in if the error is within 1000 milliseconds. This threshold can be controlled using "pref.timeLagInMilliseconds". Could you please check this? Thanks, Ravindra ________________________________ From: Patrick Hemmer <ope...@st...> Sent: Monday, April 03, 2017 2:16 PM To: open-vm-tools discussions Subject: Re: Time not syncing after VMotion �Unfortunately it does not. All this document does is instruct in usage of ntpd. Ntpd takes too long to adjust the clock. It takes to long to even detect that the clock is out of sync and needs to be fixed. This functionality is supposed to be part of the vmware tools for exactly this issue. For example, see this document: https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1189 > Time is resynchronized when you migrate the virtual machine using vMotion, take a snapshot, restore to a snapshot, shrink the virtual disk, or restart the VMware Tools service in the virtual machine (including rebooting the virtual machine). -Patrick On 2017/4/3 16:35, Ravindra Kumar wrote: Hi Patrick, Could you please see if�https://kb.vmware.com/kb/2108828�helps? Thanks, Ravindra ________________________________ From: Patrick Hemmer <ope...@st...><mailto:ope...@st...> Sent: Friday, March 31, 2017 2:52 PM To: ope...@li...<mailto:ope...@li...> Subject: Time not syncing after VMotion � So every time we do a VMotion, our guest clock is off by a few hundred milliseconds. We do run ntpd, so it eventually corrects itself. But these time discrepancies can cause problems until ntpd gets around to fixing things. According to various resources I can find on the internet, the time is supposed to be synchronized after a few events happen, such as snapshots, and vmotions. We have the periodic time sync disabled (though we tried with it enabled, and it made no difference). We do not have any of the "time.synchronize.*" options set in the vmx file. Any idea why the time is not synchronizing? Or how to debug this? -Patrick ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ open-vm-tools-discuss mailing list ope...@li...<mailto:ope...@li...> https://lists.sourceforge.net/lists/listinfo/open-vm-tools-discuss |
From: Patrick H. <ope...@st...> - 2017-04-03 21:16:31
|
Unfortunately it does not. All this document does is instruct in usage of ntpd. Ntpd takes too long to adjust the clock. It takes to long to even detect that the clock is out of sync and needs to be fixed. This functionality is supposed to be part of the vmware tools for exactly this issue. For example, see this document: https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1189 > Time is resynchronized when you migrate the virtual machine using vMotion, take a snapshot, restore to a snapshot, shrink the virtual disk, or restart the VMware Tools service in the virtual machine (including rebooting the virtual machine). -Patrick On 2017/4/3 16:35, Ravindra Kumar wrote: > > Hi Patrick, > > > Could you please see if https://kb.vmware.com/kb/2108828 helps? > > Thanks, > Ravindra > ------------------------------------------------------------------------ > *From:* Patrick Hemmer <ope...@st...> > *Sent:* Friday, March 31, 2017 2:52 PM > *To:* ope...@li... > *Subject:* Time not syncing after VMotion > > So every time we do a VMotion, our guest clock is off by a few hundred > milliseconds. We do run ntpd, so it eventually corrects itself. But > these time discrepancies can cause problems until ntpd gets around to > fixing things. According to various resources I can find on the > internet, the time is supposed to be synchronized after a few events > happen, such as snapshots, and vmotions. > We have the periodic time sync disabled (though we tried with it > enabled, and it made no difference). We do not have any of the > "time.synchronize.*" options set in the vmx file. > > Any idea why the time is not synchronizing? Or how to debug this? > > -Patrick > > > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > > > _______________________________________________ > open-vm-tools-discuss mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/open-vm-tools-discuss |
From: Ravindra K. <rav...@vm...> - 2017-04-03 21:09:28
|
Hi Patrick, Could you please see if https://kb.vmware.com/kb/2108828 helps? Thanks, Ravindra ________________________________ From: Patrick Hemmer <ope...@st...> Sent: Friday, March 31, 2017 2:52 PM To: ope...@li... Subject: Time not syncing after VMotion So every time we do a VMotion, our guest clock is off by a few hundred milliseconds. We do run ntpd, so it eventually corrects itself. But these time discrepancies can cause problems until ntpd gets around to fixing things. According to various resources I can find on the internet, the time is supposed to be synchronized after a few events happen, such as snapshots, and vmotions. We have the periodic time sync disabled (though we tried with it enabled, and it made no difference). We do not have any of the "time.synchronize.*" options set in the vmx file. Any idea why the time is not synchronizing? Or how to debug this? -Patrick |
From: Patrick H. <ope...@st...> - 2017-03-31 21:52:55
|
So every time we do a VMotion, our guest clock is off by a few hundred milliseconds. We do run ntpd, so it eventually corrects itself. But these time discrepancies can cause problems until ntpd gets around to fixing things. According to various resources I can find on the internet, the time is supposed to be synchronized after a few events happen, such as snapshots, and vmotions. We have the periodic time sync disabled (though we tried with it enabled, and it made no difference). We do not have any of the "time.synchronize.*" options set in the vmx file. Any idea why the time is not synchronizing? Or how to debug this? -Patrick |
From: Petr V. <pe...@vm...> - 2017-01-18 00:31:23
|
Cédric BRINER wrote: > Hi, > > What is the current status of hot adding CPUs and memories with a guest > running open-vmv-tools. > > Do I need to use the vmware-tools to do so, or does the open-vm-tools is > enough. Hi Cedric, you do not need any Tools at all for CPU & memory hot-add to work. What VMware Tools (both bundled and open) do is that they attempt to configure system for you: they make sure that acpi_memhotplug is loaded, and provides script that tries to bring hot-added resources online automatically. Current distributions usually take care of both of these tasks automatically, as part of their systemd & udev setup, and so you do not need any VMware Tools involvement to get this functionality (f.e. Windows always supported this functionality without Tools present) Petr |
From: Cédric B. <ced...@un...> - 2017-01-17 09:44:42
|
Hi, What is the current status of hot adding CPUs and memories with a guest running open-vmv-tools. Do I need to use the vmware-tools to do so, or does the open-vm-tools is enough. Regards. cED -- Cédric BRINER, Ing. EPFL & HES DiSTIC ☎: +41 (0)22/37.97183 |
From: Robin A. <r.a...@tu...> - 2016-08-25 10:22:16
|
I guess i fucked my last mail up, so i will just resend it. If you already got my mail, i am sorry :) > Hi guys, > > > I would like to run open-vm-tools within a docker container. > I just made a quick test > > -> docker pull centos:latest > -> docker run -ti centos:latest > -> yum install open-vm-tools && vmtoolsd > > and according to my vsphere my VM does have vmtools installed (third > party). > > My question is: > -> Is there a way to check if the tools are working correctly? > -> What does the container need to use the tools? > > best regards, > Robin > -- Robin Alster Gauß-IT-Zentrum TU Braunschweig Abteilung Server Hans-Sommer-Str. 65 38106 Braunschweig Mail: r.a...@tu... Telefon: +49 531 391-63783 |
From: Garcia, J. (CORP) <Jos...@AD...> - 2016-06-09 17:58:52
|
I upgraded this from 15.04 to 15.10 and everything worked just fine. (Isn't this the way all of these start? ^__^) Upgraded to 16.04 and resize works just fine as long as I am going to a larger screen size or expanding to the second monitor with the "Cycle Multiple Monitors" button on VMware Workstation. Changing the size of the VMware Workstation window, turning off full screen mode, or going back to a single monitor does not cause an automatic resize down. The scroll bars on the VMware Workstation appear. I can scroll just fine, but the mouse location is no longer in sync with what is displayed on the screen. Please let me know any additional info that is required. Joe VMWare Workstation Pro 12.1.1 build-3770994 me@ubuntu:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.04 LTS Release: 16.04 Codename: xenial @ubuntu:~$ apt search open-vm-tools Sorting... Done Full Text Search... Done open-vm-tools/xenial,now 2:10.0.7-3227872-2ubuntu1 amd64 [installed] Open VMware Tools for virtual machines hosted on VMware (CLI) open-vm-tools-desktop/xenial,now 2:10.0.7-3227872-2ubuntu1 amd64 [installed] Open VMware Tools for virtual machines hosted on VMware (GUI) open-vm-tools-dev/xenial 2:10.0.7-3227872-2ubuntu1 amd64 Open VMware Tools for virtual machines hosted on VMware (development) open-vm-tools-dkms/xenial,xenial,now 2:10.0.7-3227872-2ubuntu1 all [installed] Open VMware Tools vmxnet kernel module (deprecated) ---------------------------------------------------------------------- This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, notify the sender immediately by return email and delete the message and any attachments from your system. |
From: Garcia, J. (CORP) <Jos...@AD...> - 2016-06-09 16:51:01
|
I upgraded this from 15.04 to 15.10 and everything worked just fine. (Isn't this the way all of these start? ^__^) Upgraded to 16.04 and resize works just fine as long as I am going to a larger screen size or expanding to the second monitor with the "Cycle Multiple Monitors" button on VMware Workstation. Changing the size of the VMware Workstation window, turning off full screen mode, or going back to a single monitor does not cause an automatic resize down. The scroll bars on the VMware Workstation appear. I can scroll just fine, but the mouse location is no longer in sync with what is displayed on the screen. Please let me know any additional info that is required. Joe VMWare Workstation Pro 12.1.1 build-3770994 me@ubuntu:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.04 LTS Release: 16.04 Codename: xenial @ubuntu:~$ apt search open-vm-tools Sorting... Done Full Text Search... Done open-vm-tools/xenial,now 2:10.0.7-3227872-2ubuntu1 amd64 [installed] Open VMware Tools for virtual machines hosted on VMware (CLI) open-vm-tools-desktop/xenial,now 2:10.0.7-3227872-2ubuntu1 amd64 [installed] Open VMware Tools for virtual machines hosted on VMware (GUI) open-vm-tools-dev/xenial 2:10.0.7-3227872-2ubuntu1 amd64 Open VMware Tools for virtual machines hosted on VMware (development) open-vm-tools-dkms/xenial,xenial,now 2:10.0.7-3227872-2ubuntu1 all [installed] Open VMware Tools vmxnet kernel module (deprecated) ---------------------------------------------------------------------- This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If the reader of the message is not the intended recipient or an authorized representative of the intended recipient, you are hereby notified that any dissemination of this communication is strictly prohibited. If you have received this communication in error, notify the sender immediately by return email and delete the message and any attachments from your system. |
From: Ravindra K. <rav...@vm...> - 2016-05-07 00:43:17
|
Jinkoo, For open-vm-tools logging, please follow the same KB as we have for VMware Tools https://kb.vmware.com/kb/1007873. In order to post emails to this mailing list in future, please subscribe to the mailing list. Thanks, Ravindra ________________________________________ From: HAN, JINKOO <jh...@re...> Sent: Sunday, April 10, 2016 10:17 PM To: ope...@li... Subject: open-vm-tools logs to understand the works Dear Team, I have a following question. How to gather logs from 'open-vm-tools'? and what logs are useful to understand 'open-vm-tools' works? Regards, Jinkoo ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z _______________________________________________ open-vm-tools-discuss mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/open-vm-tools-discuss |
From: Dmitri F. <dfe...@gm...> - 2016-04-26 14:11:41
|
Hi all, How do you install open-vm-tools kernel modules, please? Do you "make install" them? Or package them? Regards, Dmitri Fedorov Software Architect Solace Systems, Inc. Ottawa, ON Canada Solace Systems accepts no liability for the content of this email, or for the consequences of any actions taken on the basis of the information provided, unless that information is subsequently confirmed in writing. Any views or opinions presented in this email are solely those of the author and do not necessarily represent those of Solace Systems. |
From: HAN, J. <jh...@re...> - 2016-04-11 05:17:28
|
Dear Team, I have a following question. How to gather logs from 'open-vm-tools'? and what logs are useful to understand 'open-vm-tools' works? Regards, Jinkoo |
From: Chris C. - V. <chr...@vi...> - 2016-04-03 22:30:26
|
How do I install the open- vm- tools inside a VM when the media package is downloaded? there is no internet connectivity from the VM Regards Chris |
From: PRISCO F. <pri...@gm...> - 2016-03-31 13:32:52
|
Hi guys, I am looking to the open-vm-tools compiling phase. I did not finished the correct procedure, I mean if I don't want to "make install" at the end of the compilation, how can I start the vmtoolsd "manually"? By looking to my Virtual Machine I can see: root@ubuntuvm:~# ps -ef | grep vmtoolsd root 1802 1 0 15:13 ? 00:00:00 */usr/sbin/vmtoolsd* user 2648 2041 0 15:13 ? 00:00:00 */usr/lib/vmware-tools/sbin32/vmtoolsd -n vmusr --blockFd 3* Is not clear for me if I have to lunch vmtoolsd binary file by passing the previous parameters. I am asking because I am using this VM just to build, I need to lunch the executable file on another machine. I have opened another post regarding hearbeat feature. I need the heartbeat functionality to check if from my host vsphere machine (for some reason) my VM is locked, I hope that HA feature will restart it in case VM doesn't answer to some events. Could you help me to find "open-vm-tools" documentation? Tks guys. Prisco |
From: Ravindra K. <rav...@vm...> - 2016-03-26 02:42:23
|
You should enable 'vmusr' service logs and see if there is anything in the logs. You can following instructions from this KB https://kb.vmware.com/kb/1007873. You would also need to look at vmware.log in the VM's directory to get some clues. From: Marco Novielli [mailto:ma...@in...] Sent: Tuesday, March 22, 2016 8:33 PM To: ope...@li... Subject: open-vm-tools-desktop on Debian Testing I am hoping someone can help. I am using Debian testing and Open-vm-tools-desktop (2:10.0.5-3227872-2: amd64 i386), but it does not seem to work well. I get errors on bootup and drag and drop is not working. I noticed on the latest Kali Linux VM, which uses Debian testing as base, that tools works properly including drag and drop (between host and guest). They seem to be using a similar kernel 4.4 and same vm-tools versions. Any help would be appreciated. |
From: Ravindra K. <rav...@vm...> - 2016-03-26 02:36:37
|
> Due the fact that my virtual machine is like a skeleton, I mean that from that many many things are removed for performance purposes, I wish to know if open-vm-tools are sufficient to be used for this kind of functionality I wish (Heartbeat and restart machine in case of loop/etc). Yes. > My virtual machine is not using vmxnet but e1000 driver, could I replace it with e1000 ? e1000 is supported driver. From: Prisco Farina [mailto:pri...@gm...] Sent: Friday, March 25, 2016 8:28 AM To: ope...@li... Subject: heartbeat watchdog feature Hi guys, I am looking to https://github.com/drothlis/open-vm-tools/tree/master/lib/rpcOut and in particular I have interest to use openvm tools in my virtual machine for the watchdog feature. As far as I understood (I hope correctly) vSphere supports this kind of service on host but it is required to install vmware tools. Due the fact that my virtual machine is like a skeleton, I mean that from that many many things are removed for performance purposes, I wish to know if open-vm-tools are sufficient to be used for this kind of functionality I wish (Heartbeat and restart machine in case of loop/etc). In the directories I have seen rpcIn and rpcOut that probably are modules I need for heartbeat, I have interest to know how I can compile just these one and install it on my machine. My virtual machine is not using vmxnet but e1000 driver, could I replace it with e1000 ? Can you help? [Image removed by sender.] Thank you very much for clarifications/support :) Prisco |
From: Ravindra K. <rav...@vm...> - 2016-03-26 02:34:49
|
Including Prisco. Prisco, please subscribe to the mailing list for future emails. From: Ravindra Kumar Sent: Friday, March 25, 2016 7:21 PM To: ope...@li... Subject: RE: heartbeat watchdog feature > Due the fact that my virtual machine is like a skeleton, I mean that from that many many things are removed for performance purposes, I wish to know if open-vm-tools are sufficient to be used for this kind of functionality I wish (Heartbeat and restart machine in case of loop/etc). Yes. > My virtual machine is not using vmxnet but e1000 driver, could I replace it with e1000 ? e1000 is supported driver. From: Prisco Farina [mailto:pri...@gm...] Sent: Friday, March 25, 2016 8:28 AM To: ope...@li...<mailto:ope...@li...> Subject: heartbeat watchdog feature Hi guys, I am looking to https://github.com/drothlis/open-vm-tools/tree/master/lib/rpcOut and in particular I have interest to use openvm tools in my virtual machine for the watchdog feature. As far as I understood (I hope correctly) vSphere supports this kind of service on host but it is required to install vmware tools. Due the fact that my virtual machine is like a skeleton, I mean that from that many many things are removed for performance purposes, I wish to know if open-vm-tools are sufficient to be used for this kind of functionality I wish (Heartbeat and restart machine in case of loop/etc). In the directories I have seen rpcIn and rpcOut that probably are modules I need for heartbeat, I have interest to know how I can compile just these one and install it on my machine. My virtual machine is not using vmxnet but e1000 driver, could I replace it with e1000 ? Can you help? [Image removed by sender.] Thank you very much for clarifications/support :) Prisco |