Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Which terminals are commonly used in Linux terminals

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "what are the commonly used terminals of Linux terminals". In daily operation, I believe many people have doubts about what problems are commonly used terminals of Linux terminals. Xiaobian consulted various materials and sorted out simple and easy operation methods. I hope to help you answer the doubts of "what are the commonly used terminals of Linux terminals"! Next, please follow the small series to learn together!

Common Linux terminals

gnome-terminal (Gnome standard)

xfce4-terminal (XFCE4 standard)

lxterminal (LXDE standard)

konsole (KDE standard)

The first three are GTK style, konsole is Qt style, of course, their core is based on GNU/Bash this powerful Linux Shell.

If you like, you can install them all. Under Ubuntu, use the following command:

The code is as follows:

sudo apt-get install xfce4-terminal lxterminal konsole

Ubuntu default terminal is gnome-terminal, so do not install. Konsole is a KDE(Qt) program, so to download and install some Qt support libraries, the download volume will be relatively large, if only xfce4-terminal and lxterminal are installed, it only costs 3M traffic.

lxterminal is the lightest terminal among the above 4, starting as fast as cmd.exe of Windows.

After installation, you can press Alt+F2 to enter a specific name such as lxterminal to run, you can also create a launcher on the desktop (similar to Windows shortcut), and you can also find it in the "Accessories".

If you don't like it, uninstall it using Ubuntu with the following command:

The code is as follows:

sudo apt-get remove --purge xfce4-terminal lxterminal konsole

User profiles you can delete manually, such as the lxterminal user profile at ~/.config/lxterminal/lxterminal.conf

The code is as follows:

rm -rf ~/.config/lxterminal

Some common terminal shortcuts

Ctrl+L Clears the screen

Ctrl+U Cuts text to the beginning of the line (can be used to empty lines)

Ctrl+K Cut text to the end of the line

Ctrl+Y Paste recently cut text

Ctrl+C Kill the current process (can also be used to clear the current line)

Ctrl+D Exits the Shell or deletes the current character

Ctrl+A First line

Ctrl+E End of line

Home/End of line/End of line

Ctrl+F Move forward one character

Ctrl+B Move one character backward

Ctrl+P or Ctrl+N Up and Down History

Up and down arrow keys up and down history

Ctrl+Shift+C Copy

Ctrl+Shift+V Paste

Tab Smart autocomplete (quite powerful)

Hold down Ctrl key for block selection.

middle mouse button: paste

At this point, the study of "what are the commonly used terminals of Linux terminals" is over, hoping to solve everyone's doubts. Theory and practice can better match to help you learn, go and try it! If you want to continue learning more relevant knowledge, please continue to pay attention to the website, Xiaobian will continue to strive to bring more practical articles for everyone!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report