|
|
发表于 2009-5-21 15:46:43
|
显示全部楼层
core2009.02不能自动载入alsa的module,/etc/modprobe.conf内容为空,自己照wiki加的
- $lspci -nn | grep Audio
- 00:05.0 Audio device [0403]: nVidia Corporation MCP61 High Definition Audio [10de:03f0] (rev a2)
复制代码- $ aplay -l
- **** List of PLAYBACK Hardware Devices ****
- card 0: NVidia [HDA NVidia], device 0: ALC861VD Analog [ALC861VD Analog]
- Subdevices: 0/1
- Subdevice #0: subdevice #0
- card 0: NVidia [HDA NVidia], device 1: ALC861VD Digital [ALC861VD Digital]
- Subdevices: 1/1
- Subdevice #0: subdevice #0
复制代码
MODULES=(... snd-mixer-oss snd-pcm-oss snd-hwdep snd-page-alloc snd-pcm snd-timer snd snd-hda-intel soundcore ...)
- $ lsmod | grep "snd"
- snd_hda_codec_realtek 189336 1
- snd_seq_oss 29696 0
- snd_seq_midi_event 6004 1 snd_seq_oss
- snd_seq 47856 4 snd_seq_oss,snd_seq_midi_event
- snd_hda_intel 24872 10
- snd_hda_codec 60212 2 snd_hda_codec_realtek,snd_hda_intel
- snd_seq_device 6016 2 snd_seq_oss,snd_seq
- snd_hwdep 6904 1 snd_hda_codec
- snd_pcm_oss 36832 0
- snd_pcm 66936 6 snd_hda_intel,snd_hda_codec,snd_pcm_oss
- snd_timer 19132 5 snd_seq,snd_pcm
- snd_page_alloc 8092 2 snd_hda_intel,snd_pcm
- snd_mixer_oss 14132 2 snd_pcm_oss
- snd 51108 23 snd_hda_codec_realtek,snd_seq_oss,snd_seq,snd_hda_intel,snd_hda_codec,snd_seq_device,snd_hwdep,snd_pcm_oss,snd_pcm,snd_timer,snd_mixer_oss
- soundcore 6112 2 snd
复制代码
我这还必须要有xorg.conf
- $ lspci -nn | grep VGA
- 00:0d.0 VGA compatible controller [0300]: nVidia Corporation GeForce 6100 nForce 405 [10de:03d1] (rev a2)
复制代码 |
|