web-dev-qa-db-fra.com

Où le fichier id_rsa.pub a-t-il été créé?

J'ai exécuté les commandes SSH suivantes pour créer ma clé rsa mais je ne sais pas où le fichier a été créé

drlloyd@DIS-7L79KF1 ~/.ssh
$ ssh-keygen -t rsa -C "[email protected]"
Generating public/private rsa key pair.
Enter file in which to save the key (/f/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /f/.ssh/id_rsa.
Your public key has been saved in /f/.ssh/id_rsa.pub.
I removed the rsa fingerprint

Où le fichier id_rsa.pub a-t-il été créé?

22
guanome

Euh, ~/.ssh, ou spécifiquement dans votre cas /f/.ssh?

Si vous êtes sous Windows, regardez F:\.ssh

23
orip

Pour moi, ce fichier existait dans c: /Users/Lee/.ssh

Lee

9
Lee Woodman

id_rsa.pub se trouve dans /f/.ssh/id_rsa.pub

Edit: Je ne savais pas que vous étiez sous Windows. Tapez ce qui suit pour obtenir le contenu de id_rsa.pub

cd /f/.ssh/
cat id_rsa.pub
5
Ransom Briggs