I accidentally paused the Linux display process
- Switch to a new TTY. See How to switch between tty and xorg session? for tips on how to switch TTYs.
- Determine the PID of the cinnamon process:
ps -e | grep cinnamon
- Send this process the SIGCONT signal with
kill -SIGCONT [pid]
Short, concrete version of CameronNemo's answer:
ctrlaltF1 # Switch to TTY1
user name↲ # Log in on this terminal
password↲killall -SIGCONT cinnamon
↲ # Send the continue signal to the process
ctrld # Log out on TTY1
ctrlaltF7 # Switch back to the graphical environment
F1 and F7 here assume that you have X running on TTY7, as is standard on Ubuntu and, I assume, also on Mint.