更改

添加922字节 、 2021年4月15日 (四) 07:46
建立内容为“== 服务器升级 == 这里我是从 Ubuntu Server 18.04 升级到了 20.04。先更新 sudo apt update sudo apt upgrade sudo apt full-upgrade 然后在 <c…”的新页面
== 服务器升级 ==

这里我是从 Ubuntu Server 18.04 升级到了 20.04。先更新

sudo apt update
sudo apt upgrade
sudo apt full-upgrade

然后在 <code>/etc/apt/sources.list</code> 结尾加入官方镜像

deb http://cn.archive.ubuntu.com/ubuntu/ bionic main restricted
deb http://cn.archive.ubuntu.com/ubuntu/ bionic-updates main restricted
deb http://cn.archive.ubuntu.com/ubuntu/ bionic universe
deb http://cn.archive.ubuntu.com/ubuntu/ bionic-updates universe
deb http://cn.archive.ubuntu.com/ubuntu/ bionic multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ bionic-updates multiverse

再执行

sudo do-release-upgrade

最好是在 tmux 中执行,防止 SSH 断掉。

最后在 Nginx 中修正一下 PHP 的版本,重新生成一下 Python venv。然后重启,修一下其他可能出现的问题。

== 外部链接 ==

* https://www.itcoder.tech/posts/how-to-upgrade-to-ubuntu-20-04/