Sound Transfer to USB Headset (Kubuntu 9.10)
Page 1 of 18 Replies - 3369 Views - Last Post: 11 April 2010 - 06:42 PM
#1
Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 05 April 2010 - 05:34 PM
I have a destroyed primary audio jack (headphone crap stuck deep in there), however, I do now have a very nice USB headset (Gigaware Catalog No. 43-122) and can only get them to work on system audio and in amarok and a few other system sound applications. As I stated in the title, I run Kubuntu 9.10. I have already set the drivers up and have them set for highest precedence on everything (via audio manager), but the darned things won't work on games, or other sound applications like web browsers. Is there a way to get this to work?! I already said USB headset is highest precedence in games.
As a side note, I'm trying to get the same thing to work in Xubuntu 9.10 on my laptop, but even system sounds don't work. If you could help me with the Kubuntu first and then the Xubuntu, I would appreciate it.
Thanks All!
Replies To: Sound Transfer to USB Headset (Kubuntu 9.10)
#2
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 09 April 2010 - 01:48 PM
Then issue ls -l /dev/audio to see which device that the system has linked to audio, & then setup a new symbolic link for /dev/audio to the device assigned above.
#3
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 09 April 2010 - 06:49 PM
Like I said, I could figure it out, but don't want to screw too much up!
Done...I'll see if it works.
This post has been edited by Dogstopper: 09 April 2010 - 08:33 PM
#4
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 09 April 2010 - 08:42 PM
edit: also /dev/dsp1, /dev/mixer1....
Just need to get those set to the main ones.
This post has been edited by Dogstopper: 09 April 2010 - 08:51 PM
#5
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 10 April 2010 - 05:15 AM
#!/bin/sh if [ -f /dev/dsp1 ]; then echo "Switching to USB Audio" rm -f /dev/dsp ln -s /dev/dsp1 /dev/dsp else echo "USB audio is not present" fi
Since you are messing w/ device, you'll most likely need to sudo the script.
#6
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 10 April 2010 - 03:06 PM
#! /bin/bash
# Had to use -e
if [ -e /dev/dsp2 ]; then
echo "Switching to USB Audio"
rm -f /dev/dsp1
ln -s /dev/dsp1 /dev/dsp2
rm -f /dev/audio1
ln -s /dev/audio1 /dev/audio2
rm -f /dev/mixer1
ln -s /dev/mixer1 /dev/mixer2
else
echo "No USB Audio inputted"
fi
Now, the symbolic link is in place...However, I'm still getting only system sounds and amarok out of the headphones. I still cannot get internet or games to play through yet...Is there something that I am just missing?
edit: updated code. those are the file I have.
This post has been edited by Dogstopper: 10 April 2010 - 03:25 PM
#7
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 10 April 2010 - 06:14 PM
#8
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 10 April 2010 - 06:35 PM
Scratch that...no sound.
This post has been edited by Dogstopper: 10 April 2010 - 06:36 PM
#9
Re: Sound Transfer to USB Headset (Kubuntu 9.10)
Posted 11 April 2010 - 06:42 PM
http://ubuntuforums....660#post9109660
|
|

New Topic/Question
This topic is locked





MultiQuote




|