Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?报错

在linux上使用apt-get方式安装nginx时提示Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
最后发现是源出现了问题

vim /etc/apt/sources.list

使用vim编辑sources.list
把原来的镜像地址

http://archive.ubuntu.com/

更换为

http://mirrors.aliyun.com/ubuntu

之后还要执行更新操作

apt-get update

否则会报Unable to locate package错误
这个命令的作用是:同步 /etc/apt/sources.list 和 /etc/apt/sources.list.d 中列出的源的索引,这样才能获取到最新的软件包。
最后顺利解决apt-get安装失败的问题,成功安装nginx
在这里插入图片描述

你可能感兴趣的:(ubuntu,linux,nginx)