Hide

What's this?

commandlinefu.com is the place to record those command-line gems that you return to again and again.

Delete that bloated snippets file you've been using and share your personal repository with the world. 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.


If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/

Get involved!

You can sign-in using OpenID credentials, or register a traditional username and password.

First-time OpenID users will be automatically assigned a username which can be changed after signing in.

Hide

Stay in the loop…

Follow the Tweets.

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

Subscribe to the feeds.

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:

Hide

News

2011-03-12 - Confoo 2011 presentation
Slides are available from the commandlinefu presentation at Confoo 2011: http://presentations.codeinthehole.com/confoo2011/
2011-01-04 - Moderation now required for new commands
To try and put and end to the spamming, new commands require moderation before they will appear on the site.
2010-12-27 - Apologies for not banning the trolls sooner
Have been away from the interwebs over Christmas. Will be more vigilant henceforth.
2010-09-24 - OAuth and pagination problems fixed
Apologies for the delay in getting Twitter's OAuth supported. Annoying pagination gremlin also fixed.
Hide

Tags

Hide

Functions

Copy ssh keys to user@host to enable password-less ssh logins.

Terminal - Copy ssh keys to user@host to enable password-less ssh logins.
$ssh-copy-id user@host
2009-02-07 04:58:11
User: senthil
234
Copy ssh keys to user@host to enable password-less ssh logins.

To generate the keys use the command ssh-keygen

Alternatives

There are 5 alternatives - vote for the best!

Terminal - Alternatives
ssh-copy-id username@hostname
ssh-copy-id user@host
2009-08-07 16:36:19
User: matthewbauer
Functions: ssh
4

Same as original just no $ at start

ssh-keygen ptaduri@c3pusas1
ssh-copy-id -i .ssh/id_rsa.pub username:password@remotehost.com
$ssh-copy-id ptaduri@c3pusas1

Know a better way?

If you can do better, submit your command here.

What others think

If you need change default port ssh, you can use:

ssh-copy-id 'user@host -p2233'

Comment by irraz 156 weeks and 1 day ago

I think this isn't normally found outside Ubuntu or Debian systems.

Comment by mlambie 155 weeks and 3 days ago

Alternativly you can use ?cat ~/.ssh/*.pub | ssh user@remote-system 'umask 077; cat >>.ssh/authorized_keys'? on such systems.

Comment by DASKAjA 155 weeks and 3 days ago

... without the question marks (?) of course.

Comment by DASKAjA 155 weeks and 3 days ago

Beware : without arguments it copies your identity.pub file, which is by default a RSA1 pub key (obsolete), unless you have already executed ssh-agent, added your keys, so that ssh-add -L returns something.

Comment by jmcoursi 155 weeks ago

Works on RedHat-like systems

Comment by jmcoursi 155 weeks ago

Also works on Gentoo, it's contained in openssh package.

Comment by xupeng 153 weeks and 5 days ago

doesn't work across all unix OS. Or is there some installation needed?

Comment by rommelsharma 152 weeks and 6 days ago
cat ~/.ssh/id_dsa.pub | ssh user@remotehost 'cat >> ~/.ssh/authorized_keys
Comment by juddmaltin 150 weeks and 3 days ago

ssh-copy-id is just a script. If you don't have it you can google it easily ehough. Using the above cat is easier though. OS X doesn't bundle ssh-copy-id so I always use the cat version.

Comment by qubyte 149 weeks and 2 days ago

This does not work on CentOS 5.3:

ssh-add -L

The agent has no identities.

So, this tip requires at least some readme on setting up said ssh-copy-id

Quick reading of man ssh-agent did not result in much enlightenment for me.

On the other hand the

cat ~/.ssh/*.pub | ssh user@remote-system 'umask 077; cat >>.ssh/authorized_keys'

is easy to understand and certainly works....

Comment by vleolml 143 weeks and 3 days ago

vleolml, ssh-copy-id does exist on both Ubuntu 8.x and CentOS 5.x.

Comment by bassu 136 weeks and 5 days ago

As always, read the man page carefully before using this command. It does a bit more than just copying your public key. It also modifies the permissions of ~ and ~/.ssh, which may not be what you want if for example the recipient of your key is user postgres on the remote box.

Comment by lorenzocabrini 70 weeks and 5 days ago

For OSX using Homebrew: there is a Formula for this: http://mxcl.github.com/homebrew/

Comment by unixmonkey24450 25 weeks and 6 days ago

Your point of view

You must be signed in to comment.

Related sites and podcasts