Add Audio output function for VM

  1. Power off the VM
  2. Go to Summary, right click and select“Browse Datastore”
  3. Click into “<VM name>” folder
  4. Highlight “<VM Name>”
    Click “Download a file from this datastore to your local machine”
    Browse to the destination folder and click OK
    Click Yes for any warning
  5. Browse to the destination folder andmake a copy of the .vmx file, name it “<VM Name>-copy.vmx”
  6. Click open “<VM Name>.vmx” withNotepad
  7. Scroll to the end of file and manually type the following

sound.present = "true"

sound.virtualDev =  "hdaudio"

sound.fileName = "-1"

sound.autodetect = "true"

sound.pciSlotNumber = "34"

  1. Save the file and go back to theDatastore Browser. Click “Upload files to this datastore” > “Upload File…”
    Browse and select the modified “<VM Name>.vmx”.
    Click Yes for any warnings.

    Health check procedures:

  2. Power on the VM and check if “HD audio” isadded to the VM hardware
  3. Login the VM andcheck for the speaker icon in the system tray

    Rollback procedures:

  4. Logon     vSphere Client console with operator account
  5. Power     off the VM
  6. Go     to Summary, right click and select “Browse Datastore”
  7. Click     into “<VM Name>”     folder
  8. Browse     to the destination folder, rename “<VM     Name>-copy.vmx” back to “<VM     Name>.vmx”
  9. Go     back to the Datastore Browser. Click “Upload files to this datastore” >     “Upload File…”
  10. Browse     and select “<VM Name>.vmx”.
  11. Click     Yes for any warnings.
  12. Power     on the VM and check if “HD audio” is removed from to the VM hardware
时间: 2024-12-13 02:34:32

Add Audio output function for VM的相关文章

Android -- Audio Native服务之启动流程分析(一)

Android -- Audio Native服务之启动流程分析(一) Android中的Audio系统是比较庞大.繁杂的一部分内容, 其中会涉及较多的音频编解码.多媒体制式与Android Audio HAL设备管理的知识.随着Android的发展,其所支持的音频设备也变得越来丰富,如扬声器.耳机.听筒等等:这种变化也为Android管理如此丰富的音频设备以及如何正确.合理地切换音频输出提出了更高的要求.面对如此繁杂的管理要求,我们分析Android Audio服务的历程想必也不会轻松.接下来

JavaScript学习总结(四)function函数部分

转自:http://segmentfault.com/a/1190000000660786 概念 函数是由事件驱动的或者当它被调用时执行的可重复使用的代码块. js 支持两种函数:一类是语言内部的函数(如eval() ),另一类是自己创建的. 在 JavaScript 函数内部声明的变量(使用 var)是局部变量,所以只能在函数内部访问它.(该变量的作用域是局部的). 您可以在不同的函数中使用名称相同的局部变量,因为只有声明过该变量的函数才能识别出该变量. 函数调用 有如下四种调用js函数的方式

LibVLC audio controls

原文 http://www.videolan.org/developers/vlc/doc/doxygen/html/group__libvlc__audio.html LibVLC media player Collaboration diagram for LibVLC audio controls: Typedefs typedef enum libvlc_audio_output_device_types_t  libvlc_audio_output_device_types_t   A

Playback audio data from memory in windows

Continue previous article : Understand wave format, and implement a wave reader, In here , I will demonstrate how to play audio in windows. (Zeroth are wave format, you could refer to previous article.) First , the struct WAVEFORMATEXwould be used, t

[深入理解Android卷一全文-第七章]深入理解Audio系统

由于<深入理解Android 卷一>和<深入理解Android卷二>不再出版,而知识的传播不应该由于纸质媒介的问题而中断,所以我将在CSDN博客中全文转发这两本书的全部内容. 第7章  深入理解Audio系统 本章主要内容 ·  具体分析AudioTrack. ·  具体分析AudioFlinger. ·  具体分析AudioPolicyService. 本章涉及的源代码文件名称及位置 以下是本章分析的源代码文件名称及其位置. ·  AudioTrack.java framewor

How it works: Linux audio explained

from: tuxradar.com/content/how-it-works-linux-audio-explained How it works: Linux audio explained Posted at 11:30am on Thursday April 8th 2010 There's a problem with the state of Linux audio, and it's not that it doesn't always work. The issue is tha

Keil debugging techniques and alternative printf (SWO function)

One of the basic needs of the embedded software development through the terminal to output debugging information, generally two ways to achieve: one is the COM port on the UART and PC using a serial cable connecting plate through the PC HyperTerminal

(二)Audio子系统之new AudioRecord()

在上一篇文章<(一)Audio子系统之AudioRecord.getMinBufferSize>中已经介绍了AudioRecord如何获取最小缓冲区大小,接下来,继续分析AudioRecorder方法中的new AudioRecorder的实现,本文基于Android5.1,Android4.4请戳这里 函数原型: public AudioRecord(int audioSource, int sampleRateInHz, int channelConfig, int audioFormat

关于html5 audio 标签在ios系统上不能正常自动播放的解决办法

由于 iOS Safari 限制不允许 audio autoplay, 必须用户主动交互(例如 click)后才能播放 audio, 因此我们通过一个用户交互事件来主动 play 一下 audio. 这个坑相信大家都已经踩过了, 在 iOS 9 没出现以前, 这样的 hack 方案还是妥妥的.但 iOS 9 出现后, 发现这个方案"失效"了. 没有办法, 看来是时候升级一下 hack 方案了, 于是仔细看了下 audio 的事件. 对于能够自动播放时事件的顺序如下loadstart -