Results 1 to 3 of 3
Hi
I am accessing a linux server remotely from my putty. I started the server and now I want to close the command line. when I do cntr+c or cntr+z ...
- 02-14-2011 #1Just Joined!
- Join Date
- Feb 2011
- Posts
- 2
Log out of command line without shuting down the server
Hi
I am accessing a linux server remotely from my putty. I started the server and now I want to close the command line. when I do cntr+c or cntr+z it kills my server aswell. how will I close my terminal without closing my server? I tried cntr +d but it is not doing anything
Thanks
- 02-14-2011 #2Linux Newbie
- Join Date
- Apr 2010
- Location
- Novosibirsk, Russia
- Posts
- 136
run process in background using '&' after command, for example
But if your do Logout from system, all current processes owned by you will be killed. You could try to run it under another user using 'sudo'.Code:run_server_command &
- 02-18-2011 #3
I would use nohup <command>.
Take a look at the man pages.


Reply With Quote