docker容器如何安装vim

mv /etc/apt/sources.list /etc/apt/sources.list.bak && \     echo "deb http://mirrors.163.com/debian/ jessie main non-free contrib" >/etc/apt/sources.list && \     echo "deb http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list && \     echo "deb-src http://mirrors.163.com/debian/ jessie main non-free contrib" >>/etc/apt/sources.list && \     echo "deb-src http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list

apt-get update

apt-get install -y vim

时间: 2024-10-24 13:12:25

docker容器如何安装vim的相关文章

docker容器中安装vim

在使用docker容器时,有时候里边没有安装vim,敲vim命令时提示说:vim: command not found,这个时候就需要安装vim,可是当你敲apt-get install vim命令时,提示: Reading package lists... Done        Building dependency tree               Reading state information... Done        E: Unable to locate package

clearriver docker容器中安装vim

在使用docker容器时,有时候里边没有安装vim,敲vim命令时提示说:vim: command not found,这个时候就需要安装vim,可是当你敲apt-get install vim命令时,提示: Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package vim 这时候需要敲:apt-get update,这个

docker容器里面安装ssh

docker容器里面安装ssh https://blog.csdn.net/chengxuyuanyonghu/article/details/76619097 原文地址:https://www.cnblogs.com/jing1617/p/9554608.html

Docker容器中安装新的程序

在容器里面安装一个简单的程序(ping). 之前下载的是ubuntu的镜像,则可以使用ubuntu的apt-get命令来安装ping程序:apt-get install -y ping. $docker run ubuntu apt-get install -y ping 注意:在执行apt-get 命令的时候,要带上-y参数.如果不指定-y参数的话,apt-get命令会进入交互模式,需要用户输入命令来进行确认,但在docker环境中是无法响应这种交互的.

以Docker容器方式安装Ceph

获取Ceph的Docker镜像 因为公司对于网络环境的限制,安装ceph时使用ceph-deploy反而很不方便,且ssh免密码方式也不适用,所以使用docker方式安装. Git地址 https://github.com/ceph/ceph-docker/tree/master/ceph-releases/luminous DockerHub地址 https://hub.docker.com/r/ceph/daemon/ 通过DaoCloud加速器后下载的地址 docker pull ceph

Linux中docker容器的安装

1.查看当前内核版本>=3.10 uname -r2.更新yum包 yum update3.卸载旧版本 yum remove docker docker-common docker-selinux docker-engine4.安装依赖包 yum install -y yum-utils device-mapper-persistent-data lvm25.设置yum源 yum-config-manager --add-repo http://mirrors.aliyun.com/docker

ubuntu安装Docker容器

第一步首先更新资源: apt-get update 第二步安装Docker: apt-get install docker 第三步安装docker.io: apt-get install docker.io 第四步安装docker-registry: apt-get install docker-registry 第五步启动docker容器: systemctl start docker 最后验证docker容器是否安装成功: docker run hello-world 原文地址:https:

Docker Python2.7容器中安装第三方库GCC提示:file not recognized: File format not recognized

问题描述: 在Docker容器中安装Python第三方库时提示:file not recognized: File format not recognized. 错误提示: [email protected]:/# pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ mysql-python DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2

在容器中安装新的程序

简介:在docker容器中安装新的程序. 在容器中安装新的程序 目标: 提示: 正确的命令: 在容器中安装新的程序 下一步我们要做的事情是在容器里面安装一个简单的程序(ping).我们之前下载的tutorial镜像是基于ubuntu的,所以你可以使用ubuntu的apt-get命令来安装ping程序:apt-get install -y ping. 备注:apt-get 命令执行完毕之后,容器就会停止,但对容器的改动不会丢失. 目标: 在learn/tutorial镜像里面安装ping程序. 提