Home > Article > Operation and Maintenance > What is the command to install vim on linux?
In Linux, you can use the yum command to install the vim editor. This command is used to find, install or delete the specified software package. When the parameter is set to "-y", it means that the installation process prompts to select all. "yes", the syntax is "yum -y install vim".
#The operating environment of this tutorial: linux7.3 system, Dell G3 computer.
What is the command to install vim on linux
Check whether the vim command is available, enter the command vim, if it prompts vim: command not found, it means The vim command is not available and vim dependencies need to be installed. As shown in the picture:
To install vim, enter the command: yum -y install vim, wait for the interface to prompt "Complete!", indicating that the installation is complete. As shown in the picture:
After the installation is completed, you can use vim normally. For example: enter the command vim test.xml, you will enter the file (if there is no such file in the current directory will automatically create one), press the i key (or a, o key) to enter the editing state, then you can write the file content to your heart's content. As shown in the figure:
yum (Yellow dog Updater, Modified) is a Shell front-end package manager in Fedora, RedHat and SUSE.
Based on RPM package management, it can automatically download and install RPM packages from a designated server. It can automatically handle dependencies and install all dependent software packages at once, without the need to download and install them again and again.
yum provides commands to find, install, and delete a certain, a group, or even all software packages. The commands are concise and easy to remember.
yum Syntax
yum [options] [command] [package ...]
options: Optional, options include -h (help), -y (when prompted during the installation process, select all "yes"), - q (does not display the installation process) and so on.
command: The operation to be performed.
package: The name of the installed package.
Related recommendations: "Linux Video Tutorial"
The above is the detailed content of What is the command to install vim on linux?. For more information, please follow other related articles on the PHP Chinese website!