Command-line control login remotely from another computer

31,803

You can use ssh. You'll need to install an ssh server on the remote machine:

sudo apt-get install openssh-server  

You can then connect to the computer with:

ssh username@remote-pcs-ip
Share:
31,803
user1471
Author by

user1471

Updated on September 18, 2022

Comments

  • user1471
    user1471 over 1 year

    I need a way to get command-line control of a computer remotely, from another computer. That is, I need a secure way to log in from another machine on the network using a terminal.