Hello, I am now working with iptel express router source code ver 0.8.10 on a Suse 8.0 machine with gcc version 3.2
How can i send a signal to the server for shutdown and deinstall the installed server later which ist installed from a 1) tar.gz source with make install and if different 2) tar.gz source by unzipping the code under directory "/" Thanks
On 29-01 11:28, Savasar Sinan UYGUR wrote:
Hello, I am now working with iptel express router source code ver 0.8.10 on a Suse 8.0 machine with gcc version 3.2
How can i send a signal to the server for shutdown and deinstall the
Simply determine PID of ser process using ps (use the lowest PID among ser processes - this is the main process) and kill it using kill :-). Or try to use killall ser
installed server later which ist installed from a
- tar.gz source with make install
Only by hand, there is no uninstall target in the makefiles.
regards, Jan.