Scan / detect new LUN s and SCSI disks on Linux

Disks in a Linux server can be divided into local disks and LUNs (logical unit number), the local disk is the local disk of the physical server or the local virtual disk of the virtual machine, and the LUN is the logical unit number, which is a logical object, so it is often called Logical Device. It is a logical disk shared by remote centraliz ...

Posted by rich1983 on Wed, 29 Dec 2021 07:29:54 +0100

Shell awk command

catalogue 1, Working principle 2, Command format 3, Common built-in variables 4, Output text by line 5, Output text by field 6, Calling shell commands through pipes, double quotes 1, Working principle Read the text line by line. By default, the text is separated by a space or tab key. Save the separated fields to the built-in variable, ...

Posted by Siggles on Wed, 29 Dec 2021 07:12:54 +0100

Linux interview questions, classic Linux interview questions, common Linux interview questions with answers

Linux interview questions and answers (version 2022) are suitable for fresh students and experienced programmers. Each is a carefully screened high-frequency interview question to help you find a satisfactory job! Linux Download link: All interview questions and answers PDF 1. How many physical CPUs and the number of cores of each CPU in the ...

Posted by J4rod on Wed, 29 Dec 2021 01:15:19 +0100

Learn to manage printers with CUPS

1, CUPS introduction CUPS is a modular open source printing system, which uses Internet Printing Protocol (IPP) as the basis to manage printers, print requests and print queues. CUPS supports network printer browsing and printing options based on PostScript printer descriptions. CUPS also provides a common print interface across the local netw ...

Posted by bsgrules on Tue, 28 Dec 2021 23:14:26 +0100

Linux - account and permission management

preface One of the best things about Linux is its multi person and multi task environment. If you are exposed to Linux for the first time, what is the meaning of so many directories and files under Linux? Let me make a summary. 1, Manage user accounts Compared with windows operating system, the functions of user account and group account ...

Posted by Percadan on Tue, 28 Dec 2021 23:11:19 +0100

Linxu's help instructions

Linxu's instructions Usage scenario When you are not familiar with an instruction Get help Basic grammar man [command or configuration file] NAME ls - list directory contents SYNOPSIS ls [OPTION]... [FILE]... DESCRIPTION List information about the FILEs (the current directory by default). Sort entri ...

Posted by WBSKI on Tue, 28 Dec 2021 21:58:41 +0100

Planning tasks in linux

1, Custom scheduled tasks 1. atd service (one time) 1. Command corresponding to atd service Installation is required before using the at command [root@localhost lianxi]# yum install at -y Then the atd service must be started, otherwise it will not perform tasks regularly [root@localhost lianxi]# service atd start Redirecting to /bin/syst ...

Posted by simplyi on Tue, 28 Dec 2021 19:09:45 +0100

Installing Archiver Appliance under CentOS7

1, Software installation 1.1 MySQL installation Download the installation package mysql-8.0 23-1. el7. x86_ 64.rpm-bundle. tar. gz. After decompression, the installation process shall be carried out in the following order: (1) mysql-community-common[dongxw@localhost mysql]$ sudo rpm -ivh mysql-community-common-8.0.23-1.el7.x86_64.rpm (2) My ...

Posted by vishal99 on Tue, 28 Dec 2021 18:06:34 +0100

System D process management

systemd introduction systemd is the main system daemon management tool on Linux system at present. On the one hand, init manages the process serially, which is prone to blocking. On the other hand, init only executes the startup script and cannot manage the service itself. Therefore, starting from CentOS 7, init has been replaced by systemd as ...

Posted by juuuugroid on Tue, 28 Dec 2021 17:37:02 +0100

The whole process of installing torch environment under Linux

1. Installing anaconda3 1.1 download anaconda3 Directly in Official website Slow down, recommended Tsinghua mirror (you can also change the source of Pip to domestic, and pip install will be much faster) In the latest date, select an Anaconda3 installation package corresponding to your system version, x86_64 means compatible with 32-bi ...

Posted by BZorch on Tue, 28 Dec 2021 17:24:28 +0100