setsid - start programs in a new shell

setsid – start programs in a new shell

As someone posted in a comment of one of my former article (nohup, bg e disown), i’ve forget a command: setsid, while talking about the possibility of detach a process from a terminal or a shell man setsid setsid – run a program in a new session The main difference i see from nohup is […]

How to run commands in the background in Linux

How to run commands in the background in Linux

Suppose you have a long-running task (for example, compiling a large program) that you need to run, but you also want to get some other work done. Linux lets you start a task in the background and keep on doing other things from the command prompt. We will see in this article how to send […]

Screen and Byobu

Screen and Byobu

If you frequently use the terminals and the command line, I hope you know the command screen, otherwise get ready to see something that will help you immensely. Screen ? (from the man page) Screen is a full-screen window manager that multiplexes a physical terminal between several processes (typically interactive shells). Each virtual terminal provides […]