Kill and Restart TeamViewer 10 Ubuntu 14.04
How do I kill and restart TeamViewer 10 on ubuntu from the command line?
I tried running sudo kill -HUP teamviewer*
and other variants (TeamViewer.exe; which I got from the system monitor) with no luck.
I have an issue sometimes with Teamviewer hanging and it would be nice not to have to reboot my system to get TV10 working again.
14.04 command-line teamviewer
add a comment |
How do I kill and restart TeamViewer 10 on ubuntu from the command line?
I tried running sudo kill -HUP teamviewer*
and other variants (TeamViewer.exe; which I got from the system monitor) with no luck.
I have an issue sometimes with Teamviewer hanging and it would be nice not to have to reboot my system to get TV10 working again.
14.04 command-line teamviewer
add a comment |
How do I kill and restart TeamViewer 10 on ubuntu from the command line?
I tried running sudo kill -HUP teamviewer*
and other variants (TeamViewer.exe; which I got from the system monitor) with no luck.
I have an issue sometimes with Teamviewer hanging and it would be nice not to have to reboot my system to get TV10 working again.
14.04 command-line teamviewer
How do I kill and restart TeamViewer 10 on ubuntu from the command line?
I tried running sudo kill -HUP teamviewer*
and other variants (TeamViewer.exe; which I got from the system monitor) with no luck.
I have an issue sometimes with Teamviewer hanging and it would be nice not to have to reboot my system to get TV10 working again.
14.04 command-line teamviewer
14.04 command-line teamviewer
asked Mar 8 '15 at 20:33
NotMy1RealNameNotMy1RealName
1101311
1101311
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
kill
accepts PIDs, not process command names. Try pkill
, or killall
:
sudo pkill TeamViewer.exe
Or:
sudo pkill -f TeamViewer.exe
The pkill command did the trick to kill TeamViewer. How do I restart?
– NotMy1RealName
Mar 8 '15 at 20:52
@NotMy1RealName how do you usually start it?
– muru
Mar 8 '15 at 20:56
1
It starts at boot. However, the issue is that the program crashes at times and needs to be killed and restarted. I'vexkill
'd the program, but I can't restart it unless I reboot. Very inconvenient.
– NotMy1RealName
Mar 9 '15 at 1:20
add a comment |
In other versions of teamviewer some times the daemon has to be restarted the in order to run the teamviewer app again after closing it.
sudo teamviewer --daemon stop
sudo teamviewer --daemon start
or
sudo teamviewer --daemon restart
This worked perfectly for me. It's probably a much more elegant way to do it than killing the process.
– drwatsoncode
Jun 21 '17 at 18:47
add a comment |
These work too:
sudo service teamviewerd stop
sudo service teamviewerd start
add a comment |
In Ubuntu 16.04
sudo systemctl stop teamviewerd.service
sudo systemctl start teamviewerd.service
or
sudo systemctl restart teamviewerd.service
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f594338%2fkill-and-restart-teamviewer-10-ubuntu-14-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
kill
accepts PIDs, not process command names. Try pkill
, or killall
:
sudo pkill TeamViewer.exe
Or:
sudo pkill -f TeamViewer.exe
The pkill command did the trick to kill TeamViewer. How do I restart?
– NotMy1RealName
Mar 8 '15 at 20:52
@NotMy1RealName how do you usually start it?
– muru
Mar 8 '15 at 20:56
1
It starts at boot. However, the issue is that the program crashes at times and needs to be killed and restarted. I'vexkill
'd the program, but I can't restart it unless I reboot. Very inconvenient.
– NotMy1RealName
Mar 9 '15 at 1:20
add a comment |
kill
accepts PIDs, not process command names. Try pkill
, or killall
:
sudo pkill TeamViewer.exe
Or:
sudo pkill -f TeamViewer.exe
The pkill command did the trick to kill TeamViewer. How do I restart?
– NotMy1RealName
Mar 8 '15 at 20:52
@NotMy1RealName how do you usually start it?
– muru
Mar 8 '15 at 20:56
1
It starts at boot. However, the issue is that the program crashes at times and needs to be killed and restarted. I'vexkill
'd the program, but I can't restart it unless I reboot. Very inconvenient.
– NotMy1RealName
Mar 9 '15 at 1:20
add a comment |
kill
accepts PIDs, not process command names. Try pkill
, or killall
:
sudo pkill TeamViewer.exe
Or:
sudo pkill -f TeamViewer.exe
kill
accepts PIDs, not process command names. Try pkill
, or killall
:
sudo pkill TeamViewer.exe
Or:
sudo pkill -f TeamViewer.exe
answered Mar 8 '15 at 20:36
murumuru
1
1
The pkill command did the trick to kill TeamViewer. How do I restart?
– NotMy1RealName
Mar 8 '15 at 20:52
@NotMy1RealName how do you usually start it?
– muru
Mar 8 '15 at 20:56
1
It starts at boot. However, the issue is that the program crashes at times and needs to be killed and restarted. I'vexkill
'd the program, but I can't restart it unless I reboot. Very inconvenient.
– NotMy1RealName
Mar 9 '15 at 1:20
add a comment |
The pkill command did the trick to kill TeamViewer. How do I restart?
– NotMy1RealName
Mar 8 '15 at 20:52
@NotMy1RealName how do you usually start it?
– muru
Mar 8 '15 at 20:56
1
It starts at boot. However, the issue is that the program crashes at times and needs to be killed and restarted. I'vexkill
'd the program, but I can't restart it unless I reboot. Very inconvenient.
– NotMy1RealName
Mar 9 '15 at 1:20
The pkill command did the trick to kill TeamViewer. How do I restart?
– NotMy1RealName
Mar 8 '15 at 20:52
The pkill command did the trick to kill TeamViewer. How do I restart?
– NotMy1RealName
Mar 8 '15 at 20:52
@NotMy1RealName how do you usually start it?
– muru
Mar 8 '15 at 20:56
@NotMy1RealName how do you usually start it?
– muru
Mar 8 '15 at 20:56
1
1
It starts at boot. However, the issue is that the program crashes at times and needs to be killed and restarted. I've
xkill
'd the program, but I can't restart it unless I reboot. Very inconvenient.– NotMy1RealName
Mar 9 '15 at 1:20
It starts at boot. However, the issue is that the program crashes at times and needs to be killed and restarted. I've
xkill
'd the program, but I can't restart it unless I reboot. Very inconvenient.– NotMy1RealName
Mar 9 '15 at 1:20
add a comment |
In other versions of teamviewer some times the daemon has to be restarted the in order to run the teamviewer app again after closing it.
sudo teamviewer --daemon stop
sudo teamviewer --daemon start
or
sudo teamviewer --daemon restart
This worked perfectly for me. It's probably a much more elegant way to do it than killing the process.
– drwatsoncode
Jun 21 '17 at 18:47
add a comment |
In other versions of teamviewer some times the daemon has to be restarted the in order to run the teamviewer app again after closing it.
sudo teamviewer --daemon stop
sudo teamviewer --daemon start
or
sudo teamviewer --daemon restart
This worked perfectly for me. It's probably a much more elegant way to do it than killing the process.
– drwatsoncode
Jun 21 '17 at 18:47
add a comment |
In other versions of teamviewer some times the daemon has to be restarted the in order to run the teamviewer app again after closing it.
sudo teamviewer --daemon stop
sudo teamviewer --daemon start
or
sudo teamviewer --daemon restart
In other versions of teamviewer some times the daemon has to be restarted the in order to run the teamviewer app again after closing it.
sudo teamviewer --daemon stop
sudo teamviewer --daemon start
or
sudo teamviewer --daemon restart
answered Aug 26 '16 at 6:26
fguifgui
30123
30123
This worked perfectly for me. It's probably a much more elegant way to do it than killing the process.
– drwatsoncode
Jun 21 '17 at 18:47
add a comment |
This worked perfectly for me. It's probably a much more elegant way to do it than killing the process.
– drwatsoncode
Jun 21 '17 at 18:47
This worked perfectly for me. It's probably a much more elegant way to do it than killing the process.
– drwatsoncode
Jun 21 '17 at 18:47
This worked perfectly for me. It's probably a much more elegant way to do it than killing the process.
– drwatsoncode
Jun 21 '17 at 18:47
add a comment |
These work too:
sudo service teamviewerd stop
sudo service teamviewerd start
add a comment |
These work too:
sudo service teamviewerd stop
sudo service teamviewerd start
add a comment |
These work too:
sudo service teamviewerd stop
sudo service teamviewerd start
These work too:
sudo service teamviewerd stop
sudo service teamviewerd start
edited Jul 12 '17 at 4:46
muru
1
1
answered Jul 12 '17 at 0:51
Matt MoodyMatt Moody
411
411
add a comment |
add a comment |
In Ubuntu 16.04
sudo systemctl stop teamviewerd.service
sudo systemctl start teamviewerd.service
or
sudo systemctl restart teamviewerd.service
add a comment |
In Ubuntu 16.04
sudo systemctl stop teamviewerd.service
sudo systemctl start teamviewerd.service
or
sudo systemctl restart teamviewerd.service
add a comment |
In Ubuntu 16.04
sudo systemctl stop teamviewerd.service
sudo systemctl start teamviewerd.service
or
sudo systemctl restart teamviewerd.service
In Ubuntu 16.04
sudo systemctl stop teamviewerd.service
sudo systemctl start teamviewerd.service
or
sudo systemctl restart teamviewerd.service
answered Feb 18 at 15:19
HarisHaris
17617
17617
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f594338%2fkill-and-restart-teamviewer-10-ubuntu-14-04%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown