45

I installed Teamviewer to help a friend (Afterwards I forcibly moved him to using Google Hangout) and noticed that it loads automatically a process even if I am not running teamviewer:

enter image description here

It does not show in the Startup Applications so I am guessing it is either hidden in the Startup applications or it is loaded by an option in a configuration file. I want to remove this automatic way of loading into memory so that it only works when I actually use teamviewer and not every time I boot the computer.

Luis Alvarado
  • 211,503

4 Answers4

85

If you mean teamviewer 8 try sudo teamviewer --daemon disable (disable teamviewer 8 autostart)

3

I've had this problem just now, and solved it by changing the option "[int32] Always_Online" to "0" in the file /etc/teamviewer/global.conf. Basically, what you should is to access this file with sudo privileges, and change this line:

[int32] Always_Online = 1

For this one:

[int32] Always_Online = 0

Best regards! :)

0

May be this resource could help you.

https://community.teamviewer.com/t5/TeamViewer-General/How-to-disable-teamviewerd-on-Debian/td-p/2088

Underoos
  • 191
0

Well, I can't find any autostart .desktop on the deb file, so it should either create it after someone launches the application or is auto-started by Wine(?).

Check both /etc/xdg/autostart/ and ~/.config/autostart/ for a .desktop file which could be launching either Teamviewer of Wine. If you find any you can remove it or change any of those values:

X-GNOME-Autostart-enabled=false # disables autostart
Hidden=false                    # shows item on Startup Applications
Salem
  • 19,744
  • it is not started from a .desktop file, but via /etc/init/teamviewerd.conf which can be configured like the other answer says. – törzsmókus Apr 07 '16 at 09:44