有什么方法可以监控 ChromeOS 更新?

有什么方法可以监控 ChromeOS 更新?

我的 chromebook 最近一直出问题,而且一直在更新。我无法调试问题,因为我不知道问题是否出在更新上,或者我是否已经缩小了问题范围。有没有办法知道 Google 何时发布更新以及更新日志是什么?

答案1

如果你想知道幕后发生了什么。打开终端窗口并使用命令

initctl stop update-engine

停止更新引擎

update_engine -foreground -logtostderr &

在前台运行更新引擎,同时上述命令处于开启状态

while true; do update_engine_client -check_for_update; update_engine_client -update; pause 5; done

运行更新,请注意,上述命令是单行的

取自此处: https://sites.google.com/site/cr48ite/getting-technical/force-update-chrome-os

相关内容