this post was submitted on 04 Jul 2026
33 points (100.0% liked)
Linux
14216 readers
360 users here now
A community for everything relating to the GNU/Linux operating system (except the memes!)
Also, check out:
Original icon base courtesy of lewing@isc.tamu.edu and The GIMP
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
If you started it in the terminal and are using bash hit "ctrl+z" to put the process to sleep and get your shell back, then use "fg ; sudo shutdown - c 1". "fg" puts a job back in the foreground.
Use "help fg" for more information. You also have "bg" (background) and "kill %1" to kill a specific job. ~~There's more, but I forget how to list tasks (maybe "tasks"?)~~ "jobs" to list jobs.
@onlinepersona @sem "jobs"
I did not know about the fg; (next command)
That's amazing! So cool.