Quick Reference Guide for Common Linux Commands

Quick Reference Guide for Common Linux Commands

Click on the above“Beginner Learning Visuals”, select to add “Star” or “Pin” Heavyweight content delivered first-hand System Information arch # Show the machine's processor architecture (1) uname -m # Show the machine's processor architecture (2) uname -r # Show the currently used kernel version dmidecode -q # Show hardware system components – (SMBIOS / DMI) … Read more

Introduction to Linux and Basic Commands

Introduction to Linux and Basic Commands

1. Introduction to Linux 1.1 What is Linux? Linux is a free and open-source Unix-like operating system kernel, first released by Linus Torvalds in 1991. When we refer to a “Linux system,” we mean an operating system distribution that is based on the Linux kernel and integrates various software and tools. 1.2 Common Linux Distributions: … Read more

Unlocking Linux: Shell Programming Variables

Unlocking Linux: Shell Programming Variables

1. What is Shell (1) Definition Shell is the command line interpreter in the Linux system, acting as a translator between the user and the system kernel. Users input various commands in the terminal, which are received and parsed by the Shell, then translated into instructions that the system kernel can understand, executing the corresponding … Read more

A Brief Discussion on How to Compromise a Linux Host

A Brief Discussion on How to Compromise a Linux Host

In previous articles, we discussed how to compromise a Windows host using msf. In this article, we will talk about how to compromise a Linux platform using MSF! Experimental Environment CentOS 7 Kali Linux Generating Shell First, we will use msf to generate an executable shell for the Linux platform. The command is as follows: … Read more

How to Add a Directory to the PATH Environment Variable in Linux

How to Add a Directory to the PATH Environment Variable in Linux

When entering commands in the Linux command line, you are essentially instructing the shell to run an executable file with a specified name. Executable programs in Linux (such as <span>ls</span>, <span>find</span>, <span>file</span>, etc.) are typically stored in multiple different system directories. As long as they have executable permissions, files stored in these directories can be … Read more

Summary of Linux Knowledge Points

Summary of Linux Knowledge Points

1. Basics 2. Help Commands 3. File and Directory Management (Part 1) 4. File and Directory Management (Part 2) 5. Permission Management 6. Vim Text Editor 7. File System and File Search 8. System Management 9. Disk Partitioning, Logical Volumes, and Boot Repair 10. Understanding BASH in Shell 11. Basic Shell Commands 12. Text Operations

Don’t Let Basic Linux Skills Hold You Back! Do You Really Understand These Shell Tricks?

Don't Let Basic Linux Skills Hold You Back! Do You Really Understand These Shell Tricks?

Click the blue “Most Programmer” to follow me! Add a “star” to get daily tech learning at 18:03 Shell is the core weapon of the Linux system, but many people only know the basic commands likels、cd、rm and nothing more. The following advanced tricks will help you say goodbye to being a “Shell novice” and boost … Read more

Linux Shell Control Flow

Linux Shell Control Flow

(Click the public account above to quickly follow) Source: Cheng Mo www.cnblogs.com/chengmo/archive/2010/10/14/1851434.html If you have good articles to submit, please click → here for details The Linux Shell has its own set of control flow statements, including conditional statements (if), loop statements (for, while), and selection statements (case). Below, I will introduce the usage of … Read more

A Beautiful Shell for Linux

A Beautiful Shell for Linux

From: Beginner's Station Let’s start with a beautiful image 1. Introduction to zsh 1.1 Linux Shell Linux/Unix provides many types of shells; why so many shells? Are they for cooking? Let me ask you, why do you have so many similar clothes? Different colors and textures. Writing programs is much more complex than buying clothes, … Read more

Useful Tricks in the Linux Shell

Useful Tricks in the Linux Shell

(Click the public account above to quickly follow) English: Techbar, Translation: Linux China/geekpi linux.cn/article-2389-1.html If you have good articles to submit, please click → here for details I regularly use the Linux shell (Bash), but I often forget some useful commands or shell tricks. Yes, I can remember some commands, but they definitely won’t be … Read more