ubuntu old release repository

当所使用的ubuntu版本过期,源不再更新。再使用 apt-get 获取软件将会找不到源。

实际上ubuntu是有老版本源的,这个问题在ask ubuntu已有高票答案。

支持的老版本在old-releases.ubuntu.com上有列表。更新源的过程如下:

通过命令 lab_release 查看系统的codename和版本信息。

然后编辑 /etc/apt/sources.list 文件,将文件中的codename换成自己系统的代号。

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

最后执行 sudo apt-get update 获取更新。

时间: 2024-10-30 16:43:57

ubuntu old release repository的相关文章

Ubuntu安装docker ee 遇到问题找不到安装源 disco Release

仓库 “https://storebits.docker.com/ee/ubuntu/*********/ubuntu disco Release” 没有 Release 文件. 我打开网址,发现没有 disco 这个东西 虽让我不知道是什么 解决方法: sudo add-apt-repository "deb [arch=$(dpkg --print-architecture)] $DOCKER_EE_URL/ubuntu \ xenial \ stable-$DOCKER_EE_VERSIO

ubuntu下lnmp的安装

适用于ubuntu14.04和源是14.04的ubuntu上安装nginx(我学在线Moodle工作室---注这里安装的是最新版的nginx,并且解决pathinfo问题,特别适用于Moodle安装) nginx相对于apache来说,在高并发访问上有不可忽略的极大的优势,特别是在服务器配置相对较低的情况下. 1安装准备: (1)如果是ubuntu12.04或者是12.10,需要先换源,换成14.04的源,源链接http://pan.baidu.com/s/1dDkzjiD 将源下载下来,替换掉

ubuntu下widows盘符无法获得可执行权限的问题?

在运行Doris时,想把工作目录放在windows盘符下,但在windows盘符下文件无法赋予可执行权限,导致无法生成缩略图. 解决方法:安装ntfs-3g  ntfs-config. sudo apt-get install ntfs-3g ntfs-config,若顺利安装完成,则执行sudo ntfs-config,此时会弹出对话框,设置盘符即可.重新启动ubuntu,该盘符下的文件将具有可执行权限. 若ntfs-config安装不上,则需要更新数据源 /ect/apt/source.li

Ubuntu 奇怪踩坑记录

仓库ppa问题 当你使用 apt-get update 时候,提示 仓库 "http://ppa.launchpad.net/hzwhuang/ss-qt5/ubuntu bionic Release" 没有 Release 文件,是应为当前系统版本号的release文件在该 ppa 仓库没有发布,因此需要手动更改为更低版本的 ppa 源 例如: sudo add-apt-repository ppa:hzwhuang/ss-qt5 然后 update 就会报错 E: The repo

Maven提高篇系列之(三)——使用自己Repository(Nexus)

这是一个Maven提高篇的系列,包含有以下文章: Maven提高篇系列之(一)——多模块 vs 继承 Maven提高篇系列之(二)——配置Plugin到某个Phase(以Selenium集成测试为例) Maven提高篇系列之(三)——使用自己Repository(Nexus) Maven提高篇系列之(四)——使用Profile Maven提高篇系列之(五)——处理依赖冲突 Maven提高篇系列之(六)——编写自己的Plugin(本系列完) 平时我们自己做的项目都是直接使用Maven提供的Cent

Maven项目部署到Nexus Repository

(一)下载并安装Nexus Nexus只需下载war包放到tomcat服务器上便可. (二)配置Nexus Repository 打开WEB管理界面:http://localhost:8081/nexus/index.html 点击右上角Log In进行登录,默认帐号:admin.密码:admin123 点击左侧Repositories项 -> central仓库 -> Configuration -> Download Remote Indexes=True -> Save,表示

ubuntu安装python3.5

ubuntu14.04系统会自带python2.7,请不要卸载它.不同版本的Python可以共存在一个系统上. 卸载之后,桌面系统会被影响. (1)sudo add-apt-repository ppa:fkrull/deadsnakes (2)sudo apt-get update (3)sudo apt-get install python3.5 (4)sudo cp /usr/bin/python /usr/bin/python_bak,先备份 (5)sudo rm /usr/bin/py

[转]10 Awesome Indicator Applets for Ubuntu’s Unity Desktop

http://blogger.gtwang.org/2013/10/awesome-indicator-applets-for-ubuntus-unity-desktop.html http://www.howtogeek.com/118908/10-awesome-indicator-applets-for-ubuntus-unity-desktop 這裡搜集各種 Ubuntu Linux 中 Unity 常用的指示器(indicator)與小工具. 如果你是 Ubuntu Linux 的老手

QT 5.4.1 for Android Ubuntu QtWebView Demo

QT 5.4.1 for Android Ubuntu QtWebView Demo 2015-5-15 目录 一.说明: 二.参考文章: 三.QtWebView Demo在哪里? 四.Qt Creator 3.4.0能打开QtWebView Demo? 五.Qt Creator如何生成AndroidManifest.xml? 一.说明: 参考文章主要是针对QT 5.4.1 for Android Ubuntu 12.04环境搭建出现的一些问题. 本文的QtWebView Demo说明都是在Wi