Solution to Linux not supporting all commands

Solution to Linux not supporting all commands

What should I do if Linux does not support all commands? Solve the problem that all Linux commands cannot be used

This problem indicates that there is a problem with your /etc/profile configuration, usually because there is a problem with the path configuration. Eliminate the errors in the added content, then restart a new window and execute source /etc/profile to solve the problem.

When all commands are disabled, vi becomes useless.

At this time, you need to use the absolute path of the shell command to call the command.

# Edit the profile file /usr/bin/vim /etc/profile

Then execute in a new window

source /etc/profile

All linux commands cannot be used

When configuring nginx, all linux commands cannot be used after the error export

This problem occurs because the system's environment variables are not configured correctly. There are many reasons for this, such as system upgrades, improper operations, etc., which cause the environment variables to be overwritten and modified. There are two ways to solve it.

First: Enter the following directly in the Linux command line interface and press Enter (import environment variables and the storage address of common shell commands):

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

Second: If all system commands cannot be used, you can also use the absolute command vi to open the profile
/bin/vi /etc/profile

Add the environment variable address in the system configuration file

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

The above is the result of the editor combining multiple articles. I hope it can help everyone.

You may also be interested in:
  • Linux series of commonly used operation and maintenance commands (summary)
  • Detailed explanation of Linux lsof command usage
  • Linux common basic commands and usage
  • Linux traceroute command usage detailed explanation
  • Detailed explanation of Linux file transfer commands rz and sz
  • Detailed explanation of awk command in Linux

<<:  Solution to the Multiple primary key defined error in MySQL

>>:  Use Angular CDK to implement a Service pop-up Toast component function

Recommend

Detailed explanation of commands to view linux files

How to view linux files Command to view file cont...

Example code for implementing background blur effect with CSS

Is it the effect below? If so, please continue re...

Vue implements the frame rate playback of the carousel

This article example shares the specific code of ...

Html+CSS floating advertisement strip implementation

1.html part Copy code The code is as follows: <...

How to implement scheduled backup of MySQL in Linux

In actual projects, the database needs to be back...

Native Js implementation of calendar widget

This article example shares the specific code of ...

Angular Dependency Injection Explained

Table of contents Overview 1. Dependency Injectio...

Solution to the failure of docker windows10 shared directory mounting

cause When executing the docker script, an error ...

A Brief Analysis on the Time Carrying Problem of MySQL

The default time type (datetime and timestamp) in...

Introduction to the use of CSS3 filter attribute

1. Introduction When writing animation effects fo...

Linux disk management LVM usage

1. Introduction to LVM When we manage Linux disks...