Install Linux (Linpus) Kernel Add-Ons

Joined
Aug 2, 2008
Messages
37
Reaction score
0
Hi,

I am a Linpus Linux Newbie with a Acer One A110L

My challenge - I would like to install for example an Bluetooth USB Stick

That probably means - Load software to the existing kernel

Therefore my question - what commands do I need ?

Download last stable software version on http://XXX.sourceforge.net/ in the download folder
Open xterm session : ALT-F2 and type xterm and press enter
We need to be root to install the programm

Code: Select all
sudo su


We need to instal make and gcc to compil XXX

Code: Select all
yum install make


Code: Select all
yum install gcc


Now we can unpackage the archive

Code: Select all
cd /home/user/Downloads
tar -xvjf XXX.tar.bz2


We go into the folder

Code: Select all
cd XXX


and we install

Code: Select all
./configure
make
make install
 
Back
Top