Login with Facebook

Friday, July 27, 2012

Having Wireless Bluetooth in Windows 7

I have HP laptop and I purchased a new Bluetooth Jebra and I was trying to connect it to Windows 7 and it was connected but no sound is getting out of Jebra.

I investigated and I found that Microsoft is not supporting Wireless Bluetooth by default, you have to install vendor specific drivers.

Anyway, I found HP driver for Wireless Bluetooth in this link and  I am happy now I can listen to my Computer sound from this new Jebra.

 

Windows 7 driver.

ftp://ftp.hp.com/pub/softpaq/sp48501-49000/sp48538.exe

 

I found this file also but I did not install it but in case you need

ftp://ftp.hp.com/pub/softpaq/sp47001-47500/sp47022.exe

When pairing with Jebra,  drivers are identified automatically.

image

Bluetooth details page:

image

Tuesday, July 24, 2012

Creating Database on mySQL for HP OO

During HP OO installation, you will be asked for which database to use for HP OO Central.

If you choose to use mySQL

You have to Install mySQL on remote or Local machine and create the database and user that have full access to this database.

Here below are the commands needed to prepare mySQL for HP OO installation

start mySQL client

 

CREATE DATABASE dharma;

GRANT ALL ON dharma.* to dharma_user@localhost IDENTIFIED BY 'password';

The first command creates database named dharma

The second command creates user with full access to dharma db named dharma_user with password is password

 

image