These are the Frequently Asked questions for the installation and usage of AScopy. If you feel that some information is missing please feel free to contact me.
prefix
option of the configure script
like this:
./configure --prefix=$HOME/ascopy
$HOME/ascopy/bin
directory
and the documentation in $HOME/ascopy/man
directory.PATH
and MANPATH
settings to
point to these directories.
On your local machine execute the following commands:
mkdir -p $HOME/.ssh
chmod 0700 $HOME/.ssh
ssh-keygen -t dsa -f $HOME/.ssh/id_dsa -P ''
Now copy the resulting file $HOME/.ssh/id_dsa.pub
to the
remote server you want password-less access to and log in to the
remote system (using SSH of course). On the remote system take the
following actions:
mkdir -p $HOME/.ssh
chmod 0700 $HOME/.ssh
cat id_dsa.pub >> $HOME/.ssh/authorized_keys2
chmod 0600 $HOME/.ssh/authorized_keys2
rm -f id_dsa.pub
If you want access from multiple machines to the remote system just
repeat the ssh-keygen
, cat
and
rm
commands from the system you want use to connect to
the remote server.