[Linux RK] change network card name | CSDN creative punch in

background When ifconfig checks the network interface information, there are network interfaces eth0 and eth1. How are the name drivers of the two ports allocated? How to change the standard eth1 and eth0 to LAN and WAN (or users can define their own names). When ifconfig is displayed again, LAN and WAN network cards are displayed. The pr ...

Posted by Duje_KH on Thu, 27 Jan 2022 22:56:09 +0100

Operating system experiment 6 - producer consumer issues

Personal blog address 1, Experimental content Simulate process synchronization and mutual exclusion in the operating system. 2, Experimental purpose Familiar with the definition and physical meaning of critical resources, semaphores and PV operationUnderstand the method of process communicationMaster the knowledge of process mutual exclusio ...

Posted by freakyfreak on Thu, 27 Jan 2022 13:54:38 +0100

Basic service practice and explanation - 5 PXE batch deployment system

PXE batch deployment system 1, What is PXE Preface introduction: PXE pre boot execution environment (PXE), also known as pre execution environment, provides a mechanism to boot a computer using Network Interface. This mechanism allows the computer to start without relying on local data storage devices (such as hard disks) or locally insta ...

Posted by larrygingras on Thu, 27 Jan 2022 08:04:15 +0100

Front end performance optimization - using content distribution network CDN

Why use CDN When more and more components are introduced, use the app packaged by webpack JS file is easy to become too large, which is very unfriendly to the first screen loading. The JS code using the third-party resources of CDN will no longer be packaged into the JS package of local services. Reduce the volume of local JS package and imp ...

Posted by Anyaer on Wed, 26 Jan 2022 06:58:02 +0100

Qt actual combat case (30) -- using QUdpSocket class to realize UDP network broadcast communication

1, Project introduction UDP network broadcast communication is realized by using QUdpSocket class. Its principle is shown in the figure below. The working principle of UDP is: the UDP client sends a certain length of request message to the UDP server. The message size limit is related to the protocol implementation of each system, but it ...

Posted by RandomEngy on Tue, 25 Jan 2022 04:17:25 +0100

ESPIDF development ESP32 learning notes [HTTP client implementation]

TCP protocol stack ESP uses lwIP as embedded TCP/IP protocol stack support lwIP is a set of IP protocol stack implemented in C at MCU level, which can run on bare metal / RTOS / Embedded Linux. Lexin provides relevant porting packages for ESP32 For relevant contents, please refer to LwIP library functions, which are supported in LwIP and ESP ...

Posted by JCScoobyRS on Mon, 24 Jan 2022 16:38:13 +0100

linuxf service management -- time synchronization service

1, server side configuration Install the time synchronization server. There are no special requirements and there is no need to change the configuration. Server ip: 192.168.91.159 [root@www zoneinfo]# yum -y install ntp [root@www zoneinfo]# systemctl start ntpd #Change the configuration file and add the following two items [root@www ntp]# vi ...

Posted by greenhorn666 on Sun, 23 Jan 2022 18:16:19 +0100

Building LVS load balancing cluster - direct routing mode (LVS-DR)

1, Working principle of LVS-DR 1. Packet flow analysis (1) The client sends a request to the director server (load balancer), and the requested data message (the source IP is CIP and the target IP is VIP) reaches the kernel space. (2) The director server and Real Server are in the same network, and the data is transmitted through the two-lay ...

Posted by zarp on Sun, 23 Jan 2022 08:13:36 +0100

[Shangsi Valley _java foundation] XV. Network programming

reference material https://blog.csdn.net/PorkBird/article/details/113727633https://www.bilibili.com/video/BV1Kb411W75N?p=636&spm_id_from=pageDriver 1. Overview of network programming Java is a language on the Internet. It provides support for network applications at the language level. Programmers can easily develop common network a ...

Posted by gunhoe86 on Sun, 23 Jan 2022 05:37:08 +0100

[network programming] java udp multicast program uses multicast socket to send and receive data

Introduction to network communication According to the number of recipients, network data transmission can be divided into the following three ways. ·Unicast: provides point-to-point communication. The data sent by the sender each time has a unique destination address and is received by only one receiver. ·Broadcast: the data ...

Posted by uwannadonkey on Sat, 22 Jan 2022 23:06:24 +0100