Reputation: 9158
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
Reputation: 14643
You can try macfusion. This will mount a filesystem via SSH in your finder.
Upvotes: 2
Reputation: 11
what if you type "cmd-k" to brig up the "Open a Connection" window in the Finder?
Upvotes: 1
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
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