Dear visitor, welcome to KDE-Forum.org.
If this is your first visit here, please read the Help. It explains in detail how this page works.
To use all features of this page, you should consider registering.
Please use the registration form, to register here or read more information about the registration process.
If you are already registered, please login here.
find the programm
For example i had installed a programm,source file.
i installed it so
./configure
make
make install
The programm had been installed,but i don't know where is the foler of this programm.How can i find the folder of this programm,to start this programm.
you can try this.
(you might need to do 'updatedb' as root first)
locate file_name
whereis app
it might be in /etc/init.d/
that's the only 3 things i can think of.
hopefully that helps you.
sijis
you could look at the makefile to see the instructions for where it is to be installed. eg:
[code:1]
INSTALL = /usr//bin/install -c -p
INSTALL_PROGRAM = ${INSTALL} $(INSTALL_STRIP_FLAG) $(AM_INSTALL_PROGRAM_FLAGS)
INSTALL_DATA = ${INSTALL} -m 644
INSTALL_SCRIPT = ${INSTALL}
[/code:1]
note, some programs only require a binary file to run properly, and thus dont need a folder to store all config stuff etc. it could be a single file in /usr/bin, with all config stuff stored in your home directory (such as $HOME/.application).