I don't use Backups in my PC, since I don't have enough hard drive space. How can I remove the "Restore Missing Files..." entry from my context menu?
2 Answers
The extension for this menu entry is in the package deja-dup
.
% apt-file search /usr/lib/nautilus/extensions-3.0/libdeja-dup.so
deja-dup: /usr/lib/nautilus/extensions-3.0/libdeja-dup.so
Therefore and as you don't use backups (really? You should read this.), a simple solution. Remove Déjà Dup from your system:
sudo apt-get remove deja-dup
and the menu entry will disappear.
Unfortunately this solution is like you having cancer and not wanting to take any chemo-therapy because it makes you feel bad. The better solution is to actually do backups, because otherwise we'll see each other again in a few years when your hard drive blows up and you've lost all your data!
-
I don't have enough space to do backups. If I get the space I'll do the backups. – a06e Aug 02 '15 at 19:16
-
If you like my answer, just click the little grey ☑ now turning it into beautiful green. If you do not like my answer, click on the little grey down-arrow below the 0, and if you really like my answer, click on the little grey checkmark and the little up-arrow... If you have any further questions, go to http://askubuntu.com/questions/ask – A.B. Aug 02 '15 at 19:17
-
Your answer works. I was just testing before accepting. My comment was just to explain that in some scenarios (like mine) backup is not an option. Thanks! – a06e Aug 02 '15 at 21:33
It is unfortunate the Nautilus is not more user-friendly. The mentioned option cannot be removed neither form preferences nor from Nautilus actions tool. The easiest way to do it is to make changes to nautilus extensions. In the extensions folder rename:
/usr/lib/nautilus/extensions-3.0/libdeja-dup.so
to e.g.
/usr/lib/nautilus/extensions-3.0/libdeja-dup.txt
After that restart nautilus:
nautilus -q
If you ever want to use Backups again, no harm done. Just revert it to previous state.

- 1,270