git version control system -- managed code, not afraid to delete Library

1. Introduction to git version control system Version control system is a software skill to ensure that the consent files edited by different people are updated during the development process. It can help project developers track, branch, merge and manage code versions. At present, the common version control systems are CVS, GIT, mercury, Subv ...

Added by robvan75 on Sun, 16 Jan 2022 08:17:45 +0200

Centos7 installs the 1.21.2 cluster of K8S

Centos7 installation K8S 1. Server Three Centos7 servers need to be prepared and configured with at least 2C and 2G. All three servers have been configured with static IP. If not, please refer to: Configuring static IP for VM Ware+Centos7 host nameIPDocker versionHost configurationK8S versionmaster01192.168.159.17120.10.72C8G1.21.2wo ...

Added by komlos on Sun, 16 Jan 2022 04:59:25 +0200

Manjaro(Arch Linux) solution collection

Manjaro(Arch Linux) collection 1, Sogou input method problem 1. sogou input method installation error: sogou Pinyin exception, please try to delete SogouPY and restart After various analysis, the main means adopted is to judge the file missing problem through Sogou qimpanel. It can be confirmed that it has a great relationship with fcitx and ...

Added by ecxzqute on Sun, 16 Jan 2022 04:43:17 +0200

Linux file compression technology

Compression command Common compressed file extensions . tar: Tar program packages files without compression.tar. GZ: Tar program package file, gzip compressed.tar. Bz2: Tar program package file, bzip2 compression.tar. xz: Tar program package file, compressed by xz. GZ: gzip program zip file. Z: compress program compresses files. bz2: bzip2 pr ...

Added by cgraz on Sat, 15 Jan 2022 17:35:31 +0200

Linux (enterprise) - docker

Linux (enterprise) - docker 1. Introduction to docker Docker is the engine for managing containers. Docker is an application packaging and deployment platform, rather than a simple virtualization technology. 2. Installation and startup After configuring the yum source, install and enable. Alibaba cloud image is recommended. https://mirror ...

Added by mitwess on Sat, 15 Jan 2022 16:10:21 +0200

Detailed explanation of the use of CURL

Initiate GET request The command is followed directly by the address curl 'https://www.baidu.com' Splicing query parameters in request curl -G -d 'key=value' 'https://www.baidu.com' This is equivalent to accessing in the browser address bar https://www.baidu.com?key=value If you need to url encode value, it can be written as follows: c ...

Added by cx3op on Sat, 15 Jan 2022 15:02:02 +0200

Installing Docker under Centos7

1, Introduction Docker is an open source application container engine; Is a lightweight container technology; Docker supports compiling software into an image; Then, configure various software in the image and publish the image, so that other users can directly use the image; The running image is called a container, and the container sta ...

Added by ph8edsicness on Sat, 15 Jan 2022 14:29:48 +0200

[C language note] [macro definition series] obtain the parameter quantity of variable parameter macros

[C language notes] [linux macro definition series] obtain the parameter number of variable parameter macros linux macro defines a series of contents. Used to record various macro definitions in linux ☺. Macro definition description Used to get the actual number of parameters passed by the variable parameter macro. For example, call COUNT_A ...

Added by maralynnj on Sat, 15 Jan 2022 10:50:48 +0200

Configure FTP server under Linux with Python to access / media directory

On Linux operating system, vsftpd is a common ftp server, but vsftpd cannot set the / media directory as the root directory of ftp. It may also be that I opened it in the wrong way. In short, I didn't operate successfully, so I switched to Python to try to achieve a similar purpose. Installing Python 3 The Linux system comes with Python versi ...

Added by nikky_d16 on Sat, 15 Jan 2022 09:44:45 +0200

Manage variables, secrets and facts

Manage variables, secrets and facts Introduction to ansible variable Define the meaning of variables: replace some values in playbook with variables, so as to simplify the writing of playbook The variable contains values: the user to create, the software package to install, the service to restart, the file to delete, and the document to r ...

Added by Grant Cooper on Sat, 15 Jan 2022 04:52:20 +0200