Summary of solutions to common Linux problems

Summary of solutions to common Linux problems

1. Connect Centos7 under VMware and set a fixed IP

1) First, right-click the virtual image name and click "Settings"

2) Open the terminal and check the network

3) Edit this file as root user

4) Restart the network card and check the network

5) Edit the previously edited file again

[root@nginx ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33
#IPADDRO and PREFIXO are as shown above. For GATWAYO and DNS1, you only need to change the last part of IPADDRO to 1.
IPADDRO=192.168.126.136
PREFIXO=24
GATWAYO=192.168.126.1
DNS1=192.168.126.1

6) Restart the network card and the setting is completed

[root@nginx ~]# systemctl restart network

2. Install wget on Linux

[root@nginx ~]# yum -y install wget

3. Linux installation tree

[root@nginx ~]# yum install tree -y

4. Install vim on Linux

[root@nginx conf]# yum -y install vim*

5. Linux installation zip

[root@Nginx images]# yum install zip

6. CentOS7 uses firewalld to open and close the firewall

  • Start: systemctl start firewalld
  • To shut down: systemctl stop firewalld
  • Check the status: systemctl status firewalld
  • Disable at boot: systemctl disable firewalld
  • Enable at boot: systemctl enable firewalld

7. Install netstat on Linux

[root@Nginx sbin]# yum install net-tools

8. Linux uses netstat to check whether the port is occupied

[root@Nginx sbin]# netstat -anp|grep 8080
tcp 0 0 127.0.0.1:8080 0.0.0.0:* LISTEN 1245/nginx:master

9. Install bc calculator on Linux

[root@localhost ~]# yum install bc

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Tips for viewing History records and adding timestamps in Linux
  • Several ways to run Python programs in the Linux background
  • Creating and executing Linux shell scripts
  • Python uses paramiko to operate Linux
  • Android's implementation method of executing shell scripts in the Linux terminal to directly print the log of the currently running app
  • How to remotely batch execute Linux command programs using pyqt
  • Use of Zabbix Api in Linux shell environment
  • How to recover accidentally deleted messages files in Linux
  • In-depth analysis of the Linux kernel macro container_of
  • Linux shell command counts the value of a column after deduplication

<<:  js implements a simple calculator

>>:  Detailed explanation of MySQL stored procedures, cursors, and transaction examples

Recommend

Example code for realizing charging effect of B station with css+svg

difficulty Two mask creation of svg graphics Firs...

Detailed tutorial on how to install MySQL 5.7.18 in Linux (CentOS 7) using YUM

The project needs to use MySQL. Since I had alway...

Install multiple versions of PHP for Nginx on Linux

When we install and configure the server LNPM env...

Why should you be careful with Nginx's add_header directive?

Preface As we all know, the nginx configuration f...

About the configuration problem of MyBatis connecting to MySql8.0 version

When learning mybatis, I encountered an error, th...

A collection of common uses of HTML meta tags

What is a mata tag The <meta> element provi...

A brief introduction to the general process of web front-end web development

I see many novice students doing front-end develop...

centos 7 modify sshd | prohibit root login and sshd port script definition

1. Create a new user wwweee000 [root@localhost ~]...

How to clean up the disk space occupied by Docker

Docker takes up a lot of space. Whenever we run c...

Detailed explanation of samba folder sharing server configuration under centos

1. Introduction Recently I found that there are m...

Detailed explanation of the difference between Vue life cycle

Life cycle classification Each component of vue i...

Specific use of Linux man command

01. Command Overview Linux provides a rich help m...

Install Docker on Centos7 (2020 latest version available, just copy and paste)

Refer to the official documentation here for oper...