Forum Moderators: bakedjake
now, how do i turn it off the running appz...?
help... thanks..
Try
ps -A
Look for the programs you started, then
kill {num}
Where {num} is the process ID of the running program...
million thanks..
1.- To start app in background redirecting stdout to nohup.out
nohup executable &
2.- To kill app
ps aux (Display all processes, pids, etc...)
kill -9 PID