Skip to content
This repository was archived by the owner on Jan 28, 2022. It is now read-only.
Markus Zehnder edited this page Sep 9, 2020 · 5 revisions

Can I update the Dock Firmware manually?

Yes, you need to compile or download a new dock firmware image. Then use Curl to push the firmware to the dock with the following command:

curl -F "[email protected]" http://<Dock IP>/update

How can I change the timezone or set the time manually?

At the moment you can only set the timezone or current time in a ssh shell with the following commands:

  • Time zone:
    • List timezones: timedatectl list-timezones
    • Set timezone example: timedatectl set-timezone America/Los_Angeles
  • Date and time:
    • Show current time: timedatectl
      Note: NTP is currently not integrated in systemd, that's why it's showing n/a. This will be changed in a future remote-os update.
      But there's ntpd running which synchronizes the time.
    • Set date and time: timedatectl set-time YYYY-MM-DD HH:MM:SS
      Example: timedatectl set-time '2020-09-08 03:19:00'
Clone this wiki locally