Linux_ Terminal and Shell
1. What is a terminal
In short, it is something that can accept input and display (output) results. Terminal is the most important man-machine interface of computer system.Corresponding program file of desktop terminal (pseudo terminal) of CentOS / usr / bin / Gnome terminal
2. console and Terminal
In the early days, the physical I / O devic ...
Added by Janco on Sat, 18 Dec 2021 09:47:16 +0200
Basic operation of page table in linux
Finding a virtual address by traversing the page table and mapping the corresponding physical memory is a very common operation, so the whole walk traversal process should take as little time as possible.
show_pte()
With show_ The PTE () function is taken as an example to illustrate how to obtain the physical page conversion process according ...
Added by webdevelope on Sat, 18 Dec 2021 07:53:51 +0200
Redis advanced project practice, complete collection of old boy linux e-books
Function [#](
)
Ensure complete data transmission
Redis distributed lock implementation source code explanation [#](
)
Graphic explanation [#](
)
Step [#](
)
Distributed locks meet two conditions: one is the lock with effective time, and the other is high-performance unlockingredis commands setnx (set if not exist) and setex (set exp ...
Added by thoand on Sat, 18 Dec 2021 06:11:36 +0200
mysql scheduled backup in linux Environment
In my blog website, Nacos is used as the configuration and registration center and associated with the database. Since the data, data and website settings are stored in the database, I always want to make a backup. So I found a relatively simple scheduled backup mode. Of course, it is based on linux.
Method: use the timer in linux system to ...
Added by henka on Sat, 18 Dec 2021 03:11:53 +0200
Installing MySQl on Linux (CentOS system)
1, Centos6 X version of yum image installation
1. If you are using a simplified version of CentOS, you need to install yum first Note: if you have no problem with yum, please skip this step to install Yum by yourself 2. If there is a problem with yum, you need to execute these five lines of commands Note: five lines of commands, five steps ...
Added by RyanDev on Sat, 18 Dec 2021 02:42:37 +0200
MooseFS distributed network file system
catalogue
1, Foreword
1. Introduction to moosefs
2. Characteristics of moosefs
(1) Tomographic structure (directory tree)
(2) Store file properties (permissions, access, and modification time)
(3) Support special files (block device, character device, pipeline)
(4) Symbolic link
(5) Access to the file system can be restricted by IP addr ...
Added by pablocullen on Sat, 18 Dec 2021 01:26:30 +0200
Deployment of ELK log analysis system
1, What is ELK
Generally speaking, ELK is a combination of three open-source software * * Elasticsearch (log storage and search), Logstash (log collection) and Kibana (log viewing), which can complete more powerful user query, sorting and statistical requirements * *. ELK is also known as ELKstack. The official domain name is elastic.co.
The ...
Added by joelhop on Sat, 18 Dec 2021 00:00:52 +0200
Linux basic operation, getting started
Linux Distribution
Linus towaz's Linux is just a kernel. Kernel refers to a system software that provides functions such as device driver, file system, process management and network communication. The kernel is not a complete operating system, it is only the core of the operating system. Some organizations or manufacturers package the Linux ...
Added by expl0it on Fri, 17 Dec 2021 19:00:22 +0200
Configure Docker environment of ROS
Configure Docker environment of ROS
target
Configure two independent Docker environments, ROS1 and ROS2 GUI applications in the ros docker container on the local display server, such as rqt, rviz, etc From the local, you can directly ssh log in to the ROS container of the server Mount a directory of the server into the container to facil ...
Added by K3nnnn on Fri, 17 Dec 2021 12:20:43 +0200
In depth understanding of Linux kernel - accessing files (sys_read+sys_write process tracking)
reference resources: https://blog.csdn.net/u012319493/article/details/85331567 Accessing disk based files is a complex activity, which involves not only the processing of VFS abstraction layer and block devices, but also the use of disk cache.
The ordinary files and block device files of the disk file system are simply collectively referred to ...
Added by chanw1 on Fri, 17 Dec 2021 11:54:43 +0200