Simple operation of installing vi command in docker container

Simple operation of installing vi command in docker container

When using a docker container, sometimes vim is not installed in it, and when you type the vim command, it prompts: vim: command not found. At this time, you need to install vim, but when you type the apt-get install vim command, it prompts:

Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package vim

At this time, you need to type:

apt-get update

The purpose of this command is to synchronize the indexes of the sources listed in /etc/apt/sources.list and /etc/apt/sources.list.d so that the latest software packages can be obtained.

After the update is complete, type the command again:

apt-get install vim

Just run the command.

Supplement: Install vim, telnet, ifconfig, and ping commands in the docker container

When using a docker container, sometimes vim is not installed in it, and when you type the vim command, it prompts: vim: command not found. At this time, you need to install vim, but when you type the apt-get install vim command, it prompts:

Reading package lists... Done
Building dependency tree 
Reading state information... Done
E: Unable to locate package vim

At this time, you need to type: apt-get update,

The purpose of this command is to synchronize the indexes of the sources listed in /etc/apt/sources.list and /etc/apt/sources.list.d so that the latest software packages can be obtained.

After the update is complete, type the command again:

apt-get install vim install vim

apt-get install telnet telnet

apt-get install net-tools install ifconfig

apt install iputils-ping install ping

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • How to install the latest version of docker using deepin apt command
  • Detailed explanation of the installation commands and usage of Docker and FastDFS
  • Summary of common Docker commands: installation, mirroring, and basic container operations
  • Detailed explanation of how to install Docker and operate commands under CentOS 7
  • Docker installation and configuration command code examples

<<:  CSS example code for implementing sliding doors

>>:  Pitfalls based on MySQL default sorting rules

Recommend

Detailed explanation of hosts file configuration on Linux server

Linux server hosts file configuration The hosts f...

Vue backend management system implementation of paging function example

This article mainly introduces the implementation...

Vue scaffolding learning project creation method

1. What is scaffolding? 1. Vue CLI Vue CLI is a c...

How to implement the strategy pattern in Javascript

Table of contents Overview Code Implementation Su...

MySQL partition table is classified by month

Table of contents Create a table View the databas...

How to use pdf.js to preview pdf files in Vue

When we preview PDF on the page, some files canno...

Detailed analysis of MySQL instance crash cases

[Problem description] Our production environment ...

Design of image preview in content webpage

<br />I have written two articles before, &q...

Linux command line quick tips: How to locate a file

We all have files stored on our computers -- dire...

JS uses clip-path to implement dynamic area clipping function

background Today, I was browsing CodePen and saw ...

MySQL 5.7.10 Installation Documentation Tutorial

1. Install dependency packages yum -y install gcc...

Use CSS3 to implement button hover flash dynamic special effects code

We have introduced how to create a waterfall layo...

Embed codes for several older players

The players we see on the web pages are nothing m...