I accidentally paused the Linux display process

process

After installing Linux Mint 19 I wanted to check how vsinc affects fps in Linux, so I typed this command: CLUTTER_SHOW_FPS=1 cinnamon --replace

After some time I accidentally pressed Ctrl+Z and paused that process. Immediately my Bash shell and everything except the mouse cursor froze, so I can't type the fg command.

Is there a way to unpause that process without rebooting and should I use Ctrl+C next time to properly exit that process?

Best Answer

  1. Switch to a new TTY. See How to switch between tty and xorg session? for tips on how to switch TTYs.
  2. Determine the PID of the cinnamon process: ps -e | grep cinnamon
  3. Send this process the SIGCONT signal with kill -SIGCONT [pid]
Related Question