Vmware에 리눅스 설치했을때 다음과같은 오류가 난다면.

 The default sound device cannot be opened : 
시스템의 영역을 벗어난 장치 ID를 사용했습니다.
Sound will disconnected.


방법은 이렇게..
 방법 1
Analog Stereo Duplex 를 Analog Stereo Output 으로 바꿔주고 리부팅해본다.
 

Very late response,

but i might have a solution(if you did not find it on your own).

 

Just as you i was struggeling with the sound problem.

(Win 7, VM workstation 7.1.3 build 324285)

But found the problem within the ubuntu 10.10 installation.

goto

System-->Preferences-->Sound

Then hit the tab "Hardware".

On the bottem you will find "Profile:"

Witch has the value of "Analog Stereo Duplex".

Change the value to "Analog Stereo Output".

Hit "close".

 

Reboot the VM and if all goes well you shoeld have no more sound problems.

 


 방법 2

If like me you use MPD as a service daemon to listen to music, you might be annoyed anytime GDM start a pulseaudio process which prevents MPD from accessing the sound device.

Typically, the output of ps will produce the following output:

$ ps aux | grep pulse
gdm 1371 0.0 0.4 98180 4776 ? S<sl Jun13 0:00 /usr/bin/pulseaudio --start --log-target=syslog
gdm 1411 0.0 0.2 10748 2968 ? S Jun13 0:00 /usr/lib/pulseaudio/pulse/gconf-helper

One way to sort the situation would be to kill this process manually, unfortunately, next time you reboot, the issue will happen again.

Another solution is to simply tell GDM not to use the sound. This can be done by editing/var/lib/gdm/.pulse/client.conf and add:

autospawn = no
daemon-binary = /bin/true

Mind that this file or parent directories might not exist, hence you might have to create them.

And the last thing to do is to grant access to this file to gdm user:

# chown gdm:gdm /var/lib/gdm/.pulse/client.conf

Now, next time you will restart your graphical session, the sound device will be accessible by mpd.

 
 
 

참조페이지
http://communities.vmware.com/thread/291874

http://www.debuntu.org/how-disable-pulseaudio-and-sound-gdm

+ Recent posts