Ubuntu版本停止维护后怎么用apt-get安装软件
发表时间:2018-10-17 13:27 | 分类:Linux | 浏览:1,350 次
Ubuntu一般安装的都是LTS长期支持版,虽说是长期支持,但是也只有5年时间。如果系统版本官方已经停止更新维护,那么apt-get命令安装就会出错。因为默认源里的配置文件已经不存在了,例如Ubuntu 10.04 。
错误类似如下:
$ sudo apt-get install vlc Reading package lists... Done Building dependency tree Reading state information... Done E: Couldn't find package
那么如何在已经停止维护的发行版中安装软件?
好在Ubuntu有个地址专门存放所有版本的文件,地址是:old-releases.ubuntu.com 。方法就是把 archive.ubuntu.com 替换下。
命令:
sudo sed -i -re 's/([a-z]{2}\.)?archive.ubuntu.com|security.ubuntu.com/old-releases.ubuntu.com/g' /etc/apt/sources.list sudo apt-get update
Ubuntu官方强烈建议把服务器操作系统升级到最新版本。。。