ssh-keygen only - SSH
This is a discussion on ssh-keygen only - SSH ; Hi,
Can I install ssh-keygen only without all the sslopen (which again depends
on perl). I would like to do that to get a chance to create a public key on
our embedded pc 104 system. It would be nice ...
-
ssh-keygen only
Hi,
Can I install ssh-keygen only without all the sslopen (which again depends
on perl). I would like to do that to get a chance to create a public key on
our embedded pc 104 system. It would be nice if there was no need for the
whole deal with it's libraries and binaries to safe some space.
Thanks,
Ron
--
chEErs roN
-
Re: ssh-keygen only
On 2008-03-27, Ron Eggler wrote:
> Can I install ssh-keygen only without all the sslopen (which again depends
> on perl). I would like to do that to get a chance to create a public key on
> our embedded pc 104 system. It would be nice if there was no need for the
> whole deal with it's libraries and binaries to safe some space.
You can install ssh-keygen with only its supporting libraries ("ldd
ssh-keygen" will tell you what those are). ssh-keygen requires OpenSSL's
libcrypto, however whether or not that appears in the list will depend
on how you built OpenSSL. It will also need some system level stuff
such as an entropy source, which is usually /dev/random or /dev/urandom
on most modern systems. Just copy the binary and the libraries ldd
shows you and you should be good to go.
I believe OpenSSL requires Perl only at build time.
--
Darren Tucker (dtucker at zip.com.au)
GPG key 8FF4FA69 / D9A3 86E9 7EEE AF4B B2D4 37C9 C982 80C7 8FF4 FA69
Good judgement comes with experience. Unfortunately, the experience
usually comes from bad judgement.