PD19-Tikz-Screen

Screen
  1. Create

    1
    screen -S name
  2. List all screen

    1
    screen -ls
  3. Get into the detached screen

    1
    screen -r name
  4. Exit the screen

    • detach current screen, it will run in background, ctrl + a + d

    • get into the exit screen then use exit or ctrl + a + k to exit the current screen completely.

    • No need to get into the exit screen, just use screen -S name -X quit to exit the target screen.
    • kill pid
  5. Switch between the screens

    • ctrl + a + p previous screen
    • ctrl + a + n next screen