Ubuntu中apt-get install无法安装软件10

在Ubuntu9.10版本中,发现使用apt-get install命令时无法安装常用的软件了,比如g++等,看log像是source list太老了的缘故,于是在网址:http://ubuntu.srt.cn/找了一组source list(没有9.10的就用的8.04的):

deb http://ubuntu.srt.cn/ubuntu/ hardy main restricted universe multiverse
deb http://ubuntu.srt.cn/ubuntu/ hardy-security main restricted universe multiverse
deb http://ubuntu.srt.cn/ubuntu/ hardy-updates main restricted universe multiverse
deb http://ubuntu.srt.cn/ubuntu/ hardy-proposed main restricted universe multiverse
deb http://ubuntu.srt.cn/ubuntu/ hardy-backports main restricted universe multiverse
deb-src http://ubuntu.srt.cn/ubuntu/ hardy main restricted universe multiverse
deb-src http://ubuntu.srt.cn/ubuntu/ hardy-security main restricted universe multiverse
deb-src http://ubuntu.srt.cn/ubuntu/ hardy-updates main restricted universe multiverse
deb-src http://ubuntu.srt.cn/ubuntu/ hardy-proposed main restricted universe multiverse
deb-src http://ubuntu.srt.cn/ubuntu/ hardy-backports main restricted universe multiverse

然后用命令#sudo gedit /etc/apt/sources.list打开sources.list,将其内容全部删除掉,拷贝上上边的地址,保存退出
再使用命令#sudo apt-get update更新source list

这样,应该就可以正常安装软件了

你可能感兴趣的:(Linux系统知识)