Hi guys, I&#39;m hoping you can help me understand what I&#39;m doing wrong.  At my job we usually mostly CentOS and certificates to authenticate instead of passwords. <br><br>My laptop is linux Mint 12, and for the most part I have no problem getting where I need to go to get my work done.<br>
<br>it&#39;s just sudo ssh -i (path to my cert) -l (mylogin) (some destination server)<br><br>But every so often, I need to SCP a file up to one of the servers.<br><br>I&#39;ve tried reading the man pages, and if I&#39;m not totally mistaken -i should do it, but when I try<br>
<br>scp (some file) -i [path to my cert] mylogin:someserver (destination directly on some server)<br><br>it usually prompts me for a password, which, frankly, I don&#39;t have.<br><br><br>Just in talking with my co-workers: my SSH config and agent-forwarding usually comes up<br>
so here&#39;s my ~/.ssh/config<br><br>Host *<br>        Protocol                2<br>        User                    mylogin<br>        Compression             yes<br>        ServerAliveInterval     30<br><br>ForwardAgent yes<br>
<br>In my research, I&#39;ve even tried tweaking my /etc/ssh_config file, to include a line to my identity file, and change ForwardAgent to yes. To make things even more confusing, when I try to restart ssh I inevitably get some variant of ssh is not a recognized service or that /etc/initd/ssh start is not a recognized command.<br>
<br>So for the life of me, I was having difficulty believing THAT or I wouldn&#39;t be able to SSH in the first place.  So basically, color me confused!<br><br><br><br>