设置老版本ubuntu软件源 --以10.10为例

由于ubuntu不再维护一些老版本的软件源,无论你怎么设置更新源都会出现错误。

看了很多文章,有的说要清空什么,有的说换做网易或者几个教育网的源,那都是错误的。因为这些源都只提供对最近几个版本的更新。


你不得不这样做,设置软件源如下:

1打开sources.list:

sudo gedit /etc/apt/sources.list
2将其修改为:

deb http://old-releases.ubuntu.com/ubuntu maverick main universe restricted multiverse
deb-src http://old-releases.ubuntu.com/ubuntu maverick main universe restricted multiverse
deb http://old-releases.ubuntu.com/ubuntu maverick-security universe main multiverse restricted
deb-src http://old-releases.ubuntu.com/ubuntu maverick-security universe main multiverse restricted
deb http://old-releases.ubuntu.com/ubuntu maverick-updates universe main multiverse restricted
deb http://old-releases.ubuntu.com/ubuntu maverick-proposed universe main multiverse restricted
deb-src http://old-releases.ubuntu.com/ubuntu maverick-proposed universe main multiverse restricted
deb http://old-releases.ubuntu.com/ubuntu maverick-backports universe main multiverse restricted
deb-src http://old-releases.ubuntu.com/ubuntu maverick-backports universe main multiverse restricted
deb-src http://old-releases.ubuntu.com/ubuntu maverick-updates universe main multiverse restricted

##这里可能会让一些其他版本的人疑惑,ubuntu每个版本都是有一个版本名的,10.10的版本名字叫maverick,你可以用文本编辑器将所有maverick换成你要用的版本的名字即可。

怎么知道自己的版本名?

你可以百度你所用版本号的版本名,也可以看那些过时的教你设置过时的源的教程,那些源链接中的ubuntu 后面就是版本名。



3接着

sudo apt-get update


你可能感兴趣的:(【linux学习笔记】)