SSH to pcDuino

From ElectroDragon Wiki

New OS ubuntu 0531 of pcduino

SSH is auto start after booting, the following steps will be not necessary anymore

Add your user firstly

adduser ED  // Add user, set password, etc
adduser ED admin  // add ED to admin group

Install SSH

 apt-get install ssh // install
 apt-get install joe  // install joe, which is a great editor

Edit SSH config

joe /etc/ssh/sshd_config  // use joe to edit ssh configuration file

Now add "AllowUsers ED" this line behind the line "StrictModes yes", this allow user ED to login pcduino

ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
 
AllowUsers ED

On computer side

Run SSH login software like bitwise SSH on windows, set your username and password, now you can use file system for your pcduino