Sometimes you may need to run a comand that will take many hours before it stops, and you are planning to log out soon. If you simply run the command in the background using the command & trick, it will nevertheless stop as you log out. In order to avoid that, use this: nohup [command]&. Keep in mind though that if you are running X and you decide to close the X session it will then stop that process too.