In Linux, running a process in the background allows you to continue using the terminal for other commands. To do this, append an ampersand (&) to your command. For example, `sleep 30 &` runs a sleep command for 30 seconds in the background. You can manage background processes using the `jobs`, `fg`, and `bg` commands.