Skip to content

Commit

Permalink
Added steps for SSH (partially)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcalderon2009 committed Jan 22, 2018
1 parent b13761c commit 2138842
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion docs/source/mac_101.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,37 @@ MAC 101: An Introduction
==========================

This is an introduction to the things that you should know about
your new Mac.
your new Mac.

In this section we discuss how to properly setup your Mac, how
to SSH onto a remote computer, and more.


-------------
SSH
-------------

For most of the research being done in graduate school, one needs
to access a remote computer that have more processors, more disk space
than your computer. For this, you can **SSH** onto a remote
computer via the terminal.

In order to do that, you first need to do the following in the terminal

.. code::
## Creating new SSH folder
% cd $HOME
% mkdir .ssh
% chmod 700 .ssh
## SSH Configuration file
% cd .ssh
% touch config
% chmod 600 config
## Authorized_keys file
% touch authorized_keys
% chmod 700 authorized_keys
## Connections Folder
% mkdir connections
% chmod 700 connections

0 comments on commit 2138842

Please sign in to comment.