User:Bjordan/SSH

From OLPC
< User:Bjordan
Revision as of 23:04, 12 June 2008 by 18.85.19.50 (talk) (SSH development environment on OS X)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

ON YOUR MAC:

ssh-keygen -t dsa # a key has been created in ~/.ssh/id_dsa.pub
# PLUG IN THUMB DRIVE
cp ~/.ssh/id_dsa.pub /Volumes/KINGSTON/

ON THE XO:

mkdir /home/olpc/.ssh/
cd /home/olpc/.ssh/
cp /media/KINGSTON/id_dsa.pub ./authorized_keys # ONLY DO THIS IF THIS IS YOUR FIRST KEY
chmod 700 .
chmod 600 authorized_keys
ifconfig (get IP)

ON YOUR MAC:

# Test SSH works
ssh olpc@IPaddress (no password should be necessary)

Also nice, download MacFusion. Use MacFusion's SSH file system function to mount your XO as a logical drive.


From Erik Garrison by way of Mike Stone:

Add these to ~/.ssh/config
  ControlMaster auto
  ControlPath ~/.ssh/master-%r@%h:%p