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

解决方法
1.可能是source本身的问题
  根据提示,首先 apt-get update 一下source,如果在apt-get update后依然报这个error,那就说明这个source本省就有错误,尝试apt-get update --fix-missing,如果还出错,
那么更换/etc/apt/sources.list 的内容(内容自行搜索)

2.网络问题

(1) sudo vim /etc/resolv.conf
(2)添加:

nameserver 8.8.8.8
nameserver 223.5.5.5
nameserver 223.6.6.6

(3) sudo apt-get update

在替换文件内容的过程中,也可以使用如下命令
sudo gedit sources.list
其中 sudo 赋予修改这个文件的权限,gedit则是打开图形编辑界面,粘贴保存

你可能感兴趣的:(编程笔记(问题解决),linux,服务器)