本文记录一些各种系统上遇到的错误,或者是一些软件遇到的一些错误。记录下,方便在有需要时快速查阅。
apt issues
sudo apt update error: "Release file is not yet valid"
这个错误一般是因为当前的时间和硬件时间不同步了,一般先使用date
和hwclock
查看系统时间和硬件时间。 如果两个不同的话,需要使用hwclock -s
同步硬件时间即可。
docker pull, 443 connection refused
一般在 /etc/docker/daemon.json 里面增加"insecure-registries": [ "xxxx"]
。 然后sudo systemctl restart docker