Ashika Umanga Umagiliya
Ashika Umanga Umagiliya

Reputation: 9158

MacOS : access SSH from UI

Greetings,

Is there an easy way to access SSH server without installing a client. Like in linux (Gnome) I can type ssh://192.168.2.38 and access the resource.

thanks

Upvotes: 2

Views: 883

Answers (4)

Milhous
Milhous

Reputation: 14643

You can try macfusion. This will mount a filesystem via SSH in your finder.

Upvotes: 2

Phil
Phil

Reputation: 11

what if you type "cmd-k" to brig up the "Open a Connection" window in the Finder?

Upvotes: 1

Vinko Vrsalovic
Vinko Vrsalovic

Reputation: 340221

You already have a (commandline) client installed. You can open the Terminal and use it.

AFAIK, there is no graphical tool which supports SSH on MacOS out of the box like Nautilus does on Gnome.

Upvotes: 2

Mathias Bynens
Mathias Bynens

Reputation: 149534

Just fire up Terminal.app and enter the following command:

ssh [email protected]

Of course, replacing username with your actual username.

You will then be prompted for your password.

Upvotes: 7

Related Questions