更改 ntp 的权限
Changing permissions for ntp
最近我的raspberry pi转off/rebooting时停止更新时间。我尝试使用 raspi-config
更改时区以重置时间,但这没有用。
我尝试用 systemctl status ntp
检查 ntp 的状态,我被告知
pi@raspberrypi:/etc/init.d $ systemctl status ntp
● ntp.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
我尝试使用 apt-get install ntp
再次安装 ntp,但我被告知它已经安装了。
我试图用 etc/init.d/ntp restart
重启服务,但我被告知权限被拒绝。我试图用 chown pi /etc/init.d/ntp
更改 ntp 的权限,但这没有用。
我尝试使用 root 访问 ntp,使用 sudo su
但我仍然被告知权限被拒绝,即使在 chown root /etc/init.d/ntp
.
之后
如何让 ntp 重新工作?
解决方案是使 ntp 可执行。
sudo chmod +X /etc/init.d/ntp
然后快速重启后一切恢复正常。
最近我的raspberry pi转off/rebooting时停止更新时间。我尝试使用 raspi-config
更改时区以重置时间,但这没有用。
我尝试用 systemctl status ntp
检查 ntp 的状态,我被告知
pi@raspberrypi:/etc/init.d $ systemctl status ntp
● ntp.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)
我尝试使用 apt-get install ntp
再次安装 ntp,但我被告知它已经安装了。
我试图用 etc/init.d/ntp restart
重启服务,但我被告知权限被拒绝。我试图用 chown pi /etc/init.d/ntp
更改 ntp 的权限,但这没有用。
我尝试使用 root 访问 ntp,使用 sudo su
但我仍然被告知权限被拒绝,即使在 chown root /etc/init.d/ntp
.
如何让 ntp 重新工作?
解决方案是使 ntp 可执行。
sudo chmod +X /etc/init.d/ntp
然后快速重启后一切恢复正常。