Embedded Linux Development - root file system NFS network mount

1. Preface The root file system is the first file system mounted after the Linux kernel is started. As described in the previous article, how to use busybox to make the root file system. This article introduces how to make the kernel find the file system after the root file system is successfully made, complete the mount, and enter the system ...

Added by dv_evan on Wed, 23 Feb 2022 18:43:27 +0200

Kafka's online deployment scheme for Kafka production optimization

1. Operating system Deploy on Linux I/O modelData network transmission efficiency 1.1 I/O model level The I/O model is the method by which the operating system executes IO instructions. There are five types Blocking IONon blocking IOIO multiplexingSignal driven IOAsynchronous IO We can simply think that the latter model is more efficient ...

Added by PHPycho on Wed, 23 Feb 2022 14:09:46 +0200

Quick start to shell Scripting (for new learners)

The following shell commands are gitbash installed on windows can execute successfully. The single and double quotation marks under linux may be different. Common basic commands Commands: let let command is a tool for calculation in BASH, which is used to execute one or more expressions. It is not necessary to add $to represent vari ...

Added by KingPhilip on Wed, 23 Feb 2022 13:35:13 +0200

Linux series installs a new hard disk on the server and mounts it to the specified directory

edge Recently, the server's hard disk has reached 91. In order to prevent the disk from hanging up due to insufficient storage, we plan to mount some things that are not commonly used and occupy more memory elsewhere. In order to keep consistent with the original path, you may need to add a soft connection or hard connection. In order to preve ...

Added by Scotty2024 on Wed, 23 Feb 2022 12:45:11 +0200

Several common JVM tuning scenarios

Recently, many small partners told me that they have learned a lot of JVM tuning knowledge, but they don't know when to tune the JVM in practical work. Today, I will introduce several JVM tuning scenarios. When reading this article, it is assumed that you have understood the data area and common garbage collection algorithms at runtime, as ...

Added by stevenm on Wed, 23 Feb 2022 11:20:28 +0200

MySQL MYCAT installation configuration

explain Linux MYCAT installation configuration to realize MySQL master-slave replication + read-write separation.In this case, you have installed MySQL master-slave replication by default. Please refer to my related articles for details.Mycat has a single server and MySQL has a master server and a slave server. There are three servers in total ...

Added by PhillNeedsHelp on Wed, 23 Feb 2022 04:53:32 +0200

linux Driver Development Notes

Linux driver development has a specific mode. In my opinion, linux driver only does one thing, Unified conversion of devices into unified class 3 virtual devices namely: 1. Character device 2. Block equipment 3. Network equipment linux driver development needs to be implemented in Ubuntu system (it is usually developed under Ubuntu and t ...

Added by binumathew on Wed, 23 Feb 2022 03:32:16 +0200

[Prometheus] Prometheus monitoring case

1. Host monitoring (1). Deploy node_exporter root@docker-3 src]# tar xf node_exporter-0.18.1.linux-amd64.tar.gz [root@docker-3 src]# mv node_exporter-0.18.1.linux-amd64 /usr/local/node_exporter-0.18.1 [root@docker-3 src]# ln -s /usr/local/node_exporter-0.18.1/ /usr/local/node_exporter //Modify node_exporter profile [root@jumpserver ~]# cat / ...

Added by wkoneal on Wed, 23 Feb 2022 02:57:21 +0200

Troubleshooting of an external domain name error in Pod resolution in K8s

WeChat official account: operation and development story, author: Mr. Dong Zi 1. Fault phenomenon We have an agent agent service. After publishing to the k8s cluster, the pod status is Running, but the server has been unable to receive the heartbeat signal. Therefore, we go to the cluster to check the log and find a large number of TCP time ...

Added by raahatazim on Tue, 22 Feb 2022 18:25:13 +0200

Basic operations of Docker image

Introduction: This article introduces the three most commonly used basic operations of Docker image: login, pull and push, as well as how to log in to a sub account. By understanding the basic operation of mirroring, you can use the container mirroring service ACR more skillfully. For image download, domain name resolution and time synchron ...

Added by CWebguy on Tue, 22 Feb 2022 17:07:40 +0200