智趣盒子系统升级更新发布帖

2023.3.27

  • 本次更新解决部分用户链接时间服务器,因为没有出国环境同步失败,替换国内源头。

操作方法:

  1. 打开浏览器,进去webssh,用法看看此教程

2.登陆了webssh,复制黏贴下面的命令,并按回车键:

#!/bin/bash
# install and configure ntp on debian11
sudo apt update
sudo apt install ntp
sudo systemctl restart ntp
# edit /etc/ntp.conf file
sudo sed -i 's/^pool/#pool/g' /etc/ntp.conf # comment out default pools
echo "pool ntp.ntsc.ac.cn iburst" | sudo tee -a /etc/ntp.conf # add China pool
echo "restrict 10.0.0.0 mask 255.255.255.0 nomodify notrap" | sudo tee -a /etc/ntp.conf # add allowed clients
sudo systemctl restart ntp
sudo systemctl status ntp # check status
sudo systemctl enable ntp # enable ntp service to start on boot


上面命令即替换时间服务器国内源的问题了。

在输入下面的命令,检查时间是否同步成功。

timedatectl

1 个赞