Linux file commands and file permissions

File common commands create a file touch Copy file cp file1 file2 //Copy file1 in the same directory and name file2 cp file1 file2 dir //Copy file1 and File2 to dir directory cp -p //Move the file and save all the original information Move (rename) file mv a b //Move to local and rename mv a b dir //Move a and b to di ...

Posted by mlewis on Mon, 31 Jan 2022 22:31:33 +0100

Confluent Platform: ksqlDB real-time stream processing (quick start)

1. Introduction to confluent platform The Confluent Platform is a comprehensive event flow platform that enables you to easily access, store and manage data in the form of continuous real-time streams. Confluent by Apache Kafka ® Built by the original creator of Kafka, it expands Kafka's advantages through enterprise level functions a ...

Posted by James25 on Mon, 31 Jan 2022 21:53:23 +0100

Linux based text operation

1 file stream There are three kinds of input / output streams in Linux shell: standard input stream, standard output stream and standard error stream. Each stream has a file descriptor, a commonly used abbreviated name, and a commonly used default device (this is interesting). Keyboard input (the default device) is actually sending input to th ...

Posted by nishmgopal on Mon, 31 Jan 2022 20:46:42 +0100

Web server cluster - LNMP dynamic website deployment

1, Foreword 1.1 LNMP overview LNMP refers to a group of free software acronyms commonly used together to run dynamic websites or servers. L refers to Linux, N refers to Nginx, M generally refers to MySQL, MariaDB, P generally refers to PHP, Perl or Python. 1.2 LNMP introduction LNMP represents the website server architecture of Nginx+My ...

Posted by mabus on Mon, 31 Jan 2022 19:07:51 +0100

Install NS3 under Ubuntu

Installing NS3 with bake under Ubuntu ns3 Let me have to love, first contact ns3,I hope to study and discuss with my classmates! [note] refer to the NS official website for the following operations: https://www.nsnam.org/wiki/Installation#Installation 1) Platform selection Choose Ubuntu here: Depending on the package download, because th ...

Posted by jmelnick on Mon, 31 Jan 2022 17:02:15 +0100

Detailed description of sersync and frsync:

1.inotify+rsync If you want to synchronize data regularly, you can add rsync to the scheduled task at the client, but the synchronization time granularity of the scheduled task can not meet the requirements of real-time synchronization. Inotify file system monitoring mechanism is provided after Linux kernel 2.6.13. Real time synchronization ca ...

Posted by vurentjie on Mon, 31 Jan 2022 15:06:49 +0100

From creating a server to building an intranet penetration server

Create a server to build an intranet penetration server After the project is developed, how to create a new server and deploy the project to the server? This requires the installation of some basic tools, such as jdk, maven and Jenkins to realize automatic deployment; In addition, you can build some auxiliary tools, such as nexus(maven private ...

Posted by kida462 on Mon, 31 Jan 2022 07:06:06 +0100

linux memory source code analysis - memory defragmentation (synchronization relationship)

Reprint notes: http://www.cnblogs.com/tolimit/ summary Recently, I was looking at memory recycling. The synchronization of memory recycling is very complex. Then I thought that the synchronization relationship in the process of page migration without memory defragmentation is so complex. I looked at the source code of page migration with curi ...

Posted by fluteflute on Mon, 31 Jan 2022 06:19:12 +0100

CentOS7 installs MySQL database and sets firewall

Steps for installing MySQL database in CentOS7 MySQL database installation Download wget command Delete the installed MySQL service Install MySQL installation package Possible problems Question one Question two MySQL database configuration Get temporary password ·Log in to MySQL Change Password Modify MySQL default code Simp ...

Posted by easyedy on Mon, 31 Jan 2022 05:25:02 +0100

[IOT home] Chapter 3: server environment -- Python 3 6. HomeAssistant, bt, etc

Diary: June 12, 2021 16:55:42 Diary: it's 15:04:04 on June 12, 2021 Diary: it's 07:04:28, June 13, 2021. I've been thinking about it all night. Due to dependency problems, I installed Python 3 6 frequent failures. In order not to repeat the actions, the following dependencies are provided: apt-get install -y sqlite* zlib* arm-linux-gnueabihf ...

Posted by kevinridge on Sun, 30 Jan 2022 18:26:57 +0100