How to properly run “top” command through SSH?
I have to run top command on one computer being on another.
My targeted PC has IP 192.168.0.81
I was trying to do it: ssh 192.168.0.81 top
But I got this result: top: tcgetattr() failed: Invalid argument
Could anybody help me with this issue?
System info: Linux iRP-C-09 2.4.18-timesys-4.0.642
Top version: 2.0.7
linux ssh terminal top
add a comment |
I have to run top command on one computer being on another.
My targeted PC has IP 192.168.0.81
I was trying to do it: ssh 192.168.0.81 top
But I got this result: top: tcgetattr() failed: Invalid argument
Could anybody help me with this issue?
System info: Linux iRP-C-09 2.4.18-timesys-4.0.642
Top version: 2.0.7
linux ssh terminal top
add a comment |
I have to run top command on one computer being on another.
My targeted PC has IP 192.168.0.81
I was trying to do it: ssh 192.168.0.81 top
But I got this result: top: tcgetattr() failed: Invalid argument
Could anybody help me with this issue?
System info: Linux iRP-C-09 2.4.18-timesys-4.0.642
Top version: 2.0.7
linux ssh terminal top
I have to run top command on one computer being on another.
My targeted PC has IP 192.168.0.81
I was trying to do it: ssh 192.168.0.81 top
But I got this result: top: tcgetattr() failed: Invalid argument
Could anybody help me with this issue?
System info: Linux iRP-C-09 2.4.18-timesys-4.0.642
Top version: 2.0.7
linux ssh terminal top
linux ssh terminal top
asked Jul 19 '12 at 14:45
SIGSEGVSIGSEGV
200237
200237
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
top
is a full screen interactive console application. It requires a tty to run. Try ssh -t
or ssh -tt
to force pseudo-tty allocation.
4
@AlexWih, then you probably should mark this as the correct answer, rather than the off topic one.
– psusi
Jul 19 '12 at 18:51
Sure, I did it.
– SIGSEGV
Jul 20 '12 at 9:58
thank you! that fixed me an issue which kept me busy way too long!
– stpn108
Sep 9 '14 at 22:42
add a comment |
Little bit off-topic:
If you need more (and better looking) output, you could also try atop
. You can download it here. Very useful to debug performance issues. It can also log system performance, so you can "rewind and playback" a problem.
add a comment |
If you do not want to see interactive display, you could let it output only one-snapshot then you no longer need "ssh -t" option:
top -n 1 -b
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f43496%2fhow-to-properly-run-top-command-through-ssh%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
top
is a full screen interactive console application. It requires a tty to run. Try ssh -t
or ssh -tt
to force pseudo-tty allocation.
4
@AlexWih, then you probably should mark this as the correct answer, rather than the off topic one.
– psusi
Jul 19 '12 at 18:51
Sure, I did it.
– SIGSEGV
Jul 20 '12 at 9:58
thank you! that fixed me an issue which kept me busy way too long!
– stpn108
Sep 9 '14 at 22:42
add a comment |
top
is a full screen interactive console application. It requires a tty to run. Try ssh -t
or ssh -tt
to force pseudo-tty allocation.
4
@AlexWih, then you probably should mark this as the correct answer, rather than the off topic one.
– psusi
Jul 19 '12 at 18:51
Sure, I did it.
– SIGSEGV
Jul 20 '12 at 9:58
thank you! that fixed me an issue which kept me busy way too long!
– stpn108
Sep 9 '14 at 22:42
add a comment |
top
is a full screen interactive console application. It requires a tty to run. Try ssh -t
or ssh -tt
to force pseudo-tty allocation.
top
is a full screen interactive console application. It requires a tty to run. Try ssh -t
or ssh -tt
to force pseudo-tty allocation.
answered Jul 19 '12 at 14:49
jw013jw013
36k699125
36k699125
4
@AlexWih, then you probably should mark this as the correct answer, rather than the off topic one.
– psusi
Jul 19 '12 at 18:51
Sure, I did it.
– SIGSEGV
Jul 20 '12 at 9:58
thank you! that fixed me an issue which kept me busy way too long!
– stpn108
Sep 9 '14 at 22:42
add a comment |
4
@AlexWih, then you probably should mark this as the correct answer, rather than the off topic one.
– psusi
Jul 19 '12 at 18:51
Sure, I did it.
– SIGSEGV
Jul 20 '12 at 9:58
thank you! that fixed me an issue which kept me busy way too long!
– stpn108
Sep 9 '14 at 22:42
4
4
@AlexWih, then you probably should mark this as the correct answer, rather than the off topic one.
– psusi
Jul 19 '12 at 18:51
@AlexWih, then you probably should mark this as the correct answer, rather than the off topic one.
– psusi
Jul 19 '12 at 18:51
Sure, I did it.
– SIGSEGV
Jul 20 '12 at 9:58
Sure, I did it.
– SIGSEGV
Jul 20 '12 at 9:58
thank you! that fixed me an issue which kept me busy way too long!
– stpn108
Sep 9 '14 at 22:42
thank you! that fixed me an issue which kept me busy way too long!
– stpn108
Sep 9 '14 at 22:42
add a comment |
Little bit off-topic:
If you need more (and better looking) output, you could also try atop
. You can download it here. Very useful to debug performance issues. It can also log system performance, so you can "rewind and playback" a problem.
add a comment |
Little bit off-topic:
If you need more (and better looking) output, you could also try atop
. You can download it here. Very useful to debug performance issues. It can also log system performance, so you can "rewind and playback" a problem.
add a comment |
Little bit off-topic:
If you need more (and better looking) output, you could also try atop
. You can download it here. Very useful to debug performance issues. It can also log system performance, so you can "rewind and playback" a problem.
Little bit off-topic:
If you need more (and better looking) output, you could also try atop
. You can download it here. Very useful to debug performance issues. It can also log system performance, so you can "rewind and playback" a problem.
answered Jul 19 '12 at 15:45
MultimhoMultimho
1311
1311
add a comment |
add a comment |
If you do not want to see interactive display, you could let it output only one-snapshot then you no longer need "ssh -t" option:
top -n 1 -b
New contributor
add a comment |
If you do not want to see interactive display, you could let it output only one-snapshot then you no longer need "ssh -t" option:
top -n 1 -b
New contributor
add a comment |
If you do not want to see interactive display, you could let it output only one-snapshot then you no longer need "ssh -t" option:
top -n 1 -b
New contributor
If you do not want to see interactive display, you could let it output only one-snapshot then you no longer need "ssh -t" option:
top -n 1 -b
New contributor
New contributor
answered 6 mins ago
fchenfchen
1012
1012
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f43496%2fhow-to-properly-run-top-command-through-ssh%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