[tlinux-users:00000]は英語板のMLの内容を要約し翻訳したものです。
[tlinux-users:00000]は日本語板のMLの内容を要約したものです。
Q [tlinux-users:00657]2
SuSE6.1がインストールされたTecra 8000で音が出るように設定できたのですが、ボリュームが小さいのと、大きくすると歪みが出ます。どのように設定すれば改善できますか?
A [tlinux-users:00659]
私の場合はOSSとしてシステムを構成しています。
---------------------------------------------------
[jum@anubis jum]$ grep SOUND /usr/src/linux/.config
CONFIG_SOUND=m
# CONFIG_SOUND_CMPCI is not set
# CONFIG_SOUND_ES1370 is not set
# CONFIG_SOUND_ES1371 is not set
# CONFIG_SOUND_MAESTRO is not set
# CONFIG_SOUND_ESSSOLO1 is not set
# CONFIG_SOUND_ICH is not set
# CONFIG_SOUND_SONICVIBES is not set
# CONFIG_SOUND_TRIDENT is not set
# CONFIG_SOUND_MSNDCLAS is not set
# CONFIG_SOUND_MSNDPIN is not set
CONFIG_SOUND_OSS=m
# CONFIG_SOUND_PAS is not set
# CONFIG_SOUND_SB is not set
# CONFIG_SOUND_GUS is not set
# CONFIG_SOUND_MPU401 is not set
# CONFIG_SOUND_PSS is not set
# CONFIG_SOUND_MSS is not set
# CONFIG_SOUND_SSCAPE is not set
# CONFIG_SOUND_TRIX is not set
# CONFIG_SOUND_VIA82CXXX is not set
# CONFIG_SOUND_MAD16 is not set
# CONFIG_SOUND_WAVEFRONT is not set
# CONFIG_SOUND_CS4232 is not set
CONFIG_SOUND_OPL3SA2=m
# CONFIG_SOUND_MAUI is not set
# CONFIG_SOUND_SGALAXY is not set
# CONFIG_SOUND_AD1816 is not set
# CONFIG_SOUND_OPL3SA1 is not set
# CONFIG_SOUND_SOFTOSS is not set
CONFIG_SOUND_YM3812=m
# CONFIG_SOUND_VMIDI is not set
# CONFIG_SOUND_UART6850 is not set
# CONFIG_SOUND_NM256 is not set
# CONFIG_SOUND_YMPCI is not set
# CONFIG_LOWLEVEL_SOUND is not set
そして以下を /etc/conf.modulesに設定しています:
alias sound opl3sa2
post-install opl3sa2 modprobe "opl3"
pre-remove opl3sa2 modprobe "-r" "opl3"
post-remove opl3sa2 modprobe "-r" "ad1848" "mpu401"
options opl3sa2 io=0x538 mss_io=0x530 mpu_io=0x330 irq=5 dma=1 dma2=0
options opl3 io=0x388
---------------------------------------------------