install a pkg from only *.tar.gz

Asked by zeman

How can I install an old bluez-utils-3.x package from the tar.gz at bluez.org/downloads.

This package has a known workaround to get my device paired and working.
Using ubuntu 9.0.4
Thanks.

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu bluez Edit question
Assignee:
No assignee Edit question
Solved by:
marcobra (Marco Braida)
Solved:
Last query:
Last reply:
Revision history for this message
marcobra (Marco Braida) (marcobra) said :
#1
Revision history for this message
zeman (randolphzach) said :
#2

Yes

Revision history for this message
Best marcobra (Marco Braida) (marcobra) said :
#3

Open a Terminal from the menu Applications → Accessories → Terminal

Suggestion: right click with mouse on the terminal title caption and select the item "Always on Top" doing this you will force the terminal window to stay on top of the other windows and you will find very easy copy from this web page into the terminal...

and type, or better copy and paste this rows one row a time then press enter:

mkdir bluez
cd bluez
wget http://bluez.sf.net/download/bluez-utils-3.36.tar.gz
tar xvzf bluez-utils-3.36.tar.gz
cd bluez-utils-3.36

Then read the README file to compile and install... type:

less REAME

or

more README

Hope this helps

Revision history for this message
zeman (randolphzach) said :
#4

ok thanks