need to install bluetooth and youtube downloader

Issues related to applications and software problems
rahulsh
Posts: 3
Joined: 2012/03/26 15:12:24

need to install bluetooth and youtube downloader

Post by rahulsh » 2012/03/26 15:27:52

Hi All,

I am new to linux and I have recently installed CENTOS 6. I want bluetooth driver to be installed in the system. I also want a software through which I can download videos from you tube. Could you please suggest a package for the above two software

pschaff
Retired Moderator
Posts: 18276
Joined: 2006/12/13 20:15:34
Location: Tidewater, Virginia, North America
Contact:

need to install bluetooth and youtube downloader

Post by pschaff » 2012/03/26 17:41:10

Welcome to the CentOS fora. Please see the recommended reading for new users linked in my signature.

The bluez packages provide the libraries and utilities for Bluetooth. To see what is available
[code]yum list bluez\*
yum info bluez\*[/code]
The correct driver will depend on your hardware. If you need help with that please [url=http://www.centos.org/modules/newbb/viewtopic.php?topic_id=28723&forum=54]provide more information about your system[/url] by running "./getinfo.sh driver" and showing us the output file.

I have never tried to download youtube videos, but I see RPMforge has [b]youtube-dl[/b]. Please read about [url=http://www.centos.org/modules/newbb/viewtopic.php?topic_id=14408&forum=47]Installing Software[/url] and [url=http://wiki.centos.org/AdditionalResources/Repositories]Repositories[/url], and note the warnings and advice about installing and configuring the [url=http://wiki.centos.org/PackageManagement/Yum/Priorities]yum priorities plugin[/url]. Non-core repos should have a higher numeric value, which is a lower priority. Lower is "better" as in golf scores.

YBellefeuille
Posts: 319
Joined: 2012/03/06 22:30:17
Location: Ottawa

Re: need to install bluetooth and youtube downloader

Post by YBellefeuille » 2012/03/26 21:27:45

This isn't related to CentOS specifically, but for Youtube, I use Firefox and Video Download Helper.

rahulsh
Posts: 3
Joined: 2012/03/26 15:12:24

Re: need to install bluetooth and youtube downloader

Post by rahulsh » 2012/03/30 04:31:47

Hi,

Thanks for the script. It really made the task simple

Information for driver problems.
[code]
== BEGIN uname -rmi ==
2.6.32-71.el6.x86_64 x86_64 x86_64
== END uname -rmi ==

== BEGIN rpm -qa \*-release\* ==
rpmforge-release-0.5.2-2.el6.rf.x86_64
centos-release-6-0.el6.centos.5.x86_64
== END rpm -qa \*-release\* ==

== BEGIN cat /etc/redhat-release ==
CentOS Linux release 6.0 (Final)
== END cat /etc/redhat-release ==

== BEGIN getenforce ==
Enforcing
== END getenforce ==

== BEGIN free -m ==
total used free shared buffers cached
Mem: 1664 597 1067 0 24 227
-/+ buffers/cache: 345 1319
Swap: 3615 0 3615
== END free -m ==

== BEGIN rpm -qa kernel\* | sort ==
kernel-2.6.32-71.el6.x86_64
kernel-devel-2.6.32-71.el6.x86_64
kernel-firmware-2.6.32-71.el6.noarch
kernel-headers-2.6.32-71.el6.x86_64
== END rpm -qa kernel\* | sort ==

== BEGIN lspci -nn ==
00:00.0 Host bridge [0600]: Intel Corporation Sandy Bridge DRAM Controller [8086:0104] (rev 09)
00:02.0 VGA compatible controller [0300]: Intel Corporation Sandy Bridge Integrated Graphics Controller [8086:0116] (rev 09)
00:16.0 Communication controller [0780]: Intel Corporation Cougar Point HECI Controller #1 [8086:1c3a] (rev 04)
00:1a.0 USB Controller [0c03]: Intel Corporation Cougar Point USB Enhanced Host Controller #2 [8086:1c2d] (rev 04)
00:1b.0 Audio device [0403]: Intel Corporation Cougar Point High Definition Audio Controller [8086:1c20] (rev 04)
00:1c.0 PCI bridge [0604]: Intel Corporation Cougar Point PCI Express Root Port 1 [8086:1c10] (rev b4)
00:1c.1 PCI bridge [0604]: Intel Corporation Cougar Point PCI Express Root Port 2 [8086:1c12] (rev b4)
00:1c.3 PCI bridge [0604]: Intel Corporation Cougar Point PCI Express Root Port 4 [8086:1c16] (rev b4)
00:1d.0 USB Controller [0c03]: Intel Corporation Cougar Point USB Enhanced Host Controller #1 [8086:1c26] (rev 04)
00:1f.0 ISA bridge [0601]: Intel Corporation Cougar Point LPC Controller [8086:1c49] (rev 04)
00:1f.2 SATA controller [0106]: Intel Corporation Cougar Point 6 port SATA AHCI Controller [8086:1c03] (rev 04)
00:1f.3 SMBus [0c05]: Intel Corporation Cougar Point SMBus Controller [8086:1c22] (rev 04)
02:00.0 Ethernet controller [0200]: Broadcom Corporation NetLink BCM57785 Gigabit Ethernet PCIe [14e4:16b5] (rev 10)
02:00.1 SD Host controller [0805]: Broadcom Corporation Device [14e4:16bc] (rev 10)
02:00.2 System peripheral [0880]: Broadcom Corporation Device [14e4:16be] (rev 10)
02:00.3 System peripheral [0880]: Broadcom Corporation Device [14e4:16bf] (rev 10)
03:00.0 Network controller [0280]: Atheros Communications Inc. AR9287 Wireless Network Adapter (PCI-Express) [168c:002e] (rev 01)
05:00.0 USB Controller [0c03]: NEC Corporation uPD720200 USB 3.0 Host Controller [1033:0194] (rev 04)
== END lspci -nn ==

== BEGIN lsusb ==
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 0489:e02c Foxconn / Hon Hai
Bus 001 Device 003: ID 058f:b002 Alcor Micro Corp.
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
== END lsusb ==

== BEGIN rpm -qa kmod\* kmdl\* ==
== END rpm -qa kmod\* kmdl\* ==

[/code]

pschaff
Retired Moderator
Posts: 18276
Joined: 2006/12/13 20:15:34
Location: Tidewater, Virginia, North America
Contact:

Re: need to install bluetooth and youtube downloader

Post by pschaff » 2012/03/30 10:15:31

A recent install should have used CentOS-6.2 and not 6.0. A "yum update" to get up to 6.2 plus errata is overdue.

[quote]
rahulsh wrote:
...
Bus 001 Device 004: ID 0489:e02c Foxconn / Hon Hai
Bus 001 Device 003: ID 058f:b002 Alcor Micro Corp.
[/quote]
I can't recognize anything you showed as Bluetooth hardware, but the above seem like the best candidates; however, I do not see a driver for either in the kernel or at [url=http://elrepo.org/tiki/DeviceIDs]ELRepo[/url].
[code]$ grep -i 0489 /lib/modules/*/modules.alias | grep -i e02c
$ grep -i 058f /lib/modules/*/modules.alias | grep -i b002
$ [/code]Nothing returned indicates no driver available. You may need to acquire compatible hardware, or identify a driver for what you have.

OT: While checking out ELRepo you may want to see if [url=http://elrepo.org/tiki/xorg-x11-drv-intel]xorg-x11-drv-intel[/url] is needed to support your Sandy Bridge graphics.

rahulsh
Posts: 3
Joined: 2012/03/26 15:12:24

Re: need to install bluetooth and youtube downloader

Post by rahulsh » 2012/05/10 04:21:57

Hi PSchaff,

I found out that the blueotooth device attached to my laptop is a atheros PCI device.

03:00.0 Network controller [0280]: Atheros Communications Inc. AR9287 Wireless Network Adapter (PCI-Express) [168c:002e] (rev 01)
This is the bluetooth device which I got from the ACER manual device specification. There is a entry also in modules.alias file

cat /lib/modules/2.6.32-71.el6.x86_64/modules.alias | grep -i 002e
alias pci:v0000168Cd0000002Esv*sd*bc*sc*i* ath9k

But, I think there is some problem in the hardware itself due to which I am not able to use it. I am saying this because bluetooth is not working even in windows itself.
Anyways, thanks a lot for all your help

pschaff
Retired Moderator
Posts: 18276
Joined: 2006/12/13 20:15:34
Location: Tidewater, Virginia, North America
Contact:

Re: need to install bluetooth and youtube downloader

Post by pschaff » 2012/05/10 13:44:29

That is not a Bluetooth adapter. It is a [url=http://www.qca.qualcomm.com/technology/technology.php?nav1=47&product=80]Wifi network adapter[/url]. There are Atheros product that combine the AR9287 chip with Bluetooth such as [url=http://www.qca.qualcomm.com/technology/technology.php?nav1=49&product=76]AR9002WB-2NG[/url] but there is no sign I can see that that is what you have.

nikssson
Posts: 1
Joined: 2013/03/24 10:50:13

Re: need to install bluetooth and youtube downloader

Post by nikssson » 2013/03/24 11:17:04

Hi, I also have problem with bluetooth driver, and I did the procedure for determing the adequate driver. Result is:


Information for driver problems.
[code]
== BEGIN uname -rmi ==
2.6.32-358.2.1.el6.i686 i686 i386
== END uname -rmi ==

== BEGIN rpm -qa \*-release\* ==
centos-release-6-4.el6.centos.10.i686
rpmforge-release-0.5.3-1.el6.rf.i686
adobe-release-i386-1.0-1.noarch
== END rpm -qa \*-release\* ==

== BEGIN cat /etc/redhat-release ==
CentOS release 6.4 (Final)
== END cat /etc/redhat-release ==

== BEGIN getenforce ==
Enforcing
== END getenforce ==

== BEGIN free -m ==
total used free shared buffers cached
Mem: 1884 1166 717 0 50 836
-/+ buffers/cache: 279 1605
Swap: 4094 0 4094
== END free -m ==

== BEGIN rpm -qa kernel\* | sort ==
kernel-2.6.32-358.2.1.el6.i686
kernel-2.6.32-358.el6.i686
kernel-firmware-2.6.32-358.2.1.el6.noarch
== END rpm -qa kernel\* | sort ==

== BEGIN lspci -nn ==
00:00.0 Host bridge [0600]: Intel Corporation Mobile PM965/GM965/GL960 Memory Controller Hub [8086:2a00] (rev 03)
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (primary) [8086:2a02] (rev 03)
00:02.1 Display controller [0380]: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (secondary) [8086:2a03] (rev 03)
00:1a.0 USB controller [0c03]: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #4 [8086:2834] (rev 03)
00:1a.1 USB controller [0c03]: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #5 [8086:2835] (rev 03)
00:1a.7 USB controller [0c03]: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #2 [8086:283a] (rev 03)
00:1b.0 Audio device [0403]: Intel Corporation 82801H (ICH8 Family) HD Audio Controller [8086:284b] (rev 03)
00:1c.0 PCI bridge [0604]: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 [8086:283f] (rev 03)
00:1c.1 PCI bridge [0604]: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 [8086:2841] (rev 03)
00:1c.2 PCI bridge [0604]: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 [8086:2843] (rev 03)
00:1c.3 PCI bridge [0604]: Intel Corporation 82801H (ICH8 Family) PCI Express Port 4 [8086:2845] (rev 03)
00:1d.0 USB controller [0c03]: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #1 [8086:2830] (rev 03)
00:1d.1 USB controller [0c03]: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #2 [8086:2831] (rev 03)
00:1d.2 USB controller [0c03]: Intel Corporation 82801H (ICH8 Family) USB UHCI Controller #3 [8086:2832] (rev 03)
00:1d.7 USB controller [0c03]: Intel Corporation 82801H (ICH8 Family) USB2 EHCI Controller #1 [8086:2836] (rev 03)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev f3)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801HM (ICH8M) LPC Interface Controller [8086:2815] (rev 03)
00:1f.1 IDE interface [0101]: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) IDE Controller [8086:2850] (rev 03)
00:1f.2 SATA controller [0106]: Intel Corporation 82801HM/HEM (ICH8M/ICH8M-E) SATA Controller [AHCI mode] [8086:2829] (rev 03)
00:1f.3 SMBus [0c05]: Intel Corporation 82801H (ICH8 Family) SMBus Controller [8086:283e] (rev 03)
03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 01)
04:00.0 Network controller [0280]: Intel Corporation PRO/Wireless 4965 AG or AGN [Kedron] Network Connection [8086:4229] (rev 61)
0a:01.0 FireWire (IEEE 1394) [0c00]: Ricoh Co Ltd R5C832 IEEE 1394 Controller [1180:0832] (rev 05)
0a:01.1 SD Host controller [0805]: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host Adapter [1180:0822] (rev 22)
0a:01.2 System peripheral [0880]: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter [1180:0592] (rev 12)
0a:01.3 System peripheral [0880]: Ricoh Co Ltd xD-Picture Card Controller [1180:0852] (rev 12)
== END lspci -nn ==

== BEGIN lsusb ==
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 04f2:b008 Chicony Electronics Co., Ltd USB 2.0 Camera
Bus 007 Device 002: ID 0483:2016 SGS Thomson Microelectronics Fingerprint Reader
== END lsusb ==

== BEGIN rpm -qa kmod\* kmdl\* ==
== END rpm -qa kmod\* kmdl\* ==

[/code]


There is a driver entry for:
grep -i 1d6b /lib/modules/*/modules.alias | grep -i 0001 (I suppose that it might be a bluetooth candidate)

/lib/modules/2.6.32-358.2.1.el6.i686/modules.alias:alias pci:v00008086d00001D6Bsv*sd*bc*sc*i* isci
/lib/modules/2.6.32-358.el6.i686/modules.alias:alias pci:v00008086d00001D6Bsv*sd*bc*sc*i* isci

but i'm a beginner with linux and I don't know how to install it. Can you give me instructions how to do that?

Thanks

User avatar
AlanBartlett
Forum Moderator
Posts: 9345
Joined: 2007/10/22 11:30:09
Location: ~/Earth/UK/England/Suffolk
Contact:

Re: need to install bluetooth and youtube downloader

Post by AlanBartlett » 2013/03/24 22:42:37

Looking through the output that you have shown, I can not see any sign of a Bluetooth adaptor.

It is true that your have five devices with the [b][1d6b:0001][/b] fingerprint but they are just version 1.1 USB root hubs.

krishnadaspc
Posts: 3
Joined: 2013/04/18 17:11:56

Re: need to install bluetooth and youtube downloader

Post by krishnadaspc » 2013/04/18 17:14:21

you can use keepvid.com to download youtbe videos. just install jre plugin from oracle. :-)

Post Reply