最近迷上了自己配环境~所以就遇到了一系列的问题.debian上安装gcc时出现了一些问题然后就有了这篇文章

1.安装”apt-spy“。

命令:"apt-get install apt-spy"

2.安装完成后执行

 apt-spy -d stable -a asia -t 5

其中-d选项指定发行版本,可选项为”stable、testing、unstable”。unstable为非稳定版,stable为稳定版,建议选择stable。

-a选项指定debian安装源服务器的区域,如asia、Europe、North-America。asia为亚洲,建议选择此项。

-t为超时阈值。设置较小的值可以忽略较慢的服务器。为了选择较小的服务器,可以选择一个比较小的值。

3.最后执行

 mv /etc/apt/sources.list.d/apt-spy.list /etc/apt/sources.list               #建议执行这步的时候备份

错误提示:

一般到这步是不会出错的~恩出错了就重新编辑下源

vi  /etc/apt/sources.list

将内容替换为:

deb http://mirrors.163.com/debian/ jessie main non-free contrib
deb http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-updates main non-free contrib
deb-src http://mirrors.163.com/debian/ jessie-backports main non-free contrib
deb http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib
deb-src http://mirrors.163.com/debian-security/ jessie/updates main non-free contrib