zoukankan      html  css  js  c++  java
  • Debian9 升级至 Debian10

    前言

    目前国内云服务商提供的镜像最新只有 9 , 本文讲解升级至 10 的方法

    正文

    查看当前版本

    lsb_release -a

    No LSB modules are available.
    Distributor ID: Debian
    Description:    Debian GNU/Linux 9.0 (stretch)
    Release:        9.0
    Codename:       stretch
    

    现在的版本是9.0

    更新到当前版本的最新版

    apt-get update
    apt-get upgrade
    apt-get dist-upgrade
    

    过程中如有提醒让选择方式

     install the package maintainer's version
     keep the local version currently installed
     show the differences between the versions
    

    我们选择第一个

    修改apt源为10

    sed -i 's/stretch/buster/g' /etc/apt/sources.list
    

    strech 为 debian9 代号, 将其替换为 buster 为 debian10 代号

    更新apt索引

    apt-get update

    升级到debian10

    apt-get upgrade
    apt-get dist-upgrade
    

    出现选项选择 yes

    出现多个选项选择 选项一

    重启

    重启系统

    reboot

    验证版本

    lsb_release -a

    清理老版本软件

    apt-get autoremove

    其他

    更新到testing

    testing版本为测试版本, 他的 apt 仓库是更新的, 一般也很稳定了

    需要注意,为了减少问题出现,务必先更新到当前最新稳定版再更新testing

    sed -i 's/buster/testing/g' /etc/apt/sources.list

    然后执行 apt-get update

    如果出现 404 代表你配置的镜像源没有此镜像, 国内推荐 USTC

    vim /etc/apt/sources.list

    将原有内容去除,添加为

    deb http://mirrors.ustc.edu.cn/debian/ testing main contrib non-free
    deb-src http://mirrors.ustc.edu.cn/debian/ testing main contrib non-free
    deb http://mirrors.ustc.edu.cn/debian/ testing-updates main contrib non-free
    deb-src http://mirrors.ustc.edu.cn/debian/ testing-updates main contrib non-free
    deb http://mirrors.ustc.edu.cn/debian-security/ testing-security main contrib non-free
    deb-src http://mirrors.ustc.edu.cn/debian-security/ testing-security main contrib non-free
    

    执行

    apt-get update
    apt-get upgrade
    apt-get dist-upgrade
    

    重启

    reboot

    查看版本

    lsb_release -a

    No LSB modules are available.
    Distributor ID: Debian
    Description:    Debian GNU/Linux bullseye/sid
    Release:        testing
    Codename:       bullseye
    

    清理老的软件

    apt-get autoremove

  • 相关阅读:
    Cocos2Dx(3)——动作类备忘
    npm publish发布包时出现403错误no_perms Private mode enable, only admin can publish this module:
    使用node.js定义一个web服务器
    node.js中events模块应用
    session应用:验证用户是否已登录
    简单实现三级导航栏
    promise对象代替回调函解决异步操作
    js一行代码解实现数组去重和排序
    中英文切换导航栏(最简单)
    错误:localhost将您重定向的次数过多
  • 原文地址:https://www.cnblogs.com/chnmig/p/12661605.html
Copyright © 2011-2022 走看看