Asus Xonar DGX no rear sound / mic. Front panel sound/mic ok. [SOLVED]

Hi guys,
I have a ASUS Xonar DGX PCI-E GX2.5 sound card since my onboard audio crapped out on my motherboard. I just did a first time install on my desktop and the rear portion of my card refuses to work. If I connect up my speakers to my analog output in the back I don't have any options in my sound manager for the analog output to just be a 2.0 system. I get 4.0, 4.1, 5.0, 5.1. All of which do not work obviously. Also my microphone doesn't work plugged into the actual card. If I plug them into the front panel audio, both the microphone and headphone out work. I did some searching, and it seems like a likely cause has something to do with amixer being multichannel. I tried several commands but wasn't successful in getting the audio to work through the back. Any help would be useful, I'm still trying to learn a lot about Arch while doing all this. Thanks in advance!
Solution. Using Alsamixer in terminal and selecting the analog out as stereo headphones, instead of stereo headphones (fp).
Last edited by 15goudreau (2014-08-04 21:56:36)

Search for vid and pid combination, ergo 13f6:8788 in your case. This should be one of the search terms, vid and pid could be also separated, other search terms could include oxygen, sonar, dgx and so on. Simple google search should turn something up.
Edit: The point is to locate a thread/post where the support for this card was implemented/talked about. It could provide some further insight.
The simplest approach would be to download linux-rt sources from aur with yaourt, modify PKGBUILD, compile and then install.
yaourt -G linux-rt
cd linux-rt
Copy this into PKGBUILD replacing the original:
# Maintainer: Joakim Hernberg <[email protected]>
# Contributor: Ray Rashif <[email protected]>
# Contributor: timbosa <[email protected]>
# Contributor: Tobias Powalowski <[email protected]>
# Contributor: Thomas Baechler <[email protected]>
pkgbase=linux-rt
pkgname=('linux-rt' 'linux-rt-headers' 'linux-rt-docs') # Build realtime patched -rt kernel
#pkgname=linux-custom # Build kernel with a different name
_kernelname=${pkgname#linux}
_basekernel=3.14
_releasever=12
_rtpatchver=rt9
pkgrel=1
_pkgver=${_basekernel}.${_releasever}
pkgver=${_basekernel}.${_releasever}_${_rtpatchver}
arch=('i686' 'x86_64')
url="http://rt.wiki.kernel.org/"
license=('GPL2')
makedepends=('xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc')
options=('!strip')
source=("https://www.kernel.org/pub/linux/kernel/v3.x/linux-${_basekernel}.tar.xz"
"https://www.kernel.org/pub/linux/kernel/v3.x/patch-${_pkgver}.xz"
"https://www.kernel.org/pub/linux/kernel/projects/rt/${_basekernel}/patch-${_pkgver}-${_rtpatchver}.patch.xz"
# the main kernel config files
'config' 'config.x86_64'
# standard config files for mkinitcpio ramdisk
"${pkgname}.preset"
'change-default-console-loglevel.patch'
'0001-Bluetooth-allocate-static-minor-for-vhci.patch'
'0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch'
'0003-module-remove-MODULE_GENERIC_TABLE.patch'
'0006-genksyms-fix-typeof-handling.patch'
'0007-asus-xonar-dgx.patch')
md5sums=('b621207b3f6ecbb67db18b13258f8ea8'
'89a5af1f3609d0c27e63fea298dd80ed'
'2aa3614e488efa939007a1c428406c30'
'a8126ad28c0a902a575397cacd099db2'
'843119a441c942efc5ec4b73c3c6ced5'
'eb14dcfd80c00852ef81ded6e826826a'
'6623d69fdc936d707990ca060dabd2ce'
'6839ddec74a5300beff1709a81b0e4f3'
'706549e8a05f33f7fc697f28c0ca71d2'
'd23fc66be93ebce698bd7da844789de1'
'16a161979f846b049e90daea907c35dd'
'SKIP')
prepare() {
cd "${srcdir}/linux-${_basekernel}"
# add upstream patch
msg "apply patch-${_pkgver}"
patch -p1 -i "${srcdir}/patch-${_pkgver}"
# add realtime patch
msg "applying patch-${_pkgver}-${_rtpatchver}.patch"
patch -p1 -i "${srcdir}/patch-${_pkgver}-${_rtpatchver}.patch"
# add latest fixes from stable queue, if needed
# http://git.kernel.org/?p=linux/kernel/git/stable/stable-queue.git
# set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param)
# remove this when a Kconfig knob is made available by upstream
# (relevant patch sent upstream: https://lkml.org/lkml/2011/7/26/227)
msg "change-default-console-loglevel.patch"
patch -p1 -i "${srcdir}/change-default-console-loglevel.patch"
# Fix vhci warning in kmod (to restore every kernel maintainer's sanity)
msg "0001-Bluetooth-allocate-static-minor-for-vhci.patch"
patch -p1 -i "${srcdir}/0001-Bluetooth-allocate-static-minor-for-vhci.patch"
# Fix atkbd aliases
msg "0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch"
patch -p1 -i "${srcdir}/0002-module-allow-multiple-calls-to-MODULE_DEVICE_TABLE-p.patch"
msg "0003-module-remove-MODULE_GENERIC_TABLE.patch"
patch -p1 -i "${srcdir}/0003-module-remove-MODULE_GENERIC_TABLE.patch"
# Fix generation of symbol CRCs
# http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=dc53324060f324e8af6867f57bf4891c13c6ef18
msg "0006-genksyms-fix-typeof-handling.patch"
patch -p1 -i "${srcdir}/0006-genksyms-fix-typeof-handling.patch"
msg "0007-asus-xonar-dgx.patch"
patch -p1 -i "${srcdir}/0007-asus-xonar-dgx.patch"
msg "All patches have successfully been applied"
if [ "${CARCH}" = "x86_64" ]; then
cat "${srcdir}/config.x86_64" > ./.config
else
cat "${srcdir}/config" > ./.config
fi
# if [ "${_kernelname}" != "" ]; then
# sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"${_kernelname}\"|g" ./.config
# sed -i "s|CONFIG_LOCALVERSION_AUTO=.*|CONFIG_LOCALVERSION_AUTO=n|" ./.config
# fi
# set extraversion to pkgrel
#sed -ri "s|^(EXTRAVERSION =).*|\1 -${pkgrel}|" Makefile
# set localversion to pkgrel-rt
sed -i "s|CONFIG_LOCALVERSION=.*|CONFIG_LOCALVERSION=\"-${pkgrel}${_kernelname}\"|g" ./.config
# don't run depmod on 'make install'. We'll do this ourselves in packaging
sed -i '2iexit 0' scripts/depmod.sh
# get kernel version
make prepare
# load configuration
# Configure the kernel. Replace the line below with one of your choice.
#make menuconfig # CLI menu for configuration
#make nconfig # new CLI menu for configuration
#make xconfig # X-based configuration
#make oldconfig # using old config from previous kernel version
# ... or manually edit .config
# rewrite configuration
yes "" | make config >/dev/null
# stop here
# this is useful to configure the kernel
#msg "Stopping build"; return 1
build() {
cd "${srcdir}/linux-${_basekernel}"
make ${MAKEFLAGS} LOCALVERSION= bzImage modules
package_linux-rt() {
pkgdesc="The Linux Kernel and modules (with realtime preemption)."
#groups=('base')
depends=('coreutils' 'linux-firmware' 'kmod' 'mkinitcpio>=0.7')
optdepends=('crda: to set the correct wireless channels of your country')
# provides=("kernel26${_kernelname}=${pkgver}")
# conflicts=("kernel26${_kernelname}")
# replaces=("kernel26${_kernelname}")
backup=("etc/mkinitcpio.d/${pkgname}.preset")
install=${pkgname}.install
cd "${srcdir}/linux-${_basekernel}"
KARCH=x86
# get kernel version
_kernver="$(make LOCALVERSION= kernelrelease)"
# _basekernel=${_kernver%%-*}
# _basekernel=${_basekernel%.*}
mkdir -p "${pkgdir}"/{lib/modules,lib/firmware,boot}
make LOCALVERSION= INSTALL_MOD_PATH="${pkgdir}" modules_install
cp arch/$KARCH/boot/bzImage "${pkgdir}/boot/vmlinuz-${pkgname}"
# add vmlinux
install -D -m644 vmlinux "${pkgdir}/usr/src/linux-${_kernver}/vmlinux"
# set correct depmod command for install
cp -f "${startdir}/${install}" "${startdir}/${install}.pkg"
true && install=${install}.pkg
sed \
-e "s/KERNEL_NAME=.*/KERNEL_NAME=${_kernelname}/" \
-e "s/KERNEL_VERSION=.*/KERNEL_VERSION=${_kernver}/" \
-i "${startdir}/${install}"
# install mkinitcpio preset file for kernel
install -D -m644 "${srcdir}/${pkgname}.preset" "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset"
sed \
-e "1s|'linux.*'|'${pkgname}'|" \
-e "s|ALL_kver=.*|ALL_kver=\"/boot/vmlinuz-${pkgname}\"|" \
-e "s|default_image=.*|default_image=\"/boot/initramfs-${pkgname}.img\"|" \
-e "s|fallback_image=.*|fallback_image=\"/boot/initramfs-${pkgname}-fallback.img\"|" \
-i "${pkgdir}/etc/mkinitcpio.d/${pkgname}.preset"
# remove build and source links
rm -f "${pkgdir}"/lib/modules/${_kernver}/{source,build}
# remove the firmware
rm -rf "${pkgdir}/lib/firmware"
# gzip -9 all modules to save 100MB of space
find "${pkgdir}" -name '*.ko' -exec gzip -9 {} \;
# make room for external modules
ln -s "../extramodules-${_basekernel}${_kernelname:--rt}" "${pkgdir}/lib/modules/${_kernver}/extramodules"
# add real version for building modules and running depmod from post_install/upgrade
mkdir -p "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--rt}"
echo "${_kernver}" > "${pkgdir}/lib/modules/extramodules-${_basekernel}${_kernelname:--rt}/version"
# Now we call depmod...
depmod -b "$pkgdir" -F System.map "$_kernver"
# move module tree /lib -> /usr/lib
mv "$pkgdir/lib" "$pkgdir/usr"
package_linux-rt-headers() {
pkgdesc="Header files and scripts for building modules for linux kernel (with realtime preemption)."
# provides=("kernel26${_kernelname}-headers=${pkgver}")
# conflicts=("kernel26${_kernelname}-headers")
# replaces=("kernel26${_kernelname}-headers")
install -dm755 "${pkgdir}/usr/lib/modules/${_kernver}"
cd "${pkgdir}/usr/lib/modules/${_kernver}"
ln -sf ../../../src/linux-${_kernver} build
cd "${srcdir}/linux-${_basekernel}"
install -D -m644 Makefile \
"${pkgdir}/usr/src/linux-${_kernver}/Makefile"
install -D -m644 kernel/Makefile \
"${pkgdir}/usr/src/linux-${_kernver}/kernel/Makefile"
install -D -m644 .config \
"${pkgdir}/usr/src/linux-${_kernver}/.config"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include"
for i in acpi asm-generic config crypto drm generated keys linux math-emu \
media net pcmcia scsi sound trace uapi video xen; do
cp -a include/${i} "${pkgdir}/usr/src/linux-${_kernver}/include/"
done
# copy arch includes for external modules
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/x86"
cp -a arch/x86/include "${pkgdir}/usr/src/linux-${_kernver}/arch/x86/"
# copy files necessary for later builds, like nvidia and vmware
cp Module.symvers "${pkgdir}/usr/src/linux-${_kernver}"
cp -a scripts "${pkgdir}/usr/src/linux-${_kernver}"
# fix permissions on scripts dir
chmod og-w -R "${pkgdir}/usr/src/linux-${_kernver}/scripts"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/.tmp_versions"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel"
cp arch/${KARCH}/Makefile "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
if [ "${CARCH}" = "i686" ]; then
cp arch/${KARCH}/Makefile_32.cpu "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/"
fi
cp arch/${KARCH}/kernel/asm-offsets.s "${pkgdir}/usr/src/linux-${_kernver}/arch/${KARCH}/kernel/"
# add docbook makefile
install -D -m644 Documentation/DocBook/Makefile \
"${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
# add dm headers
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
cp drivers/md/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/md"
# add inotify.h
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/linux"
cp include/linux/inotify.h "${pkgdir}/usr/src/linux-${_kernver}/include/linux/"
# add wireless headers
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
cp net/mac80211/*.h "${pkgdir}/usr/src/linux-${_kernver}/net/mac80211/"
# add dvb headers for external modules
# in reference to:
# http://bugs.archlinux.org/task/9912
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-core"
cp drivers/media/dvb-core/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-core/"
# and...
# http://bugs.archlinux.org/task/11194
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/"
cp include/config/dvb/*.h "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/"
# add dvb headers for http://mcentral.de/hg/~mrec/em28xx-new
# in reference to:
# http://bugs.archlinux.org/task/13146
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-frontends/"
cp drivers/media/dvb-frontends/lgdt330x.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-frontends/"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/i2c/"
cp drivers/media/i2c/msp3400-driver.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/i2c/"
# add dvb headers
# in reference to:
# http://bugs.archlinux.org/task/20402
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/usb/dvb-usb"
cp drivers/media/usb/dvb-usb/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/usb/dvb-usb/"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-frontends"
cp drivers/media/dvb-frontends/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/dvb-frontends/"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/tuners"
cp drivers/media/tuners/*.h "${pkgdir}/usr/src/linux-${_kernver}/drivers/media/tuners/"
# add xfs and shmem for aufs building
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}/mm"
cp fs/xfs/xfs_sb.h "${pkgdir}/usr/src/linux-${_kernver}/fs/xfs/xfs_sb.h"
# copy in Kconfig files
for i in `find . -name "Kconfig*"`; do
mkdir -p "${pkgdir}"/usr/src/linux-${_kernver}/`echo ${i} | sed 's|/Kconfig.*||'`
cp ${i} "${pkgdir}/usr/src/linux-${_kernver}/${i}"
done
chown -R root.root "${pkgdir}/usr/src/linux-${_kernver}"
find "${pkgdir}/usr/src/linux-${_kernver}" -type d -exec chmod 755 {} \;
# strip scripts directory
find "${pkgdir}/usr/src/linux-${_kernver}/scripts" -type f -perm -u+w 2>/dev/null | while read binary ; do
case "$(file -bi "${binary}")" in
*application/x-sharedlib*) # Libraries (.so)
/usr/bin/strip ${STRIP_SHARED} "${binary}";;
*application/x-archive*) # Libraries (.a)
/usr/bin/strip ${STRIP_STATIC} "${binary}";;
*application/x-executable*) # Binaries
/usr/bin/strip ${STRIP_BINARIES} "${binary}";;
esac
done
# remove unneeded architectures
rm -rf "${pkgdir}"/usr/src/linux-${_kernver}/arch/{alpha,arc,arm,arm26,arm64,avr32,blackfin,c6x,cris,frv,h8300,hexagon,ia64,m32r,m68k,m68knommu,metag,mips,microblaze,mn10300,openrisc,parisc,powerpc,ppc,s390,score,sh,sh64,sparc,sparc64,tile,unicore32,um,v850,xtensa}
package_linux-rt-docs() {
pkgdesc="Kernel hackers manual - HTML documentation that comes with the Linux kernel (with realtime preemption)."
# provides=("kernel26${_kernelname}-docs=${pkgver}")
# conflicts=("kernel26${_kernelname}-docs")
# replaces=("kernel26${_kernelname}-docs")
cd "${srcdir}/linux-${_basekernel}"
mkdir -p "${pkgdir}/usr/src/linux-${_kernver}"
cp -al Documentation "${pkgdir}/usr/src/linux-${_kernver}"
find "${pkgdir}" -type f -exec chmod 444 {} \;
find "${pkgdir}" -type d -exec chmod 755 {} \;
# remove a file already in linux package
rm -f "${pkgdir}/usr/src/linux-${_kernver}/Documentation/DocBook/Makefile"
# vim:set ts=8 sts=2 sw=2 et:
Then create the file '0007-asus-xonar-dgx.patch' with the following content:
--- a/sound/pci/oxygen/oxygen.c 2014-08-01 20:45:20.299191180 +0200
+++ b/sound/pci/oxygen/oxygen.c 2014-08-01 20:46:11.179947117 +0200
@@ -105,7 +105,7 @@
{ OXYGEN_PCI_SUBID(0x10b0, 0x0219), .driver_data = MODEL_CMEDIA_REF },
{ OXYGEN_PCI_SUBID(0x13f6, 0x0001), .driver_data = MODEL_CMEDIA_REF },
{ OXYGEN_PCI_SUBID(0x13f6, 0x0010), .driver_data = MODEL_CMEDIA_REF },
- { OXYGEN_PCI_SUBID(0x13f6, 0x8788), .driver_data = MODEL_CMEDIA_REF },
+ { OXYGEN_PCI_SUBID(0x13f6, 0x8788), .driver_data = MODEL_XONAR_DGX },
{ OXYGEN_PCI_SUBID(0x147a, 0xa017), .driver_data = MODEL_CMEDIA_REF },
{ OXYGEN_PCI_SUBID(0x1a58, 0x0910), .driver_data = MODEL_CMEDIA_REF },
/* Asus Xonar DG */
Finally run makepkg, should there be errors try removing the src dir first 'yes|rm -r src', then run makepkg again. Should there still be an error post here.
As for the patch, should there be no real difference there is also MODEL_XONAR_DG, might be worth trying out.
Last edited by emeres (2014-08-01 22:34:05)

Similar Messages

  • No pulseaudio profiles for digital audio - Asus Xonar DGX

    Hi all,
    I am unable to usa the digital sound ports of my Asus Xonar DGX card with pulseaudio. I see four profiles for analogue audio in pavucontrol but none for digital SP/DIF.
    ALSA recognizes the hardware:
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
    card 1: DGX [Xonar DGX], device 0: Multichannel [Multichannel]
    Subdevices: 0/1
    Subdevice #0: subdevice #0
    card 1: DGX [Xonar DGX], device 1: Digital [Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    and when using ALSA directly (e.g., by telling smplayer to use alsa device 1.1) digital audio works fine. However, pulseaudio apparently does not find device 1.1, I have only analogue profiles:
    $ pacmd list-cards
    2 card(s) available.
    index: 0
    index: 1
    name: <alsa_card.pci-0000_06_04.0>
    driver: <module-alsa-card.c>
    owner module: 25
    properties:
    alsa.card = "1"
    alsa.card_name = "Xonar DGX"
    alsa.long_card_name = "C-Media Oxygen HD Audio at 0xd000, irq 19"
    alsa.driver_name = "snd_oxygen"
    device.bus_path = "pci-0000:06:04.0"
    sysfs.path = "/devices/pci0000:00/0000:00:1c.7/0000:05:00.0/0000:06:04.0/sound/card1"
    device.bus = "pci"
    device.vendor.id = "13f6"
    device.vendor.name = "C-Media Electronics Inc"
    device.product.id = "8788"
    device.product.name = "CMI8788 [Oxygen HD Audio]"
    device.string = "1"
    device.description = "CMI8788 [Oxygen HD Audio]"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    profiles:
    input:analog-stereo: Analog Stereo Input (priority 60, available: unknown)
    output:analog-stereo: Analog Stereo Output (priority 6000, available: unknown)
    output:analog-stereo+input:analog-stereo: Analog Stereo Duplex (priority 6060, available: unknown)
    off: Off (priority 0, available: unknown)
    active profile: <output:analog-stereo+input:analog-stereo>
    sinks:
    alsa_output.pci-0000_06_04.0.analog-stereo/#1: CMI8788 [Oxygen HD Audio] Analog Stereo
    sources:
    alsa_output.pci-0000_06_04.0.analog-stereo.monitor/#1: Monitor of CMI8788 [Oxygen HD Audio] Analog Stereo
    alsa_input.pci-0000_06_04.0.analog-stereo/#2: CMI8788 [Oxygen HD Audio] Analog Stereo
    ports:
    analog-input-front-mic: Front Microphone (priority 8500, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-mic: Microphone (priority 8700, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-linein: Line In (priority 8100, latency offset 0 usec, available: unknown)
    properties:
    analog-input-aux: Analog Input (priority 8000, latency offset 0 usec, available: unknown)
    properties:
    analog-output-headphones: Headphones (priority 9000, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-headphones"
    Do you guys have any idea how to fix this?
    Thanks in advance,
    k0ol

    Hi all,
    I am unable to usa the digital sound ports of my Asus Xonar DGX card with pulseaudio. I see four profiles for analogue audio in pavucontrol but none for digital SP/DIF.
    ALSA recognizes the hardware:
    $ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
    card 1: DGX [Xonar DGX], device 0: Multichannel [Multichannel]
    Subdevices: 0/1
    Subdevice #0: subdevice #0
    card 1: DGX [Xonar DGX], device 1: Digital [Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    and when using ALSA directly (e.g., by telling smplayer to use alsa device 1.1) digital audio works fine. However, pulseaudio apparently does not find device 1.1, I have only analogue profiles:
    $ pacmd list-cards
    2 card(s) available.
    index: 0
    index: 1
    name: <alsa_card.pci-0000_06_04.0>
    driver: <module-alsa-card.c>
    owner module: 25
    properties:
    alsa.card = "1"
    alsa.card_name = "Xonar DGX"
    alsa.long_card_name = "C-Media Oxygen HD Audio at 0xd000, irq 19"
    alsa.driver_name = "snd_oxygen"
    device.bus_path = "pci-0000:06:04.0"
    sysfs.path = "/devices/pci0000:00/0000:00:1c.7/0000:05:00.0/0000:06:04.0/sound/card1"
    device.bus = "pci"
    device.vendor.id = "13f6"
    device.vendor.name = "C-Media Electronics Inc"
    device.product.id = "8788"
    device.product.name = "CMI8788 [Oxygen HD Audio]"
    device.string = "1"
    device.description = "CMI8788 [Oxygen HD Audio]"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    profiles:
    input:analog-stereo: Analog Stereo Input (priority 60, available: unknown)
    output:analog-stereo: Analog Stereo Output (priority 6000, available: unknown)
    output:analog-stereo+input:analog-stereo: Analog Stereo Duplex (priority 6060, available: unknown)
    off: Off (priority 0, available: unknown)
    active profile: <output:analog-stereo+input:analog-stereo>
    sinks:
    alsa_output.pci-0000_06_04.0.analog-stereo/#1: CMI8788 [Oxygen HD Audio] Analog Stereo
    sources:
    alsa_output.pci-0000_06_04.0.analog-stereo.monitor/#1: Monitor of CMI8788 [Oxygen HD Audio] Analog Stereo
    alsa_input.pci-0000_06_04.0.analog-stereo/#2: CMI8788 [Oxygen HD Audio] Analog Stereo
    ports:
    analog-input-front-mic: Front Microphone (priority 8500, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-mic: Microphone (priority 8700, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-linein: Line In (priority 8100, latency offset 0 usec, available: unknown)
    properties:
    analog-input-aux: Analog Input (priority 8000, latency offset 0 usec, available: unknown)
    properties:
    analog-output-headphones: Headphones (priority 9000, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-headphones"
    Do you guys have any idea how to fix this?
    Thanks in advance,
    k0ol

  • Front panel sound not working

    Front panel sound not working* Hello everyone,
    I've just bought a PCI Express X-Fi Titanium. So far everything works great with my 5. sound system, but I have problems with my front panel audio.
    My case only supports AC97 front panel audio, but has all individual connectors (so 7 single connectors, not one with 0 pins).
    I've already tried only connecting 5 pins (the two AC97 return pins unconnected) and connecting all 7 pins. In both ways the microphone works, but sadly not the headphone output. I also tried changing the two options in the driver but that changed nothing.
    I did some Google searching and found many reports where the sound itself works with an AC97 front panel on an HD soundcard, just no jack detection.
    Any ideas why that isn't working for me?

    ! Try here for pinouts of your jacks. I have a Cooler Master case that has AC97 and INTEL HD front panel jacks, but here is the kicker. The AC97 jacks come from the front panel first and then about fi've inches from this jack is an INTEL HD jack. A few wires are changed but perhaps these will help...
    http://www.intel.com/support/motherboards/desktop/sb/CS-0585.htm
    Cheers,
    Jerry Macguire

  • [SOLVED] No sound with Asus Xonar DGX

    I've got no sound so I've looked into journalctl and there were some bluez and pulseaudio related erros. So i.a.w. this topic https://bbs.archlinux.org/viewtopic.php?id=155714 I did `systemctl enable bluetooth.service`. No more errors but still no sound.
    Other things I did:
    - unplug/plug headphones
    - check whether anything is muted in alsamixer and the gnome sound applet (note: nothing is greyed-out, microphone picks up signals)
    snd_oxygen i.e. ASUS XONAR is the sound card I would like to use and I hook my headphones to.
    # cat /proc/asound/cards
    0 [DGX ]: CMI8786 - Xonar DGX
    C-Media Oxygen HD Audio at 0xee00, irq 17
    1 [HDMI ]: HDA-Intel - HDA ATI HDMI
    HDA ATI HDMI at 0xfd7fc000 irq 30
    # lsmod | grep '^snd' | column -t
    snd_hda_codec_hdmi 49263 1
    snd_hda_intel 26387 2
    snd_hda_controller 26857 1 snd_hda_intel
    snd_oxygen 23783 2
    snd_hda_codec 112621 3 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_controller
    snd_oxygen_lib 36709 1 snd_oxygen
    snd_hwdep 17244 1 snd_hda_codec
    snd_mpu401_uart 13507 1 snd_oxygen_lib
    snd_rawmidi 26806 1 snd_mpu401_uart
    snd_seq_device 13307 1 snd_rawmidi
    snd_pcm 88779 5 snd_hda_codec_hdmi,snd_oxygen_lib,snd_hda_codec,snd_hda_intel,snd_hda_controller
    snd_timer 26614 1 snd_pcm
    snd 73436 19 snd_oxygen,snd_hwdep,snd_timer,snd_hda_codec_hdmi,snd_pcm,snd_rawmidi,snd_oxygen_lib,snd_hda_codec,snd_hda_intel,snd_mpu401_uart,snd_seq_device
    # journalctl -b | grep -i bluez
    Apr 26 12:13:52 arch1411 dbus[326]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
    Apr 26 12:13:52 arch1411 dbus[326]: [system] Successfully activated service 'org.bluez'
    Apr 26 12:14:31 arch1411 /usr/lib/gdm/gdm-x-session[359]: Activating service name='org.bluez.obex'
    Apr 26 12:14:31 arch1411 /usr/lib/gdm/gdm-x-session[359]: Successfully activated service 'org.bluez.obex'
    [root@arch1411 hg1]# journalctl -b | grep -i audio
    Apr 26 12:13:50 arch1411 kernel: snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
    Apr 26 12:13:52 arch1411 rtkit-daemon[432]: Successfully made thread 431 of process 431 (/usr/bin/pulseaudio) owned by '1000' high priority at nice level -11.
    Apr 26 12:13:52 arch1411 rtkit-daemon[432]: Successfully made thread 456 of process 431 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Apr 26 12:13:52 arch1411 rtkit-daemon[432]: Successfully made thread 497 of process 431 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Apr 26 12:13:52 arch1411 rtkit-daemon[432]: Successfully made thread 498 of process 431 (/usr/bin/pulseaudio) owned by '1000' RT at priority 5.
    Apr 26 15:37:00 arch1411 vlc.desktop[876]: [00007ffabc009ee8] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    Apr 26 15:37:02 arch1411 vlc.desktop[876]: [00007ffae0c244f8] mpgatofixed32 audio converter error: libmad error: bad main_data_begin pointer
    # systemctl status pulseaudio.service
    ● pulseaudio.service
    Loaded: not-found (Reason: No such file or directory)
    Active: inactive (dead)
    # systemctl start pulseaudio.service
    Failed to start pulseaudio.service: Unit pulseaudio.service failed to load: No such file or directory.
    Should I proceed per https://bbs.archlinux.org/viewtopic.php?id=149501 and remove pulseaudio daemon from the /etc/rc.conf file?
    Last edited by bbarcher (2015-05-01 07:42:36)

    systemctl --all --no-pager|grep -i pulse
    returns nothing.
    Thank you for your input, V1del.
    $ pacmd list-cards
    2 card(s) available.
    index: 0
    name: <alsa_card.pci-0000_01_00.1>
    driver: <module-alsa-card.c>
    owner module: 6
    properties:
    alsa.card = "0"
    alsa.card_name = "HDA ATI HDMI"
    alsa.long_card_name = "HDA ATI HDMI at 0xfd7fc000 irq 30"
    alsa.driver_name = "snd_hda_intel"
    device.bus_path = "pci-0000:01:00.1"
    sysfs.path = "/devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card0"
    device.bus = "pci"
    device.vendor.id = "1002"
    device.vendor.name = "Advanced Micro Devices, Inc. [AMD/ATI]"
    device.product.id = "aa88"
    device.product.name = "Barts HDMI Audio [Radeon HD 6800 Series]"
    device.string = "0"
    device.description = "Barts HDMI Audio [Radeon HD 6800 Series]"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    profiles:
    output:hdmi-stereo: Digital Stereo (HDMI) Output (priority 5400, available: unknown)
    output:hdmi-surround: Digital Surround 5.1 (HDMI) Output (priority 300, available: unknown)
    output:hdmi-surround71: Digital Surround 7.1 (HDMI) Output (priority 300, available: unknown)
    off: Off (priority 0, available: unknown)
    active profile: <output:hdmi-stereo>
    sinks:
    alsa_output.pci-0000_01_00.1.hdmi-stereo/#0: Barts HDMI Audio [Radeon HD 6800 Series] Digital Stereo (HDMI)
    sources:
    alsa_output.pci-0000_01_00.1.hdmi-stereo.monitor/#0: Monitor of Barts HDMI Audio [Radeon HD 6800 Series] Digital Stereo (HDMI)
    ports:
    hdmi-output-0: HDMI / DisplayPort (priority 5900, latency offset 0 usec, available: no)
    properties:
    device.icon_name = "video-display"
    index: 1
    name: <alsa_card.pci-0000_04_04.0>
    driver: <module-alsa-card.c>
    owner module: 24
    properties:
    alsa.card = "1"
    alsa.card_name = "Xonar DGX"
    alsa.long_card_name = "C-Media Oxygen HD Audio at 0xee00, irq 17"
    alsa.driver_name = "snd_oxygen"
    device.bus_path = "pci-0000:04:04.0"
    sysfs.path = "/devices/pci0000:00/0000:00:05.0/0000:03:00.0/0000:04:04.0/sound/card1"
    device.bus = "pci"
    device.vendor.id = "13f6"
    device.vendor.name = "C-Media Electronics Inc"
    device.product.id = "8788"
    device.product.name = "CMI8788 [Oxygen HD Audio]"
    device.string = "1"
    device.description = "CMI8788 [Oxygen HD Audio]"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    profiles:
    input:analog-stereo: Analog Stereo Input (priority 60, available: unknown)
    output:analog-stereo: Analog Stereo Output (priority 6000, available: unknown)
    output:analog-stereo+input:analog-stereo: Analog Stereo Duplex (priority 6060, available: unknown)
    off: Off (priority 0, available: unknown)
    active profile: <output:analog-stereo+input:analog-stereo>
    sinks:
    alsa_output.pci-0000_04_04.0.analog-stereo/#1: CMI8788 [Oxygen HD Audio] Analog Stereo
    sources:
    alsa_output.pci-0000_04_04.0.analog-stereo.monitor/#1: Monitor of CMI8788 [Oxygen HD Audio] Analog Stereo
    alsa_input.pci-0000_04_04.0.analog-stereo/#2: CMI8788 [Oxygen HD Audio] Analog Stereo
    ports:
    analog-input-front-mic: Front Microphone (priority 8500, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-mic: Microphone (priority 8700, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-input-microphone"
    analog-input-linein: Line In (priority 8100, latency offset 0 usec, available: unknown)
    properties:
    analog-input-aux: Analog Input (priority 8000, latency offset 0 usec, available: unknown)
    properties:
    analog-output-headphones: Headphones (priority 9000, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-headphones"
    $ pacmd list-sinks
    2 sink(s) available.
    index: 0
    name: <alsa_output.pci-0000_01_00.1.hdmi-stereo>
    driver: <module-alsa-card.c>
    flags: HARDWARE DECIBEL_VOLUME LATENCY FLAT_VOLUME DYNAMIC_LATENCY
    state: SUSPENDED
    suspend cause: IDLE
    priority: 9050
    volume: front-left: 65536 / 100% / 0.00 dB, front-right: 65536 / 100% / 0.00 dB
    balance 0.00
    base volume: 65536 / 100% / 0.00 dB
    volume steps: 65537
    muted: no
    current latency: 0.00 ms
    max request: 0 KiB
    max rewind: 0 KiB
    monitor source: 0
    sample spec: s16le 2ch 44100Hz
    channel map: front-left,front-right
    Stereo
    used by: 0
    linked by: 0
    configured latency: 0.00 ms; range is 0.50 .. 1999.82 ms
    card: 0 <alsa_card.pci-0000_01_00.1>
    module: 6
    properties:
    alsa.resolution_bits = "16"
    device.api = "alsa"
    device.class = "sound"
    alsa.class = "generic"
    alsa.subclass = "generic-mix"
    alsa.name = "HDMI 0"
    alsa.id = "HDMI 0"
    alsa.subdevice = "0"
    alsa.subdevice_name = "subdevice #0"
    alsa.device = "3"
    alsa.card = "0"
    alsa.card_name = "HDA ATI HDMI"
    alsa.long_card_name = "HDA ATI HDMI at 0xfd7fc000 irq 30"
    alsa.driver_name = "snd_hda_intel"
    device.bus_path = "pci-0000:01:00.1"
    sysfs.path = "/devices/pci0000:00/0000:00:02.0/0000:01:00.1/sound/card0"
    device.bus = "pci"
    device.vendor.id = "1002"
    device.vendor.name = "Advanced Micro Devices, Inc. [AMD/ATI]"
    device.product.id = "aa88"
    device.product.name = "Barts HDMI Audio [Radeon HD 6800 Series]"
    device.string = "hdmi:0"
    device.buffering.buffer_size = "352768"
    device.buffering.fragment_size = "176384"
    device.access_mode = "mmap+timer"
    device.profile.name = "hdmi-stereo"
    device.profile.description = "Digital Stereo (HDMI)"
    device.description = "Barts HDMI Audio [Radeon HD 6800 Series] Digital Stereo (HDMI)"
    alsa.mixer_name = "ATI R6xx HDMI"
    alsa.components = "HDA:1002aa01,00aa0100,00100200"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    ports:
    hdmi-output-0: HDMI / DisplayPort (priority 5900, latency offset 0 usec, available: no)
    properties:
    device.icon_name = "video-display"
    active port: <hdmi-output-0>
    * index: 1
    name: <alsa_output.pci-0000_04_04.0.analog-stereo>
    driver: <module-alsa-card.c>
    flags: HARDWARE HW_MUTE_CTRL HW_VOLUME_CTRL DECIBEL_VOLUME LATENCY FLAT_VOLUME DYNAMIC_LATENCY
    state: SUSPENDED
    suspend cause: IDLE
    priority: 9059
    volume: front-left: 65536 / 100% / 0.00 dB, front-right: 65536 / 100% / 0.00 dB
    balance 0.00
    base volume: 65536 / 100% / 0.00 dB
    volume steps: 65537
    muted: no
    current latency: 0.00 ms
    max request: 0 KiB
    max rewind: 0 KiB
    monitor source: 1
    sample spec: s16le 2ch 48000Hz
    channel map: front-left,front-right
    Stereo
    used by: 0
    linked by: 0
    configured latency: 0.00 ms; range is 0.50 .. 1837.50 ms
    card: 1 <alsa_card.pci-0000_04_04.0>
    module: 24
    properties:
    alsa.resolution_bits = "16"
    device.api = "alsa"
    device.class = "sound"
    alsa.class = "generic"
    alsa.subclass = "generic-mix"
    alsa.name = "Multichannel"
    alsa.id = "Multichannel"
    alsa.subdevice = "0"
    alsa.subdevice_name = "subdevice #0"
    alsa.device = "0"
    alsa.card = "1"
    alsa.card_name = "Xonar DGX"
    alsa.long_card_name = "C-Media Oxygen HD Audio at 0xee00, irq 17"
    alsa.driver_name = "snd_oxygen"
    device.bus_path = "pci-0000:04:04.0"
    sysfs.path = "/devices/pci0000:00/0000:00:05.0/0000:03:00.0/0000:04:04.0/sound/card1"
    device.bus = "pci"
    device.vendor.id = "13f6"
    device.vendor.name = "C-Media Electronics Inc"
    device.product.id = "8788"
    device.product.name = "CMI8788 [Oxygen HD Audio]"
    device.string = "hw:1"
    device.buffering.buffer_size = "352800"
    device.buffering.fragment_size = "352800"
    device.access_mode = "mmap+timer"
    device.profile.name = "analog-stereo"
    device.profile.description = "Analog Stereo"
    device.description = "CMI8788 [Oxygen HD Audio] Analog Stereo"
    alsa.mixer_name = "CMI8786"
    alsa.components = "CS4245 CMI8786"
    module-udev-detect.discovered = "1"
    device.icon_name = "audio-card-pci"
    ports:
    analog-output-headphones: Headphones (priority 9000, latency offset 0 usec, available: unknown)
    properties:
    device.icon_name = "audio-headphones"
    active port: <analog-output-headphones>
    After all of the recommended solutions from the wiki I still get
    $ systemctl status pulseaudio.service
    ● pulseaudio.service
    Loaded: not-found (Reason: No such file or directory)
    Active: inactive (dead)
    $ pulseaudio -vvvv
    I: [pulseaudio] main.c: setrlimit(RLIMIT_NICE, (31, 31)) failed: Operation not permitted
    I: [pulseaudio] main.c: setrlimit(RLIMIT_RTPRIO, (9, 9)) failed: Operation not permitted
    D: [pulseaudio] core-rtclock.c: Timer slack is set to 50 us.
    D: [pulseaudio] core-util.c: RealtimeKit worked.
    I: [pulseaudio] core-util.c: Successfully gained nice level -11.
    I: [pulseaudio] main.c: This is PulseAudio 6.0
    D: [pulseaudio] main.c: Compilation host: x86_64-unknown-linux-gnu
    D: [pulseaudio] main.c: Compilation CFLAGS: -march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4 -Wall -W -Wextra -Wno-long-long -Wno-overlength-strings -Wunsafe-loop-optimizations -Wundef -Wformat=2 -Wlogical-op -Wsign-compare -Wformat-security -Wmissing-include-dirs -Wformat-nonliteral -Wpointer-arith -Winit-self -Wdeclaration-after-statement -Wfloat-equal -Wmissing-prototypes -Wredundant-decls -Wmissing-declarations -Wmissing-noreturn -Wshadow -Wendif-labels -Wcast-align -Wstrict-aliasing -Wwrite-strings -Wno-unused-parameter -ffast-math -fno-common -fdiagnostics-show-option -fdiagnostics-color=auto
    D: [pulseaudio] main.c: Running on host: Linux x86_64 3.19.3-3-ARCH #1 SMP PREEMPT Wed Apr 8 14:10:00 CEST 2015
    D: [pulseaudio] main.c: Found 6 CPUs.
    I: [pulseaudio] main.c: Page size is 4096 bytes
    D: [pulseaudio] main.c: Compiled with Valgrind support: no
    D: [pulseaudio] main.c: Running in valgrind mode: no
    D: [pulseaudio] main.c: Running in VM: no
    D: [pulseaudio] main.c: Optimized build: yes
    D: [pulseaudio] main.c: FASTPATH defined, only fast path asserts disabled.
    I: [pulseaudio] main.c: Machine ID is d36c9fa4b78f4c8cae7f7ad7897683e3.
    I: [pulseaudio] main.c: Session ID is c1.
    I: [pulseaudio] main.c: Using runtime directory /run/user/1000/pulse.
    I: [pulseaudio] main.c: Using state directory /home/hg1/.config/pulse.
    I: [pulseaudio] main.c: Using modules directory /usr/lib/pulse-6.0/modules.
    I: [pulseaudio] main.c: Running in system mode: no
    E: [pulseaudio] pid.c: Daemon already running.
    E: [pulseaudio] main.c: pa_pid_file_create() failed.
    Last edited by bbarcher (2015-04-27 19:16:41)

  • Front panel sound.. please help

    hi,
    My motherboard is MSI 915G Combo. It has CMEDIA AZALIA sound chip which supports multistreaming functionality. The sound output can be taken from frontpanel as well as backpanel audio connectors. But the frontpanel connectors are provided as pins in this motherboard. I got a Mercury KM08 ATX cabinet which has frontpanel ports. But how can I connect the pins?? The cabinet have wires to connect the pins to frontpanel.
    There are 7 wires for front panel connectors in cabinet which are
    1) Line out FR
    2) Line out RR
    3) Line out FL
    4) Line out RL
    5) MIC IN(R)
    6) GND
    7) MIC Power (L)
    In my mobos manual the front pannel connection design is given as,
    Pin1 - PORT 1L - Analog port 1-left channel
    Pin2 - GND - Ground
    Pin3 - PORT 1R - Analog port 1- Right channel
    Pin4 - PRESENCE# - Active low signal
    Pin5 - PORT 2R - Analog Port 2-Right Channel
    Pin6 - SENSE1_RETIRN - jack detection return from front pannel jack1
    Pin7 - SENSE_SEND - jack detection sense line
    Pin8 - KEY - connector key
    Pin9 - PORT 2L - Analog Port2-left channel
    Pin10 - SENSE2_RETIRN - jack detection return from front pannel jack2
    Please help me to connect the pins to the frontpanel connectors of the cabinet!!!!
    also whats are jack sensing pins?? what are they used for??

    Jack Sensing is a feature that allows the codec to choose what kind of device (mic, speaker or line-in) you're plugging into the jack by sensing its impedance. It's of no use here for your front panel chassis.
    What I would try is to match the PORT 1L/1R with your Line Out FL/FR, and PORT 2L/2R with LineOut RL/RR. There is no MIC connection I guess from the pin names.

  • Front panel sound ports

    Feeling quite pleased with myself because my first build is just about finished ( have a mass of cables to tidy up and tie back) However I do have one minor problem, I can’t get any sound out of the front panel (top panel in this case) headphone socket.
    The front panel connector JAUD1 has nine  pins and pin 7 is for future use according to the motherboard manual and pin4 is filtered 5V which I don’t have a plug for.
    I have one lead with 3 connectors for mic ,  ground and mic power which go to pins 1,2 and 3.  Another lead has right in & right out and left in &left out and ground. These go to pins 6,7,9&10. There is only one pin marked ground and this is already in use. So I haven’t been able to connect this ground. Is this what is stopping it working.
    So although it is only a minor problem, it would be nice to have the headphone socket working. Anyone any thoughts?
    Jeantech Apollo
    Antec  True blue 480W PSU
    MSI k8N Neo2 Platinum
    AMD 64 3500 Winchester
    200 GB Seagate SATA HDD
    XFX 6800GT
    Soundblaster live 24bit
    2GB Crucial 3200
    Sony DVD/RW
    Sony CD/RW/DVD combo
    19” Viewsonic VX912

    I really can't comment on the wiring exactly without seeing the schematics for the pins out from the motherboard.  However, you apparently have a sound card installed so I am wondering what leads you are plugging your front case jacks into?  I personally never have two sound capabilities activated in my systems.  Since all MBs now come with integrated sound and I always use a sound card, I disable the onboard sound.  I know if the onboard is enabled most boards have pins you can connect to the case sound jacks.  When that is done you usually lose the sound out from the back panels jacks.  So where do you have your front panel leads connected to?  I have seen a couple of cases that have a formal mini-plug that you can plug into the card or the MB to bring the sound to the front of the case.  Just some things to think about, probably didn't exactly answer your question.

  • MEGA 180 front panel's MIC socket doesn't work

    but the MIC socket behind works fine?
    so which part could be the problem? the mainboard?or the front MIC socket itself?

    Quote from: Dr Stu on 26-August-05, 00:59:20
    does the front headphone socket work? open the mega case and check the connections from the front panel to the mainboard
    the front headphone socket works fine
    Quote from: otrofox on 26-August-05, 05:25:46
    Are you sure that it doesn't work? That line is called "microphone2" and must be activated separately.
    what do you mean "activated separately"? is that means that i can't use the front MIC socket when the behind one is plugged?

  • MOVED: K8t neo fir front panel sound out?

    This topic has been moved to AMD64 ATI/SiS/VIA based board.
    https://forum-en.msi.com/index.php?topic=117772.0
    Was in the wrong board.

     Yes they need to be on if front panel is not connected as mentioned in the manual or you will not have have output at the rear connection. If front panel is connected you should have rear panel output if nothing is plugged in on the front panel output.
     The jack acts as a switch, nothing plugged in, output to rear which will be the same as if jumpers were on.

  • 890fxa-gd70 front panel sound

    hi, i want to ask if 890fxa-gd70 supports ac97 front panel audio?..
    i know the board has hdaudio but my case only has ac97 connection..
    i want to know if i can safely plug my ac97 front panel audio to the board..
    if not supported how can i use my ac97 front panel audio to my 890fxa-gd70..
    will i need to buy a new hdaudio wire or can i just rearrange the pins in my ac97 to make it work..
    thanks..

    hmm.. does that mean it is safe to plug my ac97 front panel to my mobo?..
    btw i saw this on the net:
    AC'97 front panel audio does not work with onboard HD Audio
    The onboard front panel audio connector provides microphone in and line out signals for the front panel. Many chassis manufacturers offer chassis with front panel audio ports and cabling. Those front panel solutions may support either AC’97 audio or High Definition (HD) audio.
    The onboard audio headers on Intel Desktop Boards with the Intel® 945 chipset and later support HD audio.
    Compatibility:
    HD front panel audio solutions should be plugged into HD onboard headers.
    AC’97 front panel audio solutions should be plugged into AC’97 onboard headers.
    Some AC’97 front panel audio solutions (but not all) may work with HD onboard headers.
    If you want connect an AC’97 front panel audio system to HD onboard headers, try these steps:
    Connect Mic_IN (MIC) to MIC2_L.
    Connect Audio_R (RIN) to OUT2_R
    Connect Audio_L (LIN) to OUT2_L.
    MIC_RET and OUT_RET are for HD audio only; you don't need to connect them for AC'97 audio.
    Intel does not validate AC’97 front panel audio solutions with boards using HD audio. If the steps above do not work, you will need to use an HD front panel audio solution for full compatibility with Intel Desktop Boards using Intel 945 chipsets and later.
    but i dont know what pin# are:
    Mic_IN (MIC) : MIC2_L.
    Audio_R (RIN) : OUT2_R
    Audio_L (LIN) : OUT2_L.
    MIC_RET and OUT_RET
    i looked at the link you gave me but i cant see any of the listed names there..

  • XFi Fatality pro series and front panel sound -lack of- so la

    <span class="j2">Had <span class="j2">to <span class="j2">chip <span class="j2">in <span class="j2">on <span class="j2">this <span class="j2">forum <span class="j2">as <span class="j2">I'm <span class="j2">quite <span class="j2">furious <span class="j2">with <span class="j2">Creative <span class="j3">-and <span class="j2">I <span class="j2">know <span class="j2">I'm <span class="j2">not <span class="j2">the <span class="j2">only <span class="j2">one, <span class="j2">and <span class="j2">since <span class="j3">CL's <span class="j2">people <span class="j2">read <span class="j2">this <span class="j2">board, <span class="j2">then <span class="j2">could <span class="j2">you <span class="j2">please <span class="j2">take <span class="j2">notice <span class="j2">of <span class="j2">your <span class="j3">custormers? <span class="j2">After <span class="j2">all, <span class="j2">aren't <span class="j2">we <span class="j2">the <span class="j2">ones <span class="j2">thanks <span class="j2">to <span class="j2">whom <span class="j2">there <span class="j2">is <span class="j2">still <span class="j2">a <span class="j3">CL? <span class="j2">Therefore <span class="j2">could <span class="j2">you <span class="j2">please <span class="j2">stop <span class="j2">insulting <span class="j2">our <span class="j2">intelligence <span class="j2">and <span class="j2">regard <span class="j2">us <span class="j2">as <span class="j2">milking <span class="j2">cows <span class="j2">as <span class="j2">well?
    <span class="j2">When <span class="j2">you've <span class="j2">spent <span class="j2">quite <span class="j2">a <span class="j2">lot <span class="j2">of <span class="j2">money <span class="j2">on <span class="j2">a *<span class="j2">high <span class="j2">end* <span class="j2">card <span class="j2">like <span class="j2">a <span class="j3">X-Fi <span class="j3">Xtreme <span class="j2">gamer <span class="j2">Fatality, <span class="j2">who <span class="j2">in <span class="j2">on <span class="j2">earth <span class="j2">would <span class="j2">be <span class="j2">willing <span class="j2">and <span class="j2">happy <span class="j2">to <span class="j2">have <span class="j2">to <span class="j2">fork <span class="j2">out <span class="j2">for <span class="j2">a <span class="j2">front <span class="j2">panel <span class="j2">costing <span class="j2">nearly <span class="j2">half <span class="j2">the <span class="j2">price <span class="j2">of <span class="j2">the <span class="j2">card <span class="j2">just <span class="j2">for <span class="j2">the <span class="j2">privilege <span class="j2">of <span class="j2">being <span class="j2">able <span class="j2">to <span class="j2">connect <span class="j2">your <span class="j2">case <span class="j2">front <span class="j2">panel <span class="j2">headphone <span class="j2">and <span class="j3">mic <span class="j2">to <span class="j2">the <span class="j2">sound <span class="j2">card?! <span class="j2">Do <span class="j2">I <span class="j2">expect <span class="j2">the <span class="j2">connection <span class="j2">from <span class="j2">the <span class="j2">card <span class="j2">to <span class="j2">front <span class="j2">case <span class="j2">audio <span class="j2">to <span class="j2">come <span class="j2">as <span class="j2">standard? <span class="j2">YES. <span class="j2">Do <span class="j2">I <span class="j2">take <span class="j2">it <span class="j2">kindly <span class="j2">to <span class="j2">see <span class="j2">a <span class="j2">proprietary <span class="j2">connection <span class="j2">preventing <span class="j2">me <span class="j2">to <span class="j2">do <span class="j2">that <span class="j2">unless <span class="j2">I <span class="j2">buy <span class="j2">another <span class="j2">expensi've <span class="j2">toy <span class="j2">from <span class="j3">CL, <span class="j2">or <span class="j2">do <span class="j2">I <span class="j2">want <span class="j2">to <span class="j2">have <span class="j2">to <span class="j2">mod <span class="j2">a <span class="j2">cable <span class="j2">or <span class="j2">buy <span class="j2">a <span class="j3">modded <span class="j2">one <span class="j2">to <span class="j2">that <span class="j2">effect? <span class="j2">NO! <span class="j3">CL <span class="j2">has <span class="j2">voiced <span class="j2">concerns <span class="j2">that <span class="j2">people <span class="j2">making/<span class="j2">using <span class="j3">modded <span class="j2">cables <span class="j2">could <span class="j2">result in damage/<span class="j2">fry <span class="j2">the <span class="j2">card, <span class="j2">well <span class="j2">who's <span class="j2">fault <span class="j2">is <span class="j2">that <span class="j2">if <span class="j2">not <span class="j3">Creative's? <span class="j2">How <span class="j2">about <span class="j2">doing <span class="j2">the <span class="j2">decent <span class="j2">thing <span class="j2">and <span class="j2">provide <span class="j2">the <span class="j2">cable <span class="j2">WITH <span class="j2">the <span class="j2">card <span class="j2">in <span class="j2">the <span class="j2">first <span class="j2">place, <span class="j2">and <span class="j2">even <span class="j2">more <span class="j2">decent, <span class="j2">why <span class="j2">not <span class="j2">provide <span class="j2">these <span class="j2">cards' <span class="j2">owners <span class="j2">with <span class="j2">one? <span class="j2">Can't <span class="j2">be <span class="j2">the <span class="j2">case <span class="j2">of <span class="j2">not <span class="j2">having <span class="j2">such <span class="j2">cables <span class="j2">since <span class="j3">CL <span class="j2">is <span class="j2">making <span class="j2">the <span class="j2">proprietary <span class="j2">connector <span class="j2">for <span class="j2">their <span class="j2">front <span class="j2">panel <span class="j2">in <span class="j2">the <span class="j2">first <span class="j2">place. <span class="j2">If <span class="j2">insisting <span class="j2">no <span class="j2">such <span class="j2">cables <span class="j2">are <span class="j2">available, <span class="j2">then <span class="j2">make <span class="j2">them!
    <span class="j2">Meanwhile <span class="j2">cards' <span class="j2">owners <span class="j2">are <span class="j2">left <span class="j2">with <span class="j2">little <span class="j2">alternati've <span class="j2">if <span class="j2">they <span class="j2">cannot <span class="j2">have <span class="j2">their <span class="j2">onboard <span class="j2">sound (<span class="j2">to <span class="j2">connect <span class="j2">to <span class="j2">the <span class="j2">case <span class="j2">audio) <span class="j2">and <span class="j2">their <span class="j3">CL <span class="j2">card <span class="j2">coexist <span class="j2">without <span class="j2">conflict. <span class="j2">This <span class="j2">is <span class="j2">lame <span class="j2">at <span class="j2">best, <span class="j2">arrogant <span class="j2">at <span class="j2">worse <span class="j2">and <span class="j2">the <span class="j2">same <span class="j2">approach <span class="j2">as <span class="j2">with <span class="j2">the <span class="j2">cards' <span class="j2">drivers <span class="j3">-will <span class="j2">not <span class="j2">go <span class="j2">there <span class="j2">as <span class="j2">there <span class="j2">are <span class="j2">enough <span class="j2">threads <span class="j2">about <span class="j2">that <span class="j2">but <span class="j2">for <span class="j2">the <span class="j2">record, <span class="j2">if <span class="j2">it <span class="j2">wasn't <span class="j2">for <span class="j2">a <span class="j2">certain <span class="j2">someone's <span class="j2">functional <span class="j2">drivers, <span class="j2">how <span class="j2">many <span class="j2">cards <span class="j2">would <span class="j2">still <span class="j2">be <span class="j2">in <span class="j2">use? <span class="j2">I <span class="j2">guess <span class="j2">it <span class="j2">could <span class="j2">be <span class="j2">said <span class="j2">I <span class="j2">was <span class="j2">stupid <span class="j2">enough <span class="j2">to <span class="j2">get <span class="j2">this <span class="j2">card, <span class="j2">should <span class="j2">have <span class="j2">known <span class="j2">better <span class="j2">and <span class="j2">go <span class="j2">for <span class="j2">another <span class="j2">make <span class="j2">which <span class="j2">would <span class="j2">not <span class="j2">be <span class="j2">giving <span class="j2">me <span class="j2">such <span class="j2">grief! <span class="jR$489"><span class="j2">I <span class="j4">emphasize <span class="j2">again, <span class="j2">these <span class="j2">cards <span class="j2">aren't <span class="j2">cheap <span class="j2">to <span class="j2">buy <span class="j2">so <span class="j2">Creative, <span class="j2">I <span class="j2">am <span class="j2">NOT <span class="j2">interested <span class="j2">in <span class="j2">the <span class="j2">forthcoming <span class="j3">X-Fi2 <span class="j2">series, <span class="j2">just <span class="j2">provide <span class="j2">the <span class="j2">present <span class="j2">ones <span class="j2">with <span class="j2">full <span class="j2">functionality <span class="j2">and <span class="j2">the <span class="j2">means <span class="j2">to <span class="j2">at <span class="j2">least <span class="j2">connect <span class="j2">to <span class="j2">our <span class="j2">case <span class="j2">audio <span class="j2">without <span class="j2">any <span class="j2">more <span class="j2">expense <span class="j2">on <span class="j2">our <span class="j2">part.

    Thanks for that, Cornholio_OH! I've already looked into PC Performance's adapter and indeed noticed that those using it said PCP are wiring it wrong. So I got in touch with PCP about it and they deny the wrong wiring, stating that there's no mistake in how the cable is made but only how cases front ports are wired and grounded (?!). Also, they only provide the adapter for AC97 and not HD audio and some people had trouble with the AC97 connection, though I suppose that's better than nothing
    Though you are right that it's an alternati've that may be worth the money, personally I strongly bulk at having to get one of those, especially when adding shipping costs to Europe, it no longer will be worth the money! When nowadays there are cards that do perform as well if not surpassing CL's and who provide the adequate connection and at no extra cost, I am strongly inclined to getting rid of the Fatality -practically brand new one by the way- and go for another make. Call it stubbornness or principle, if us consumers just roll over and give in having to either buy more accessories or modded cables, we're sending the wrong signal to CL and everyone else that it's okay to take us for stupid and milk us.

  • [SOLVED] Xonar DGX

    When the 3.14 kernel came out my sound stop working so I've been sticking to the 3.10 LTS release. Now that 3.14 is the LTS release, my audio is no longer working again. I am using the ASUS Xonar DGX sound card after my motherboard's sound card broke. I have tried both ALSA and PulseAudio and every kernel release up to the current 3.15-6 to no avail. Both the system and ALSA detect the sound card so I compiled my own kernel to make sure the module is enable which also did not work. Would this mean I have to stick to 3.13 forever (or until I get a new desktop)?
    lspci | grep media
    04:04.0 Multimedia audio controller: C-Media Electronics Inc CMI8788 [Oxygen HD Audio]
    Last edited by Name Taken (2014-07-20 14:34:57)

    emeres wrote:
    Screenshots are insufficient for troubleshooting. Please post:
    aplay -lL;
    lspci -nn | grep -i audio;
    lsmod | grep ^snd;
    systool -v -m snd_oxygen;
    amixer;
    As far as I recall, CMI8788 Oxygen uses snd-oxygen, should this have changed correct the systool command.
    null
    Discard all samples (playback) or generate zero samples (capture)
    default:CARD=DGX
    Xonar DGX, Multichannel
    Default Audio Device
    sysdefault:CARD=DGX
    Xonar DGX, Multichannel
    Default Audio Device
    front:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    Front speakers
    surround21:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    2.1 Surround output to Front and Subwoofer speakers
    surround40:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    4.0 Surround output to Front and Rear speakers
    surround41:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    4.1 Surround output to Front, Rear and Subwoofer speakers
    surround50:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    5.0 Surround output to Front, Center and Rear speakers
    surround51:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers
    surround71:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers
    iec958:CARD=DGX,DEV=0
    Xonar DGX, Multichannel
    IEC958 (S/PDIF) Digital Audio Output
    **** List of PLAYBACK Hardware Devices ****
    card 0: DGX [Xonar DGX], device 0: Multichannel [Multichannel]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: DGX [Xonar DGX], device 1: Digital [Digital]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    04:04.0 Multimedia audio controller [0401]: C-Media Electronics Inc CMI8788 [Oxygen HD Audio] [13f6:8788]
    snd_oxygen 16679 0
    snd_oxygen_lib 30333 1 snd_oxygen
    snd_mpu401_uart 5979 1 snd_oxygen_lib
    snd_rawmidi 20278 1 snd_mpu401_uart
    snd_seq_device 5244 1 snd_rawmidi
    snd_pcm 83207 1 snd_oxygen_lib
    snd_timer 19294 1 snd_pcm
    snd 61276 7 snd_oxygen,snd_timer,snd_pcm,snd_rawmidi,snd_oxygen_lib,snd_mpu401_uart,snd_seq_device
    Module = "snd_oxygen"
    Attributes:
    coresize = "16679"
    initsize = "0"
    initstate = "live"
    refcnt = "0"
    taint = ""
    uevent = <store method only>
    Parameters:
    enable = "Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y,Y"
    id = "(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null),(null)"
    index = "-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1"
    Sections:
    .bss = "0xffffffffa05c7300"
    .data = "0xffffffffa05c6e00"
    .exit.text = "0xffffffffa05c5d55"
    .gnu.linkonce.this_module= "0xffffffffa05c7080"
    .init.text = "0xffffffffa05ca000"
    .note.gnu.build-id = "0xffffffffa05c5d68"
    .rodata = "0xffffffffa05c5dc0"
    .rodata.str1.1 = "0xffffffffa05c67b0"
    .rodata.str1.8 = "0xffffffffa05c6db8"
    .strtab = "0xffffffffa05cb2e0"
    .symtab = "0xffffffffa05ca020"
    .text = "0xffffffffa05c4000"
    __mcount_loc = "0xffffffffa05c6b40"
    __param = "0xffffffffa05c6ae0"
    Simple mixer control 'Headphone',0
    Capabilities: pvolume pswitch pswitch-joined
    Playback channels: Front Left - Front Right
    Limits: Playback 0 - 255
    Mono:
    Front Left: Playback 255 [100%] [0.00dB] [on]
    Front Right: Playback 255 [100%] [0.00dB] [on]
    Simple mixer control 'Front Mic',0
    Capabilities: cvolume cswitch cswitch-joined cswitch-exclusive
    Capture exclusive group: 0
    Capture channels: Front Left - Front Right
    Limits: Capture -24 - 24
    Front Left: Capture 0 [50%] [0.00dB] [off]
    Front Right: Capture 0 [50%] [0.00dB] [off]
    Simple mixer control 'Line',0
    Capabilities: cvolume cswitch cswitch-joined cswitch-exclusive
    Capture exclusive group: 0
    Capture channels: Front Left - Front Right
    Limits: Capture -24 - 24
    Front Left: Capture 0 [50%] [0.00dB] [off]
    Front Right: Capture 0 [50%] [0.00dB] [off]
    Simple mixer control 'Mic',0
    Capabilities: cvolume cswitch cswitch-joined cswitch-exclusive
    Capture exclusive group: 0
    Capture channels: Front Left - Front Right
    Limits: Capture -24 - 24
    Front Left: Capture 0 [50%] [0.00dB] [on]
    Front Right: Capture 0 [50%] [0.00dB] [on]
    Simple mixer control 'IEC958',0
    Capabilities: pswitch pswitch-joined
    Playback channels: Mono
    Mono: Playback [on]
    Simple mixer control 'IEC958 Loopback',0
    Capabilities: pswitch pswitch-joined
    Playback channels: Mono
    Mono: Playback [off]
    Simple mixer control 'IEC958 Validity Check',0
    Capabilities: cswitch cswitch-joined
    Capture channels: Mono
    Mono: Capture [off]
    Simple mixer control 'Aux',0
    Capabilities: cvolume cswitch cswitch-joined cswitch-exclusive
    Capture exclusive group: 0
    Capture channels: Front Left - Front Right
    Limits: Capture -24 - 24
    Front Left: Capture 24 [100%] [12.00dB] [off]
    Front Right: Capture 24 [100%] [12.00dB] [off]
    Simple mixer control 'ADC High-pass Filter',0
    Capabilities: cenum
    Items: 'Active' 'Frozen'
    Item0: 'Active'
    Simple mixer control 'Analog Input Monitor',0
    Capabilities: pvolume pvolume-joined pswitch pswitch-joined
    Playback channels: Mono
    Limits: Playback 0 - 1
    Mono: Playback 1 [100%] [0.00dB] [off]
    Simple mixer control 'Analog Output',0
    Capabilities: penum
    Items: 'Stereo Headphones' 'Stereo Headphones FP' 'Multichannel'
    Item0: 'Stereo Headphones FP'
    Simple mixer control 'Digital Input Monitor',0
    Capabilities: pvolume pvolume-joined pswitch pswitch-joined
    Playback channels: Mono
    Limits: Playback 0 - 1
    Mono: Playback 1 [100%] [0.00dB] [off]
    Simple mixer control 'Stereo Upmixing',0
    Capabilities: enum
    Items: 'Front' 'Front+Surround'
    Item0: 'Front+Surround'

  • Mic socket wont work on the front panel of fatal

    When i connect my headset & mic to the headphone & mic socket on the front panel, the mic dosent seem to work even though if i blow in it i can hear myself thru the headphones a little but if i turn up the mic volume on the front panel it makes a weird loud noise, the sound comes through the headphones ok. Many thanks for any help given.

    Have you tried turning on the microphone +20 dB boost?
    It's on the plus sign of the recording source ( when set to microphone in the mixer ) in the X-Fi mixer.

  • Sound Blaster X-FI Pci Express Front Panel Not working right Win7

    ASound Blaster X-FI Pci Express Front Panel Not working right Win7
    Please read carefully
    Part number Part SB040
    Hello,
    I have a fresh install of Win7x64 OEM. First, I want to say that I have "AUTOMATICALLY MUTE SPEAKERS" UNCHECKED under the Headphone detection tab. I have tried "Automatically Enable Headphone Settings" checked or unchecked. No difference.
    As soon as I plug in headphones to the front panel connector , the speakers in the mixer say "disconnected" (see below) and the SPDIF becomes the default output. There is no way for me to change this. And there isn't any sound coming from the headphones when plugged into the front panel. (the mic front panel works fine)
    I am using the nati've Win7 drivers for the card. Apparently the Win 7 drivers on your site are older than the nati've ones.
    This worked fine in Windows XP 32. Any ideas.

    Ok guys this is how I fixed the problem on my X-Fi PCI-Express. Open the Creative SB X-Fi Volume panel. Mine is set in game mode and I have 5 vertical sliders for Line-In /Mic, MIDI Synth, Digital-In, and the last one will say one of three things either Digital-In, Microphone, or Mirophone FP. At the top of the?slider there is a tab which brings up a drop down menu. Mine was default set to Digital-In, I switched it to Mirophone FP (tried Microphone first and it worked but the FP sounds better for me) and cranked it all the way up and my problem was solved. Very frustrating one though as there is no documentation that led me to the fix it was just playing around with it till I could figure it out.
    I hope this at least helps some of you out.

  • SB X-Fi Titanium Front Panel not working

    Hello,
    I would like to fully use the Front Panel, because I own a 5. Surround sound system blocking all the backpanel slots. The problem is, that I simply get no sound from the front panel sound output, while the microfone works just fine. Is there some kind of special option to enable it's
    The FP is properly plugged into my SB X-Fi Titanium. And it's also not broken, because the FP works perfectly with my onboard soundchip (though it seems to cause crackling in my headphones, so I cannot use it for it).
    ... Okay now the Mic FP is not working aswell, eventhough it did when I tried it the last time. I set everything I could, like choosing Headphone Mode, enabling FrontPanel everywhere and all that. So why is it still not working?
    RIG: Win XP 32bit
    Asus P7p55d
    Creative SB X-Fi Titanium
    normal Stereo Headset
    Thanks in advance for any help!

    Ofcourse that was something I did not know before I bought the soundcard. I am quite sure it is an AC 97 Front Panel, but how can I verify that?
    Seems like I will have to sell this soundcard.
    - The plugs from my 5.1 sound system are quality plugs and are rather big and so they barely fit, because the audio jacks (not sure about the correct english term here, i mean the holes from the soundcard, where you plugin the soundsystem) are sitting way too close together (expected more for that price..).
    - It doesn't support my Case's Front Panel.
    - And the soundcard is sitting directly before my Graphic Card's fan (because it uses PCI-E), causing heat.
    I guess there is no way around it. I will probably get a new graphic card at christmas and it's most likely going to be bigger than my ATI 4850HD. And I simply do not have the space for a bigger graphic card AND a soundcard, that uses PCI-E. So I guess the best solution is to sell it and buy a soundcard that uses normal PCI and supports AC 97, right? Or what would you recommend?
    Until then, is there an easy and cheap way to upgrade my ac97 front panel to Intel HD Front Panel Audio?
    thanks

  • How to get front panel sou

    how to get front panel sound for me headphones, i have audigy 2 ZS.

    Works Great. Thanks
    !!! Although .... the gain on the front mic is very low compared to the rear mic jack. Instead of using the x0 pin plug for the mic, I configured/spliced the front mic wires into a (rear) pass through /8" jack lead. Now, the front panel mic is at full output. I lose the?rear mic input, but I'll never use it now that I have front panel input.

Maybe you are looking for

  • Error while creating import parameters in RFC function module

    Hi, I am trying to create import parameter in RFC enabled function module and getting the following error "Reference parameters are not allowed with RFC". Am I doing something wrong. Your earlier response is much appreciated Regards Kasi

  • In OBIEE 11g, how to hide the "Analyze" option at the bottom of the Graph?

    Hi, At the bottome of the graph in OBIEE, there are options like Analyze, Refresh, Print, etc. How to hide ( Not Display) the " Analyze" option at the bottom? Is there any setting for this in dashboard? Thanks.

  • Select statment not working with variables

    Hi experts, Iam trying to select some data using the follwoing code with radio buttons r6 & r7. If r6 selected,it takes from parameter and if r7 selected it takes from select options... data: l_datbi type a005-datbi,l_datab type a005-datab.     if r6

  • Mac keeps randomly restarting

    Anonymous UUID:       4BBDFF9A-B468-6631-4521-3CCA277A41BD Thu Feb 27 19:32:04 2014 panic(cpu 0 caller 0xffffff80031ec352): assertion failed: igi->igi_version == IGMP_VERSION_3, file: /SourceCache/xnu/xnu-2422.90.20/bsd/netinet/igmp.c, line: 3720 Bac

  • Fuzzy Text in large block

    I am trying to include a large amount of text in my iMovie. None of the applications for text allowed me enough space to do this or they scrolled to fast for my text to be readable. I decided to create a picture in photoshope with all my text in it a