解决Debian系统错误:E: Unable to locate package vim

错误:E: Unable to locate package vim

平时很少使用Debian,今天使用镜像是基于Debian Linux9的。没有文本编辑命令vim和vi,就想安装个,但是使用apt-get install vim直接给我报了开篇的错误提示。经查,这是因为用的源地址在国外,问题找到了,那解决方向就很明白了,换个我天朝能访问的地址就行了。
其实这些都很简单,问题是,网上大量的错误导向,害得我浪费了不少时间。
比如

root@1b4671904bfa:/#  mv /etc/apt/sources.list /etc/apt/sources.list.bak
root@1b4671904bfa:/#  echo "deb http://mirrors.163.com/debian/ jessie main non-free contrib" >/etc/apt/sources.list
root@1b4671904bfa:/#  echo "deb http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list
root@1b4671904bfa:/#  echo "deb-src http://mirrors.163.com/debian/ jessie main non-free contrib" >>/etc/apt/sources.list
root@1b4671904bfa:/#  echo "deb-src http://mirrors.163.com/debian/ jessie-proposed-updates main non-free contrib" >>/etc/apt/sources.list

意思很简单,先备份sources.list,然后往里面写自定的内容。
其他我就不一一举例了,大概都这样。
但是我证明,这些真没用。
我们先来看一下,原生的sources.list里都有些啥。

# deb http://snapshot.debian.org/archive/debian/20200130T000000Z stretch main
deb http://deb.debian.org/debian stretch main
# deb http://snapshot.debian.org/archive/debian-security/20200130T000000Z stretch/updates main
deb http://security.debian.org/debian-security stretch/updates main
# deb http://snapshot.debian.org/archive/debian/20200130T000000Z stretch-updates main
deb http://deb.debian.org/debian stretch-updates main

可能去掉注释看得更清楚一点。

deb http://deb.debian.org/debian stretch main
deb http://security.debian.org/debian-security stretch/updates main
deb http://deb.debian.org/debian stretch-updates main

在网上找了一大堆,都没有好使的,看了看人家原生的内容,我就想,直接把我访问了域名替换成国内的源行不行?现在就试。

deb http://mirrors.163.com/debian stretch main
deb http://security.debian.org/debian-security stretch/updates main
deb http://mirrors.163.com/debian stretch-updates main

ok,现在执行“apt-get update -y”试一下。
完美!!!
没有出现任务404,或W、E的提示。
是时候执行安装命令了:apt-get install -y vim
又是完美!!!
MD,百度是真的不行了吗?越来越多的人说,在百度想找到自己要的东西不容易好难,唉
我的vim命令用的6得飞起了,你的呢?

你可能感兴趣的:(Debian)