2

All I have been able to do is to activate it in the startup programs, but not in the privacy settings, it looks different now. I also run from a terminal:

sudo chmod -x /usr/bin/zeitgeist-daemon
sudo chmod -x /usr/bin/zeitgeist-datahub
sudo chmod -x /usr/lib/zeitgeist/zeitgeist-ft  

during deactivation, how can undo this?

A.B.
  • 89,123
  • 21
  • 245
  • 323
Giulo Figlio
  • 153
  • 1
  • 4
  • 13

1 Answers1

1

You have removed the executable rights with -x.

Here is your undo:

sudo chmod +x /usr/bin/zeitgeist-daemon
sudo chmod +x /usr/bin/zeitgeist-datahub
sudo chmod +x /usr/lib/zeitgeist/zeitgeist-ft  

These are the settings in my system:

% ls -la /usr/bin/zeitgeist-daemon
-rwxr-xr-x 1 root root 214216 Mär 10 17:00 /usr/bin/zeitgeist-daemon
% ls -la /usr/bin/zeitgeist-datahub     
-rwxr-xr-x 1 root root 131696 Mär 10 17:00 /usr/bin/zeitgeist-datahub

Or reinstall the packages:

sudo apt-get install --reinstall zeitgeist-datahub
sudo apt-get install --reinstall zeitgeist-core

I can't find /usr/lib/zeitgeist/zeitgeist-ft for Ubuntu

A.B.
  • 89,123
  • 21
  • 245
  • 323