2
0
While trying to create rsa keypairs for a project inside the project dir I was experimenting with ssh-keygen
's -f
option. When I test it in a freshly created directory everything works as expected, but when I try to use the exact same syntax on another equally permissioned directory ssh-keygen
just keeps telling me No such file or directory.
In a way it is right saying so, because it is supposed to create these files. (The directory in which it shall work exists.)
The syntax I use for key creation is:
ssh-keygen -q -t rsa -f /abspath/id_rsa -N ""
is
/abspath/
an indication of the command or is it what you actually typed? – Sathyajith Bhat – 2011-08-01T12:22:36.990/abspath/ is just meant to indicate that I used an absolute path to a folder there as is required by
ssh-keygen
– eFrane – 2011-08-01T15:48:32.007