timedatectl: command not found

The scenario: I'm trying to set timezone on a docker container based on Ubuntu 18.04 docker image. Just pull the image and updated

> apt-get -y update

The error:

When run

> timedatectl

I get

> timedatectl: command not found

The question: How to install timedatectl?

What I've tried so far: I tried to install timedatectl as follows

> apt-get -y install timedatectl
> Unable to locate package timedatectl

Thank you

2

1 Answer

As suggested in the comment, installed systemd package:

> apt-get install systemd

timedatectl is installed

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like