Tuesday, March 1, 2011

How to run process in background then logout

In linux, if you want to run a process in the background without stopping when you logout then you can do it with this command:

# nohup [program_name] [arguments] &

Don't forget the ampersand.

No comments:

Post a Comment