As Tim said, type `fg` to bring the last process back to foreground.
If you have more than one process running in the background, do this:
$ jobs
[1] Stopped vim
[2]- Stopped bash
[3]+ Stopped vim 23
`fg %3` to bring the `vim 23` process back to foreground.
To suspend the process running in the background, use:
kill -STOP %job_id
The SIGSTOP signal stops (pauses) a process in essentially the same way `Ctrl`+`Z` does.
example: `kill -STOP %3`.
sources:
* How to send signals to processes in Linux and Unix
* How to manage background and foreground jobs.