Difference between revisions of "Drivers"
Line 8: | Line 8: | ||
===Bluetooth headset manager=== | ===Bluetooth headset manager=== | ||
+ | |||
+ | ====Drivers==== | ||
+ | Requirements | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
+ | apt-get install paprefs paman padevchooser | ||
apt-get install pulseaudio-module-bluetooth* | apt-get install pulseaudio-module-bluetooth* | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | Low quality sound driver: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | apt-get install bluez-btsco | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | High quality sound driver: | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | apt-get install bluez-alsa | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Restart your computer. | Restart your computer. | ||
+ | |||
+ | |||
+ | ====Pairing==== | ||
+ | Pair your audio device using the User Interface, then get its bluetooth HW address. | ||
+ | |||
+ | Create a bluetooth configuration file. | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | vim ~/.asoundrc | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | Insert | ||
+ | <syntaxhighlight lang="bash"> | ||
+ | pcm.btheadset { | ||
+ | type bluetooth | ||
+ | device 00:02:5B:02:56:E0 | ||
+ | profile “auto” | ||
+ | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | |||
+ | ====Usage==== | ||
Then Applications > Multimedia > PulseAudio Volume center | Then Applications > Multimedia > PulseAudio Volume center | ||
Line 18: | Line 53: | ||
− | + | ====Sources==== | |
+ | Ubuntu official help: | ||
+ | * https://help.ubuntu.com/community/BluetoothAudio | ||
+ | * https://help.ubuntu.com/community/BluetoothHeadset | ||
+ | |||
+ | Other thread: | ||
+ | * http://askubuntu.com/questions/223136/pavucontrol-doesnt-show-bluetooth-headset | ||
+ | |||
+ | |||
Revision as of 16:35, 13 April 2014
Depending on your computer, you might have to install some specific vendor drivers and/or dedicated programs.
Contents
Audio ALSO mixer
apt-get install alsamixergui pavucontrol
Bluetooth headset manager
Drivers
Requirements
apt-get install paprefs paman padevchooser
apt-get install pulseaudio-module-bluetooth*
Low quality sound driver:
apt-get install bluez-btsco
High quality sound driver:
apt-get install bluez-alsa
Restart your computer.
Pairing
Pair your audio device using the User Interface, then get its bluetooth HW address.
Create a bluetooth configuration file.
vim ~/.asoundrc
Insert
pcm.btheadset {
type bluetooth
device 00:02:5B:02:56:E0
profile “auto”
}
Usage
Then Applications > Multimedia > PulseAudio Volume center
- You should see Bluetooth headset :)
Sources
Ubuntu official help:
Other thread:
Nvidia graphical driver
This is required to manage many screen on Nvidia chipsets.
!! As of now (November 2013) Ubuntu cannot work with Nvidia Optimus technology !! You have to disable it from your bios (under video > Optimus).
Nvidia driver:
apt-get install nvidia-current-updates
Reboot after installation. Then you should be able to configure your screens.