NodeGuidebook
  • Welcome
  • Node
    • ZkVerify
      • Step-by-step | Installation Guide
      • Possible Errors
    • Pipe network
      • Bash | Video | Installation Guide
      • Update
    • Titan network
      • Bash | Video | Installation Guide
    • Multiple
      • Bash | Video | Installation Guide
    • Dria
      • Bash | Video | Installation Guide
      • Possible Errors
    • Hyperspace
      • Bash | Video | Installation Guide
      • Possible Errors
  • Gaia
    • Bash | Installation Guide
  • BROWSER NODE
    • Solix
      • Run node
  • Tools & Utilities
    • πŸ–₯️Using screen on Linux
    • 🌐Port Configuration in Ubuntu
    • πŸ“œBash Script
  • VPS
    • Aeza
    • Xorek
Powered by GitBook
On this page
  1. Tools & Utilities

Using screen on Linux

PreviousRun nodeNextPort Configuration in Ubuntu

Last updated 24 days ago

The screen command is a powerful tool that allows you to run multiple terminal sessions in the background, even after disconnecting. It’s especially useful when installing and managing multiple nodes on a single server. Think of it like having multiple open apps on your phone β€” you can easily switch between them without interrupting anything.



πŸ“¦ Install screen

If screen is not installed yet, run:

sudo apt update
sudo apt install screen -y

πŸš€ Create a new screen session

screen -S mysession

🧭 List all screen sessions

screen -ls

πŸ”§ Run your screen

screen -r mysession

πŸ”™ Detach from the session

Ctrl + A, then B

❌ Close a session

Stop your command or press Ctrl + C, then exit the session:

exit
πŸ–₯️