40

I recently installed ubuntu 12.10 and it seems as though my clock is missing. I also don't see any options for date/time in the system settings panel.

enter image description here

enter image description here

Am I missing something? Again this is with Unity.

Braiam
  • 66,947
  • 30
  • 177
  • 264
Brian
  • 503
  • 1
  • 4
  • 6

5 Answers5

105

As per the comments above I've fixed this issue on my brand new 14.04 LTS installation by running.

$ pkill -f indicator-datetime-service

The clock came straight back.

seb
  • 2,331
  • 8
  • 24
  • 24
17

Open a terminal window (Ctrl+Alt+T), then run the following:

killall unity-panel-service

This command should reset the panel, and hopefully reactivate the clock indicator.

edwin
  • 3,739
  • 20
  • 32
sobi3ch
  • 897
  • 1
  • 12
  • 19
  • To make it more convinient you can also create an alias in `~/.bashrc` or `~/.bash_aliases`. `alias restart-clock="killall unity-panel-service"` – sobi3ch Mar 14 '15 at 11:32
13

This could be one of two things, either the clock isn't installed, or a setting has been flipped to turn it off.

First make sure the clock is installed by making sure indicator-datetime is installed:

Install via the software center

Then log out and back in. If it's already installed and it's still not showing up, try the options here:

If that still doesn't work update your question with the results, thanks!

Jorge Castro
  • 70,934
  • 124
  • 466
  • 653
  • 2
    Thanks for the hints! A simple sudo apt-get install indicator-datetime fixed the problem! – Brian Dec 01 '12 at 23:38
1
sudo apt-get install indicator-datetime

and logout/login.

Jonathan Hartley
  • 1,051
  • 13
  • 16
1

Worked for me:

sudo apt-get install indicator-datetime
sudo dpkg-reconfigure --frontend noninteractive tzdata
sudo killall unity-panel-service

Reference: https://askubuntu.com/a/357280/25184

A T
  • 2,472
  • 6
  • 25
  • 33