Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?
You must be signed in to comment.
commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
ssh-keygen -t rsa -f ~/.ssh/id_rsa -b 2048 -P
ssh-keygen -P ''; ssh-copy-id -i ~/.ssh/id_rsa user@host; ssh user@host
that's two single quotes after the -P setting the passphrase to an empty string which I believe should be the same as no passphrase at all.ssh-keygen -P '' -f ~/.ssh/id_rsa -b 2048
...will not ask you for a thing. @bwoodacre: your second command doesn't need the -i in it, that is the default (and without prompt) So, for most of you out there, if you are doing this on a new machine or machine that otherwise needs a new key to be written, your command for doing everything you need (without a passphrase) on one line is:ssh-keygen -P '' -f ~/.ssh/id_rsa -b 2048; ssh-copy-id user@host; ssh user@host
...ssh user@host is obviously only for logging in when done ...and most systems don't prompt for the -b (bits) and default to 2048 :)