PDA

View Full Version : installing new software on a HD install



[AN]Dracowolf
09-12-2003, 04:02 AM
I am trying to install the new Divx codec I downloaded the following file
divx4linux-std-20030428.tar.gz and I am trying to figure out how to install it on my system. I have Knoppix installed on the HD.

PLease help I am kinda a newbie at this stuff.

Tech2k
09-12-2003, 04:13 AM
Well start my putting it in a directory (folder) all by itself and then say tar -zxvf *.tar.gz

It should unpack into a second folder where you can say cd new-folder-name and then ls

After that use the "less" command to look over the likely included README and INSTALL docs like less README (for example) leave the "less"command by hitting "q"

It usually goes something like
./configure
make
make install

I dont like to install like that because I like apt/dpkg to manage my system so I apt-got checkinstall.

With checkinstall you have a good chance of building a deb you can later install from that same folder with dpkg -i *.deb

3 steps above are the same but for the last one
./configure
make
checkinstall -D

sometimes you need ./configure --prefix=/usr
sometimes you need to run ./autogen.sh first before you configure.You just need to see the readme docs in that tarball you downloaded.

You might also just want to go to apt-get.org and get the links to fetch mplayer,then add it to your /etc/apt/sources.list and apt-get update then apt-get install mplayer.

hope you dont error on make ;)