PDA

View Full Version : how to install non-deb packages, e.g. tar.gz ?



linux55
06-23-2004, 03:29 PM
Hi,

how can non-deb packages(only tar.gz available) be "installed/
integrated" in a customed/personalized Knoppix CD?

Thank`s a lot for any tip!

John

mzilikazi
06-23-2004, 05:56 PM
Just like you normally would. :)

./configure && make && make install

Or however your particular app is built. Of course if you want .debs then you have to do it a bit differently.

apt-get install checkinstall
./configure && make && checkinstall

man checkinstall to see more of how this tool worls. It is quite easy to use.

Ambrose
06-29-2004, 03:11 AM
Be sure to untar it first:

tar xvfz $filename.tgz

- Ambrose