Operating System - Linux
1748228 Members
4065 Online
108759 Solutions
New Discussion юеВ

convert the Windows-format

 
SOLVED
Go to solution

convert the Windows-format

I can't convert the windows ssh key on the linux box.

ssh-keygen -i -f id_rsa.sfvmvcs1 >> authorized_keys
uudecode failed.

Any help would be appreciated.
Thanks,
Alex
3 REPLIES 3
Wilfred Chau_1
Respected Contributor

Re: convert the Windows-format

try

ssh-keygen -e id_rsa.sfvmvcs1 >> authorized_keys
Wilfred Chau_1
Respected Contributor
Solution

Re: convert the Windows-format

forget the -f flag. Here.

ssh-keygen -e -f id_rsa.sfvmvcs1 >> authorized_keys

Re: convert the Windows-format

Thanks