Connect from Mac OS X to Linux by using Terminal

If you use Mac OS X, you don’t need to install a third-party client like PuTTY to connect to your cloud server via Secure Shell (SSH). Terminal is a terminal emulation program included with Mac OS X that you can use to run SSH.

 

These instructions are for users who are connecting to a new cloud server for the first time. If you’re connecting as a non-root user, replace root in the instructions with your username.

  1. Go to Applications > Utilities, and open Terminal.

    A terminal window interface is displayed:

     
    ssh -p 22 username@192.168.0.7
     
    You'll need to replace the "22" with whatever port you the server (sshd) is running on. The "username" needs to be the login name. The "@" symbol just tells the client (ssh) that the username you typed in should be used for accessing the IP address you typed in. In the example I gave, that IP address was "192.168.0.7", so you'll need to replace it with whatever you need for your server.
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

List files and directories using SSH

In order to list all files and directories using an SSH client, you would need to execute the...

Create/Edit files and folders using SSH cmd line

There are various ways you can create a new file using the SSH command line.The easiest and most...

Move and copy files using SSH

Often you will need to move one or more files/folders or copy them to a different location. You...

Deleting files and folders via SSH

Sometimes you would need to remove a file or a folder from the system. To do so using SSH, you...

Extracting and creating archive files via SSH

Sometimes you would need to extract or create an archive file (i.e to install a script, you would...