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 errors in the added content, then restart a new window and execute source /etc/profile to solve the problem.
Recommended: "Linux Tutorial"
When all commands cannot be used, vi will also lose its function.
At this time, you need to use the absolute path of the shell command to call the command.
# 编辑profile文件 /usr/bin/vim /etc/profile
Then execute in a new window
source /etc/profile
The above is the detailed content of What to do if Linux does not support all commands. For more information, please follow other related articles on the PHP Chinese website!