current location:Home > Technical Articles > System Tutorial > LINUX
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Play with Git
- Introduction to git The biggest difference between distributed and centralized is that developers can submit locally, and each developer copies a complete Git repository on the local machine through cloning (gitclone). Compared with the SVN centralized code management that most of us have used, git is more secure for managing code. If the svn server hangs up, its data is likely to be in danger of being lost. For git, There will be no such thing, the code is all git to local, even if the server hangs up, the code will still be completely saved. Git is a version controller, which is completely different from the traditional svn. svn is a difference comparison, and code cannot be submitted offline. And git saves the complete code base in
- LINUX 827 2024-05-06 14:37:27
-
- Building RAID5 under Linux
- 1. Preparation 1. Creating RAID5 requires at least 3 hard disks of the same capacity 2. You need to install the mdadm software package under Linux. You can use the rpm-qa|grepmdadm command to confirm whether the mdadm software is installed. 2. Partition the disk 1. Use fdisk-l Use the command to check the partition status; fdisk-l2. Use fdisk to partition the disk. Each partition in the RAID group needs to be the same size. The default ID of the partition is 83. Use the fd command to modify it. fdisk 3. Create a RAID5 group 1> To create a RAID5, at least 3 hard drives of the same capacity are required. It is recommended to use 4 hard drives of the same size, of which 3 hard drives are used as RAID5 and one hard drive is free as a hot spare. md
- LINUX 1136 2024-05-05 16:34:01
-
- Detailed explanation: SVN cooperates with Apache under Centos6.6
- Install svn and Apacheyuminstall-yhttpdhttpd-develsubversionmod_dav_svn. Make sure the svn module has been installed: mod_dav_svn#cd/etc/httpd/modules#ls|grepsvnmod_authz_svn.somod_dav_svn.so confirm that svn#svn--versionSVN configuration has been installed. Enter /etc/httpd Use vim to open the subversion.conf configuration file in the /conf.d directory to modify the options. The configuration of the module must ensure the following two sentences.
- LINUX 661 2024-05-04 08:13:19
-
- Record once and use strace to diagnose the problem of PHP occupying too much system resources.
- Local environment: redhat6.7 system. nginx1.12.1, php7.1.0, the code uses the yii2 framework problem: the local web site needs to use the elasticsearch service. When PHP uses elasticsearch built on a local server, the local load is normal. When I use AWS's elasticsearch service, the load on the local server is often too high. Check the nginx and php logs and find no exceptions. The number of concurrent connections in the system is also not high. At this time, I thought of a strace diagnostic tool that our boss told me. Debugging process: Find a php sub-process idstrace-
- LINUX 1209 2024-05-03 16:31:14
-
- Rsync file synchronization learning
- First, let’s understand the general principle of rsync synchronization: Rsync synchronization uses the so-called “Rsync algorithm” to synchronize the files between the local and remote hosts. This algorithm only transmits different parts of the two files instead of each time. All are transmitted in full, so the transmission speed is quite fast. The Rsync server will open a service channel (port) 873 and wait for the client Rsync connection. When connecting, the Rsync server will check whether the password (passwd) matches. If it passes the password check, the file transfer can begin. When the first connection is completed, the entire file will be transferred once, and the next time only the difference between the two files will be transferred. Next, we will do the preliminary setup and complete the task requirements first.
- LINUX 1241 2024-05-02 21:04:15
-
- Detailed explanation of Linux system disk
- 1. Disk classification. The current disk classifications on the market include: IDE disk (mostly used in PCs), SATA disk, SAS disk, SSD disk, etc. Most servers in enterprises are the latter two, and SATA disks are mostly used in enterprises. Some internal businesses and SAS disks are mostly used for external businesses (some business platforms). SATA disks currently have a maximum capacity of 4T, and SAS disks are generally between 300G and 600G. This type of capacity is most commonly used in enterprise production environments. The use of disks in actual production mainly depends on performance requirements, that is, disk reading. Writing speed. 2. Disk architecture: Enterprise-level servers have multiple disks. 3. Calculation of disk capacity. The structure of a disk generally includes tracks, disk surfaces, and sectors.
- LINUX 1360 2024-05-02 16:31:12
-
- How to configure master-slave replication in MariaDB
- In our previous tutorials, we have learned how to install and configure MariaDB[1], and also learned some basic commands for managing MariaDB[2]. Now let's learn how to configure a master-slave replication on the MariaDB server. Replication is used to create multiple copies of our database. These copies can be used to run queries on other databases. Some very heavy queries may affect the performance of the main database server, or we can use it for data redundancy. , or both of the above purposes. We can automate this process, that is, the replication process from the master server to the slave server is automatically performed. Perform backups without affecting writes on the primary server. So let's now configure our master-slave
- LINUX 662 2024-05-01 13:49:01
-
- Differences between Unix and Linux operating systems
- In the computer age, a considerable number of people mistakenly believe that Unix and Linux operating systems are the same. However, the opposite is true. Let's take a closer look. What is Unix? In the IT field, Unix, known as the operating system, was developed by AT&T in New Jersey, USA in 1969 (its trademark rights are currently owned by the International Open Standards Organization). Most operating systems were inspired by Unix, which was also inspired by the unfinished Multics system. Another version of Unix is Play9 from Bell Laboratories. Where is Unix used? As an operating system, Unix is mostly used on servers, workstations, and now also on personal computers. it
- LINUX 1513 2024-05-01 08:55:02
-
- The evasive module protects your website from application layer DOS attacks
- There are a variety of attack methods that can take a website offline, and the more complex methods involve technical knowledge of databases and programming. A simpler method is called a "DenialOfService" (DOS) attack. The name of this attack method comes from its intention: to cause normal service requests from ordinary customers or website visitors to be denied. Generally speaking, there are two forms of DOS attacks: the third and fourth layers of the OSI model, that is, the network layer attack. The seventh layer of the OSI model, that is, the application layer attack. The first type of DOS attack - the network layer, occurs when a large number of of junk traffic flows to the web server. When spam traffic exceeds the network's ability to handle it, the website goes down. The second type of DOS attack is at the application layer and uses combined
- LINUX 1213 2024-04-30 17:34:14
-
- Analyzing the Patron Saint of Linux
- The biggest differences between background processes and daemon processes are as follows: (a) The daemon process has completely separated from the terminal console, while the background program has not completely separated from the terminal (results will still be output to the terminal before the terminal is closed); (b) The daemon process will not be affected when closing the terminal console, and the background program will stop when the user exits. It needs to be run in nohupcommand& format to avoid the impact; (c) The session group, current directory, and file description of the daemon process The symbols are all independent. Background running is just a fork of the terminal to allow the program to execute in the background. These have not changed; the characteristics of the daemon process. The daemon is a special process that runs in the background. It is separated from the terminal, so that it can avoid running in the background.
- LINUX 686 2024-04-29 12:28:13
-
- One line to understand the causes and consequences of SSH login
- SSH flow chart According to the flow chart, we can see the process of our program from the initial browser to the final page echo. If there is anything you don't understand, please leave a message. The Hibernate layer is mainly responsible for mapping files, injection of Action and Service, and responsible for calling between the three layers of background services. **JSP is equivalent to the HTML page in our asp.net. If it is the same as our HTML page, then it can also be used. Ajax can be written and our events can be triggered. Events are triggered through the action attribute. There will be an address in this attribute, which is specifically used to establish a connection with our backend.
- LINUX 642 2024-04-29 09:10:09
-
- Come with me to learn Linux and install Nginx
- Today, I will lead you to install Nginx in a Linux environment. The Linux system used here is CentOS7.2. Prepare the installation tools 1. Download Nginx from the Nginx official website. The version used here is: 1.13.6.2. Upload the downloaded Nginx to Linux. Here, the /opt/nginx directory is used as an example. Run "tar-zxvfnginx-1.13.6.tar.gz" to decompress. 3. Switch to the /opt/nginx/nginx-1.13.6 directory and run ./configure for initial configuration. If the following prompt appears, it means that PCRE is not installed on the machine, and Nginx needs to
- LINUX 1431 2024-04-28 15:10:09
-
- Learn more about the difference between git fetch and git pull
- Both gitfetch and gitpull can update the remote repository to the local one. So what are the differences between them? There are several concepts that have to be mentioned to clarify this issue. FETCH_HEAD: It is a version link, recorded in a local file, pointing to the end version of the branch that has been taken down from the remote warehouse. commit-id: After each local work is completed, a gitcommit operation will be performed to save the current work to the local repo. At this time, a commit-id will be generated, which is a serial number that uniquely identifies a version. After using gitpush, this serial number will also be synchronized to the remote warehouse. With the above concepts in mind, let’s talk about gitfetchg
- LINUX 815 2024-04-27 21:34:33
-
- How to use Fail2Ban to protect your server from brute force attacks
- An important task for Linux administrators is to protect the server from illegal attacks or access. By default, Linux systems come with well-configured firewalls, such as iptables, Uncomplicated Firewall (UFW), ConfigServerSecurityFirewall (CSF), etc., which can prevent a variety of attacks. Any machine connected to the Internet is a potential target for malicious attacks. There is a tool called Fail2Ban that can be used to mitigate illegal access on the server. What is Fail2Ban? Fail2Ban[1] is an intrusion prevention software that protects servers from brute force attacks. It is written in Python programming language
- LINUX 991 2024-04-27 08:34:20
-
- Run Linux on Android devices
- Once upon a time, I tried searching for a simple way to run Linux on Android. My only intention at that time was just to use Linux and some basic applications like SSH, Git, awk, etc. Not asking for much! I don't want to root my Android device. I have a tablet that I use mainly for reading e-books, news, and a handful of Linux blogs. Other than that, I don't use it much. So I decided to use it to implement some Linux functions. If you also want to run Linux on your Android device, this article may be helpful to you. Termux - Android terminal emulator that runs on Android and ChromeOS
- LINUX 1160 2024-04-26 09:07:01