have Ubuntu 14.04 LTS. Can I safely delete Desktop Sharing? I am concerned that I might not get the updates I need from Ubuntu. Thanks
Asked
Active
Viewed 2,111 times
1 Answers
0
Desktop Sharing
is in no way related to desktops. It's purpose is to allow remote login to your desktop if you chose so.
In fact , the updates and desktop sharing are related to two different programs.
For desktop sharing the program is called vino
. You can safely remove it with running
sudo apt-get remove vino
in terminal.
Now if you want to ever use it, but don't want it to be enabled by default you can either disable it through Startup Applications or do
mv /etc/xdg/autostart/vino-server.desktop /etc/xdg/autostart/vino-server.desktop.bak
(which moves the actual file that calls vino
to start on every GUI login, to a file with .bak extension , which won't be called on GUI login)

A.B.
- 90,397

Sergiy Kolodyazhnyy
- 105,154
- 20
- 279
- 497
vino
. Do thisawk '/Name/||/Exec/' /etc/xdg/autostart/vino-server.desktop
in terminal. The file has two fields - Name ( how program appears to the user ) and Exec (what actually runs). You will see that for the name it says "Desktop Sharing" but actual executable isvino-server
– Sergiy Kolodyazhnyy Aug 20 '15 at 16:11