LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 07-01-2008, 09:52 AM   #1
dauphinfay
Member
 
Registered: Jan 2004
Location: Earth
Distribution: Ubuntu
Posts: 301

Rep: Reputation: 30
Skype and Bluetooth?


This post is for anyone who has RECENTLY gotten skype to work with bluetooth (preferably Linux Mint, but anything will do at this point). I have come accross several posts on various websites but I want here. Most everything I have read either does not work or is simply too old.

Seriously. amy help is appreciated.

P.S. the search function on this site sucks about as much as the look on a cat's face as it looks into the bathtub it's owner is putting it into.
 
Old 08-13-2008, 06:53 AM   #2
dauphinfay
Member
 
Registered: Jan 2004
Location: Earth
Distribution: Ubuntu
Posts: 301

Original Poster
Rep: Reputation: 30
bump.

Someone out there has got to have bluetooth and skype working harmoniously on their system. Even non-Mint system users could offer a little insight. Everything I have tried has been in vain. A little help please.
 
Old 08-13-2008, 07:07 AM   #3
blackhole54
Senior Member
 
Registered: Mar 2006
Posts: 1,896

Rep: Reputation: 61
Quote:
Originally Posted by dauphinfay View Post
P.S. the search function on this site sucks about as much as the look on a cat's face as it looks into the bathtub it's owner is putting it into.
I believe I read that that is on Jeremy's "todo list." In the meantime, I sometimes find it useful to do a Google search and specify site:linuxquestions.org .

As far is your question ... Sorry, I know nothing about either Skype or Bluetooth.

Last edited by blackhole54; 08-13-2008 at 07:08 AM.
 
Old 08-13-2008, 07:27 AM   #4
jomen
Senior Member
 
Registered: May 2004
Location: Leipzig/Germany
Distribution: Arch
Posts: 1,687

Rep: Reputation: 55
There is very little information in here (actually: none at all).
Do you think that could be a part of the reason?
Another could be you combining the question with a rant...
 
Old 08-14-2008, 05:34 AM   #5
frenchn00b
Senior Member
 
Registered: Jun 2007
Location: E.U., Mountains :-)
Distribution: Debian, Etch, the greatest
Posts: 2,561

Rep: Reputation: 57
Quote:
Originally Posted by dauphinfay View Post
This post is for anyone who has RECENTLY gotten skype to work with bluetooth (preferably Linux Mint, but anything will do at this point). I have come accross several posts on various websites but I want here. Most everything I have read either does not work or is simply too old.

Seriously. amy help is appreciated.

P.S. the search function on this site sucks about as much as the look on a cat's face as it looks into the bathtub it's owner is putting it into.
what do you mean ?
"skype to work with bluetooth"

skype is voip
bluetooth is hardware

??

can you elaborate ?
 
Old 08-15-2008, 01:53 AM   #6
dauphinfay
Member
 
Registered: Jan 2004
Location: Earth
Distribution: Ubuntu
Posts: 301

Original Poster
Rep: Reputation: 30
Skype is being used in conjunction with bluetooth headsets. I have been able to pair a usb bluetooth dongle with a headset. I don't know how to get audio to pass through.
 
Old 08-30-2008, 05:04 AM   #7
dauphinfay
Member
 
Registered: Jan 2004
Location: Earth
Distribution: Ubuntu
Posts: 301

Original Poster
Rep: Reputation: 30
I must be the only person in the world working on this. I find it difficult to understand why no one else has posted here. Anyway, should someone else come along in the near future this is what I found as a partial working guide:

http://ubuntuforums.org/showthread.php?t=798499

However, the audio input is a no go and skype 2.0.0.72 hangs at the end of every test call forcing me to kill it. Unfortunately, I have to reboot and I constantly get a "...another instance of Skype is working" nonsense that doesn't let me re-login.

At the moment, I have downloaded and installed Blueman:

http://blueman.tuxfamily.org/index.p...d=51&Itemid=56

in an effort to ease the pairing task. This is because using the standard BT utility that comes with Mint doesn't setup the audio input as an available service. This prompts me to have to pair the headset twice. It would say that both services are available at this point but in fact neither works.

As always, any input is appreciated.
 
Old 08-31-2008, 02:41 AM   #8
blackhole54
Senior Member
 
Registered: Mar 2006
Posts: 1,896

Rep: Reputation: 61
Quote:
Originally Posted by dauphinfay View Post
... forcing me to kill it. Unfortunately, I have to reboot and I constantly get a "...another instance of Skype is working" nonsense that doesn't let me re-login.
I don't know that I can help you with your basic problem. But while you are still trying to debug things I think there is a way for there to be less pain when you have to kill skype and restart it.

You should almost never have to reboot a system when a program hangs. While there may be a GUI way to do this, I am more familiar with the command line. (Besides, the command line is more consistent across distros, desktop environments, etc.)

I would think a command similar to one of the following would kill a hung skype instance:

Code:
killlall skype
killall -9 skype
The first command politely asks skype to shutdown in an orderly fashion. The second command very impolitely and immediately kills it. Usually you want to use the first form if it works and resort to the second if it fails to shutdown.

The other issue is whether "skype" is actaully the name of the process. If neither of the those commands work, try to figure out what the process name is with (when skype is running, of course):

Code:
ps -ef | grep -i skype
I am guessing the complaint about skype already running is from a "lock file" somewhere, which you can remove manually. Start by checking directories (folders) in your home directory. From the command line (I suggest copy and paste what I have posted):

Code:
cd
ls -d .*/ */
If you use a GUI file manager instead, make sure to enable display of "hidden files." Look for anything that might by a skype directory. Within that directory look for anything that has "lock" in the name somehow. Again make sure you include hidden files. If that file has a size of zero, then removing it will probably cause skype to stop complaining about already running. If it doesn't have a zero size try moving it to your home directory (this way you can always move it back!) and see what happens. You also might be able to find out more info by searching on the term skype and the phrase lock file.

If you can get this to work manually, you can even put both commands in a script and bind that script to a key (aka create a "hotkey") to make things even easier on yourself.

Sorry, but I have no experience with Bluetooth or Skype (or any other VoIP) or Mint.
 
Old 11-10-2008, 04:59 AM   #9
dauphinfay
Member
 
Registered: Jan 2004
Location: Earth
Distribution: Ubuntu
Posts: 301

Original Poster
Rep: Reputation: 30
Well, being the fair-weather linux user that I am, I shifted over to Ubuntu 8.10 in order to give it a whirl. Here I was actually able to get a bluetooth headset to work with skype......while using the live cd !!!!

I think Mint needs to address a few things. But in any event, the situation is resolved. Thanks goes out to everyone who posted in an attempt to help. I really appreciate everyoneś time and effort.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Bluetooth not working on FC6 with Targus USB bluetooth adapter mikevicious Linux - Software 1 12-11-2009 09:03 AM
Bluetooth headset and Skype squaregoldfish Linux - Hardware 2 02-10-2008 03:50 PM
Logitech Mobile Pro bluetooth headset and Skype stardustdk Linux - Laptop and Netbook 0 07-27-2007 05:20 PM
bluetooth headset and Skype powadha Linux - Software 15 07-02-2006 12:46 PM
skype - cant use it leosgb Linux - Software 2 02-08-2005 07:03 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 02:10 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration