Create more GUI and more CLI terminals in Linux 🌻

Sachin Singh
2 min readAug 9, 2023

--

In the world of Linux, the power of choice and customization is at your fingertips. As you navigate through the vast landscape of this open-source operating system, you’ll encounter two fundamental ways to interact with it: the Graphical User Interface (GUI) and the Command Line Interface (CLI). In this guide, we’ll delve into the art of creating more GUI and CLI terminals in Linux, empowering you to work smarter and more efficiently.\

The CLI Frontier 🖥️

  1. The Classic Terminal Dance 💃: To open a new terminal window in a flash, simply hit:
#gnome-terminal

GNOME lovers, rejoice! 🌟 And for KDE fans, you can summon your terminal genie with:

#konsole

Multiplexing Mastery with Tmux 🤹‍♂️: To juggle multiple tasks in a single terminal, let’s harness the power of Tmux! Install it if you haven’t already:

#sudo apt-get install tmux

Now launch the Tmux session:

#tmux

Tmux — Terminal Multiplexer:

  • Tmux allows you to split your terminal into panes and windows for multitasking.
  • Install it via your package manager (e.g., apt, yum) and start a session with tmux.
  • Create a horizontal split: Ctrl + b, then %
  • Create a vertical split: Ctrl + b, then "
  • Navigate between panes: Ctrl + b, then arrow keys
  • Create a new window: Ctrl + b, then c
  • Switch between windows: Ctrl + b, then number (e.g., 0, 1)
  • Detach: Ctrl + b, then d
  • And so much more! 🤯

Screen, the Terminal Ninja 🥷

For another trick up your sleeve, meet Screen! First, install it:

#apt-get install screen

Launch a new session:

#screen
  • Create a new window: Ctrl + a, c
  • Switch between windows: Ctrl + a, n or p
  • Detach like a pro: Ctrl + a, d

The GUI Wonderland 🖼️

  1. Desktop Environment Bliss 🏞️:
  2. GNOME Terminal: Ctrl + Alt + T
  3. KDE Konsole: Ctrl + Alt + T
  4. Xfce Terminal: Ctrl + Alt + T
  5. Spawning Terminal Windows 🪟:
  • Open a new terminal tab: Ctrl + Shift + T
  • Use your terminal emulator’s command (e.g., gnome-terminal, konsole, xfce4-terminal) to open a new window.

Conclusion: From the mesmerizing GUI wonderland to the thrilling CLI wizardry, Linux terminals offer a playground for tech enthusiasts and adventurers alike. 🌍🛠️ Whether you’re painting digital masterpieces with GUI terminals or weaving intricate spells with CLI commands, Linux empowers you to craft your digital destiny.

So, go ahead and explore these terminal treasures! 🚀 Embrace the GUI elegance or dive deep into the CLI cosmos — the choice is yours. The Linux universe beckons you to unleash your creativity, conquer challenges, and embark on an epic journey of tech enlightenment! 🌌🔥🎉

Happy terminal tinkering! 🚀👾🌟

Thanks for reading…☺️

keep learning keep sharing..

--

--