current location:Home > Technical Articles > System Tutorial > LINUX

  • Master teaches you how to install and use Docker on Linux
    Master teaches you how to install and use Docker on Linux
    Containers allow you to scale delivery capabilities (both internally and externally) in ways never possible before. For example, you can quickly deploy multiple NGINX instances (even for multiple different stages - such as development and production). Unlike virtual machines, containers do not consume too many system resources. Docker makes it extremely easy to create, deploy, and manage containers. Even better, installing and using Docker is particularly convenient on the Linux platform. I will show you how easy it is to install Docker on Linux and get you started with Docker. My demonstration platform is Ubuntu16.04Server, but the process is similar on most other Linux platforms. I'm assuming you
    LINUX 1028 2024-06-02 22:42:29
  • How to solve the problem of Win10 users failing to enable the Linux subsystem
    How to solve the problem of Win10 users failing to enable the Linux subsystem
    This error may be caused by the user not upgrading Win10 to the latest version. Let's take a look at the solution to the error "0x80070057" when opening the Linux subsystem in Win10. Error screenshot Cause of the error: This error is because Win10 has released a new version, but the Win10 on the computer has not yet been upgraded to the latest version. When this failed like the editor's, the latest version number was 1703, and the editor's computer was still the previous version. Solution 1. Check the version: Settings>System>About. 2. You can wait for the updated version to be pushed by Microsoft, but the time is uncertain. If you want to actively upgrade, you can download the Win10 Yisheng software. 3. After upgrading to the new version using Win10 Yisheng (because it is upgrading the system version, you need to
    LINUX 983 2024-06-02 21:40:29
  • What are the best Linux distributions for programming? This article evaluates and provides insights for you
    What are the best Linux distributions for programming? This article evaluates and provides insights for you
    What are the best Linux distributions for programming? This article evaluates them and provides some perspective here. In short, the purpose is to help find one that suits your style. What are Linux distributions? A Linux distribution is a complete and packaged operating system based on the Linux kernel. But what is the Linux kernel? good question! This is the core of the operating system, as it interacts directly with the computer's hardware and manages system resources. However, the Linux kernel alone is not enough for most users, as it lacks many software applications and tools required for daily estimation tasks. A Linux distribution consists of the Linux kernel and a series of libraries, software packages, system utilities and graphical interfaces that make it
    LINUX 1313 2024-06-02 20:22:13
  • Practical case analysis and reference case analysis of grep command in Linux system
    Practical case analysis and reference case analysis of grep command in Linux system
    Directory 1. Introduction to grep command 2. Sentence format and common options 3. Reference case 3.1 Search for files starting with root in the file 3.2 Search for root that appears in the file 3.3 Search not only lines other than matching lines 3.4 Use of matching parts Color display 3.5 Only output the matching places in the file 3.6 Output the lines containing the matching string and display the number of lines 3.7 Statistics file or text The number of lines containing the matching string Summary 1. Grep command introduction grep in Linux system The command is a powerful text search tool that can use regular expressions to search for text and copy matching lines. The full name of grep is GlobalRegularExpressionPrint.
    LINUX 751 2024-06-02 19:04:13
  • Teach you how to change the font on the Linux console
    Teach you how to change the font on the Linux console
    I try to keep my mind as peaceful as possible, but there are always some things that throw me off, like the console font being too small. Mark my words, friend, one day your eyes will degenerate and you will no longer be able to see those tiny fonts you use when coding, and then you will regret it. Luckily, Linux diehards, you can change the console font. According to the consistent nature of Linux, the ever-changing Linux environment makes this problem less simple and clear, and there is no such thing as font management on Linux, which makes us easily confused. In this article, I'm going to show you the easiest way I've found to change fonts. What the hell is a Linux console? First let’s clarify what exactly we are talking about. When I
    LINUX 1304 2024-06-02 17:16:59
  • How to add scheduled tasks to Linux to execute PHP files during web development
    How to add scheduled tasks to Linux to execute PHP files during web development
    How to add a scheduled task to execute PHP files in Linux. In the process of web development, it is often necessary to set some regularly executed tasks. So how to add a scheduled task to execute PHP files in Linux? The editor of Study La shared the method of adding scheduled tasks to execute PHP files in Linux. , hope it helps you. How to add scheduled tasks to execute php files in linux 1. Open the linux system command line interface. Enter the following command in the command line interface: whichphp and press Enter. 1. Remember the php path linuxphp scheduled task in the previous step, continue to enter at the command line: crontab-elinux command manual, press Enter, press the "i" key to enter the editing mode of the vi editor.
    LINUX 929 2024-06-02 16:59:38
  • 2017 National Civil Service Examination Application Simulation Questions: What symbols are used for absolute paths?
    2017 National Civil Service Examination Application Simulation Questions: What symbols are used for absolute paths?
    Original link: #Question 1: What symbols are used to represent absolute paths? What are the representations of the current directory and upper-level directory? What are the representations of the home directory? What commands are used to switch directories? Answer: Question 2: How to view the current process? How to perform an exit? How to check the current path? Answer: Question 3: How to clear the screen? How to exit the current command? How to perform sleep? How to check the current user id? What commands are used to view specific help? Answer: Question 4: What functions does the Ls command perform? What parameters can be used to view Linux source files? Changchun Linux training, what are the differences? Answer: Question 5: Build soft links (shortcut method) and hard link commands. Answer: Question 6: What commands are used to create a directory? What commands are used to create files? For copying files
    LINUX 1158 2024-06-02 15:25:46
  • Analysis of common permission maintenance backdoor technologies under Linux
    Analysis of common permission maintenance backdoor technologies under Linux
    Obtaining the target's permissions during the penetration process is just the beginning. Usually, a side door is left for easy access again (APT for short). Therefore, it is necessary to maintain permissions and hide the side door. This article will analyze the common permission maintenance side door technologies under Linux, so that you can fight against them if you know them. 1. Principle of adding root account: lower the root password to password for the root user useradd-u-0-o-groot-Groot:password|chpasswd. The above command may not be added. If it cannot be added, execute the two commands separately useradd- u0-o-groot-Grootrootechoroot:root|chpasswdIf it still fails p
    LINUX 648 2024-06-02 15:11:33
  • Linux performance monitoring
    Linux performance monitoring
    This article mainly talks about the operation of performance monitoring on Linux (CentOS). 1. Monitor cpu usage --uptime. This command will print out how long the system has been running at the current time. The current number of logged-in users and the average load of the system. The load here is the number of processes in the CPU waiting queue per unit time. Waiting The more processes there are, the busier the CPU is. 2. Monitor the usage of memory and swap partition - free 3. System disk usage - df Here we use df-h to display capacity information in a user-friendly manner 4. Monitor network usage - ip and netstatip can view the network card Interface information, in centos, the network card is no longer unified command ethx, but will be checked
    LINUX 1117 2024-06-02 14:52:35
  • Application of PXE network installation and initialization of memory disk in CentOS7
    Application of PXE network installation and initialization of memory disk in CentOS7
    ###Answer 1: Step 1: Make sure the TFTP server, NFS server and DHCP server are installed on the PXE server. Step 2: Copy the CentOS7 ISO file to the TFTP server and add its path to the TFTP server. Step 3: Copy the CentOS7 installation file to the NFS server and add its path to the NFS server. Step 4: Set up the DHCP server to provide the client with the IP address, path to the TFTP server and NFS server. Step 5: Start the client. The client will load the CentOS7 ISO file from the PXE server and start installing CentOS7. ###Answer 2: PXE network installation of CentOS7
    LINUX 768 2024-06-02 14:50:39
  • 5 must-read books for learning Linux, how many do you know?
    5 must-read books for learning Linux, how many do you know?
    Below, the Linux editor of Danai will share with you what books you must read to learn Linux? We have compiled 5 books that are suitable for learning Linux. I hope it can help you~ 1. "In-depth Understanding of the Linux Kernel" Recommended Level: 5 stars The third edition of "In-depth Understanding of the Linux Kernel" will help you explore the main data structures, algorithms and programming methods used in the kernel. If you really want to understand the internal implementation mechanism of a computer, the author will explore its essence through phenomena and provide valuable in-depth analysis. This book discusses important features of specific Intel platforms and provides line-by-line dissection of relevant code snippets. However, the content covered in this book is not only limited to the mechanism of the code, but also explains the theoretical support of the Linux operating mode. 2. "Lin
    LINUX 517 2024-06-02 14:00:08
  • The regular directory structure of the Linux system, no matter what version of directory you switch between
    The regular directory structure of the Linux system, no matter what version of directory you switch between
    After we install the Linux system, the Linux system will also manually generate many files and directories like the Windows system. Such directories all contain different meanings. Next, let’s introduce what this kind of directory represents? Also, what are the distribution versions of the Linux operating system in the command line interface, and how do we switch between different directories. 1. Linux system directory structure. What we introduce here is the regular directory structure of the Linux system. No matter which version of the Linux system, the distribution version of the Linux operating system, or the Red Hat Linux, the following directories are usually included. bin: linux command directory (two's complement). sbin: linux command directory
    LINUX 1170 2024-06-02 13:05:54
  • linux htop An in-depth understanding of the top command under Linux: performance analysis tools and common options
    linux htop An in-depth understanding of the top command under Linux: performance analysis tools and common options
    1. top command 1. Introduction The top command is a commonly used performance analysis tool under Linux. It can display the resource usage of each process in the system in real time, similar to the Windows Task Manager. top is a dynamic display process, that is, the current status can be continuously refreshed through the user's keyboard. If this command is executed in the foreground, it will occupy the foreground exclusively until the user terminates the program. To be more precise, the top command provides real-time control of the system. Processor status monitoring. It will display a list of the most "sensitive" tasks for the CPU in the system. This command can sort tasks by CPU usage, video memory usage and execution time; and many features of this command can be accessed through interactive commands or Then set it in the personal customization file. 2,
    LINUX 695 2024-06-02 12:24:58
  • Use Linux find command with caution
    Use Linux find command with caution
    When using the find command under Linux, use the -ok option to avoid accidental deletion of files. This option will ask for your permission before removing any files. Recently, a friend reminded me that there is a useful option to run the find command more cautiously, which is -ok. It works similarly to -exec, except for one important difference, which causes the find command to request permission before performing the specified operation. Here's an example. If you use the find command to find files and delete them, you may use the following command: $find.-namerunme-execrm{}\; Any file named "runme" in the current directory and its subdirectories will be deleted immediately—
    LINUX 396 2024-06-02 11:28:32
  • Do you know several techniques to solve the problem of Linux space not being released?
    Do you know several techniques to solve the problem of Linux space not being released?
    In the Linux system, the Linux command chm, when the user installs, uninstalls, or adds a program, the system space may be weakened. The following are some of my methods to solve the problem of Linux space not being released: 1. Disk space detection. The reason why the space is not released may be because the C drive space is not enough for Linux certification, so we should use the df-h command to check the remaining space of the C drive. Such as: $df-hFilesystemSizeUsedAvailUse%Mountedonudev7.8G07.8G0%/devtmpfs1.6G9.5M1.6G1%/run/dev/mapper/ubuntu-vg925G287G639G31%
    LINUX 1000 2024-06-02 10:58:39

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28