Page 1 of 1

Posted: Wed Oct 10, 2007 2:59 am
by scorp123
It would help if you explained how you *installed* that application. Where did you take the idea from that 'make uninstall' is the right command here? It's obvious to me that it must be wrong, because if this app involved compiling then you'd already have noticed that you're missing the 'make' command.

How about just removing the folder you created? (assuming that no files were copied to any other locations....)

Posted: Wed Oct 10, 2007 3:55 am
by scorp123
metta2012 wrote: Well if you just delete the folder, are you really deleting the entire program, it's structure, and everything?
Usually not. But as I see it you haven't installed anything, you just unpacked an archive which created a folder. So it will be sufficient if we just get rid of that one.
metta2012 wrote: tar xvjf qnextsetup.tar
That's the command to unpack a *.bz2 archive ("j" switch up there ..... for *.gz archives you'd use the "z" switch). But that doesn't yet install anything. It just unpacks an archive.
metta2012 wrote: Okay.. what's the difference between "tar" ing an application and "make"ing an application
"tar" stands for "Tape Archiver", it's an old UNIX command that archives and unarchives files. By itself it is not able to compress stuff, so that's why you'd use it in conjunction with compressors such as "compress" (giving *.tar.Z files), "gzip" (*.tar.gz), "bzip2" (*.tar.bz2) and even "zip" (*.tar.zip ... pretty rare though).

"make" is a compiler command. It requires a so called 'Makefile' which instructs the C-compiler where to find the source code and how to compile your stuff. For such a 'Makefile' to be created you'd first need to run the "./configure" command. So step by step this would be:

Code: Select all

./configure
make
make install
I don't recommend this stuff to newbies. It's much safer to you to stick to the things that 'apt' and 'Synaptic' offer you.
metta2012 wrote: What files do you look for in the .tar.gz or tar.bz2 folder that tells you that you have to use tar or you can just unzip it and use make?
Again, this highly depends on what you downloaded and how this stuff is supposed to be installed. There is no general rule. Safest thing would be to read the instructions on the web page where you downloaded this stuff from. Or check if there is a 'README' file somewhere somehow.