Small knowledge, big challenge! This article is participating in the creation activity of “Essential Tips for Programmers”.

This article also participated in the “Digitalstar Project” to win a creative gift package and creative incentive money.

Let’s start with a quick list of common Distributions of Linux:

Let me borrow brother Goat’s picture here. A picture is worth a thousand words.

GUI mode

X-windows (Graphical Interface System)

Logging in from X-Windows via a graphical interface and accessing a Linux system is the most basic and most commonly used, which is not covered here

Gnome (Integrated Desktop Environment)

Shell Command line mode

Linux Virtual Console

⭐ Access other virtual consoles from the X Window GUI TTy1-TTy6:
+alt+f2>

⭐ Access other virtual consoles from the virtual Console tty1-TTy6 or X-Window GUI:
+alt+f1>


🔥 Changes the default login running level

Start with the /etc/inittab file:

Inittab is no longer in use. The only way to change the login runtime level today is to use the systemctl command.

#View the current runlevel
$ systemctl get-default

#Set the current run level to 3 (startup in command line mode)
$ systemctl set-default multi-user.target

#Set the current run level to 5 (i.e., graphical interface upon startup)
$ systemctl set-default graphical.target
Copy the code

Linux Remote Login & File Transfer

SSH protocol and remote login to Linux: SecureCRT, XShell…

Xftp file transfer through Xftp protocol!

SecureCRT:

XShell 7:

Xftp:

We hope this article will help you 🧠 feel free to leave your thoughts in the comments 🌊, we will discuss and share 🔥