Does ssh use more CPU than terminator?

1

If I were to run watch -n3 "sensors" on Terminator vs using ssh, would it be less resource intensive?

Epsilon

Posted 2017-07-28T17:14:46.580

Reputation: 47

Answers

0

Most probably yes. SSH is Secure Shell and it uses encryption for the data transferred between two ends.

If you run a command locally, it spawns that command for you and you are done.

If you run the same command over ssh, you start the client process (potentially on other computer), server spawns at least two processes which handle the communication with the client, encryption and decryption. Only after that you will get your command ran.

Jakuje

Posted 2017-07-28T17:14:46.580

Reputation: 7 981

But the Terminator will be back .... :) sorry couldn't resist ... – Solar Mike – 2017-07-29T21:12:26.597