杀死并重新启动TeamViewer 10 Ubuntu 14.04


14

如何从命令行杀死并重新启动Ubuntu上的TeamViewer 10?

我尝试了运行sudo kill -HUP teamviewer*和其他变体(TeamViewer.exe;我从系统监视器获得),但是没有运气。

有时我会挂在Teamviewer上,这是个问题,不用重启系统即可使TV10再次正常工作,那将是很好的选择。

Answers:


4

kill接受PID,而不接受过程命令名称。尝试pkill,或killall

sudo pkill TeamViewer.exe

要么:

sudo pkill -f TeamViewer.exe

pkill命令完成了杀死TeamViewer的技巧。如何重新启动?
NotMy1RealName 2015年

@ NotMy1RealName您通常如何启动它?
muru

1
它从启动开始。但是,问题在于该程序有时会崩溃,需要终止并重新启动。我已经执行xkill了该程序,但是除非重新启动,否则无法重新启动它。很不方便。
NotMy1RealName

24

在其他版本的teamviewer中,有时必须重新启动守护程序,以便在关闭后再次运行teamviewer应用程序。

sudo teamviewer --daemon stop
sudo teamviewer --daemon start

要么

sudo teamviewer --daemon restart

这对我来说非常有效。这可能是一个更优雅的方式做到这一点比荷兰国际集团的过程。
drwatsoncode


1

在Ubuntu 16.04中

sudo systemctl stop teamviewerd.service
sudo systemctl start teamviewerd.service

要么

sudo systemctl restart teamviewerd.service

对我来说,它也无止境地工作.service
PJ_Finnegan
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.