Detailed Explanation of Linux Who Command and Its Parameters

Linux Who Command Explained: One of the Most Common Linux Commands Function Description: Displays the information of users currently logged into the system.Syntax: who [-Himqsw][–help][–version][am i][record file]Additional Information: Executing this command will inform you which users are currently logged into the system. Running the who command alone will list the login accounts, the terminal used, … Read more

Effective Solutions for USB File Encoding Issues in Linux

It is rare to use a USB drive in a Linux system, but recently a friend discovered that files on the USB drive appeared garbled when loading the device in Linux. What should be done? Many friends are not very familiar with Linux and do not know how to operate it. Don’t worry, let me … Read more

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

How to Partition Linux System Using GParted?

GParted is a very useful tool for disk partitioning on Linux systems. So, how does GParted partition a Linux system? Today, in our computer tutorial, we will share the solution to this question. In this tutorial, we will learn how to use a Linux emergency boot disk to implement your changes. Once the disk is … Read more

Linux Kernel Learning Notes

Linux Kernel Learning Notes

This article is an excellent piece from the Kanxue Forum. Kanxue Forum Author ID: e*16 a The following is based on the code of linux0.11. 1 Kernel's Five Major Structures 2 Interrupt Workflow 1. ARM Memory (1) Convert CPU working mode (2) Copy and stack registers (3) Set interrupt vector table (4) Save the return … Read more

Connecting to CentOS 8 Using Windows 10 Remote Desktop

Connecting to CentOS 8 Using Windows 10 Remote Desktop

↓Recommended Follow ↓ This article introduces how to use Windows 10 to remotely connect to a virtual machine desktop (after connecting to the virtual machine using remote connection tools like Xshell), proven to be effective. Feel free to reach out if you have any questions! 1. Install EPEL Repository First, check if the EPEL repository … Read more

Installing Cobbler on Linux for Network Installation

Using Cobbler on Linux can quickly establish a Linux network installation environment, significantly lowering the technical barrier for Linux network installations. So how do we install Cobbler on a Linux system? Let’s learn together. Introduction to Cobbler Cobbler is an open-source project supported by Redhat, used for deploying and installing systems. Therefore, it has good … Read more

Installing and Using XEN Virtual Machine on Linux

1. Install Xen The command is as follows: yum install xen* kernel-xen* virt-manager vnc* xen-lib python-virtinst kernel-xen: Linux kernel that can run Xen xen: Main Xen package, including configuration files, startup scripts, and some libraries xen-libs: Libraries required by Xen python-virtinst: Provides terminal installation software virt-manager: Used for graphical interface management of Xen 2. Modify … Read more

Differences Between Various Linux Versions

I have never quite understood the differences between RHEL, CentOS, Ubuntu, and Fedora. After some research, I have organized the information here for reference. The most concerning points are: 1. CentOS is the free version based on RHEL; 2. Ubuntu is suitable for desktop applications, while RHEL is suitable for enterprise applications. 1. Differences Between … Read more

Using Chmod Command to Change File or Directory Permissions

Syntax: The syntax is chmod [options] [MODE] filename File Permissions # File Permissions 0 No Permissions 1 Execute Permission Only 2 Write Permission Only 3 Execute and Write Permissions 4 Read Permission Only 5 Read and Execute Permissions 6 Read and Write Permissions 7 All Permissions Command Options: -c Only show the names of files … Read more