ubuntu 修改系统时间,解决更新软件报错问题

ubuntu在更新软件时出现E: Release file for http://security.ubuntu.com/ubuntu/dists/bionic-security/InRelease 错误

  1. 网上解决方法一:修改系统时间

修改时区

timedatectl set-timezone Asia/Shanghai

查看当前时间

date -R

date -s “2023-12-5 15:57:15”

查看当前时间,是否修改成功,不成功需要重启一下sudo reboot,如果黑屏,则重启电脑。

修改时间为24小时制

vim /etc/default/locale

新增行 LC_TIME=en_DK.UTF-8

date -R

  1. 网上解决方法二:执行下面的命令,忽略日期检查。

sudo apt-get -o Acquire::Check-Valid-Until=false -o Acquire::Check-Date=false update

See the bug report https://github.com/microsoft/WSL/issues/4114 for more details.

你可能感兴趣的:(linux,ubuntu,数据库,linux)