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.

World cup college
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

2010-03-03 - Commandlinefu @ SXSW 2010
Am going to be at SXSW this year, in case you want to submit any CLI nuggets or suggestions to me in person. Ping me on the @codeinthehole Twitter account.
2009-09-12 - Email updates now available
You can now enable email updates to let you know each time you're command is commented on.
2009-07-11 - API and javascript blog widget now available
A simple API has been released, allowing commands to be retrieved in various formats. This also allows commands to be embedded on blogs/homepages.
2009-05-17 - Added duplicate suggestions to the new command form
When adding a new command, a quick background search is performed to make sure you're not duplicating a command already in the system.
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
134
Copy ssh keys to user@host to enable password-less ssh logins.

To generate the keys use the command ssh-keygen

Alternatives

There are 2 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
6

Same as original just no $ at start

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 56 weeks and 5 days ago

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

Comment by mlambie 56 weeks ago

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

Comment by DASKAjA 56 weeks ago

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

Comment by DASKAjA 56 weeks 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 55 weeks and 4 days ago

Works on RedHat-like systems

Comment by jmcoursi 55 weeks and 4 days ago

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

Comment by xupeng 54 weeks and 1 day ago

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

Comment by rommelsharma 53 weeks and 3 days ago
cat ~/.ssh/id_dsa.pub | ssh user@remotehost 'cat >> ~/.ssh/authorized_keys
Comment by juddmaltin 50 weeks and 6 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 49 weeks and 6 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 43 weeks and 6 days ago

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

Comment by bassu 37 weeks and 1 day ago

Your point of view

You must be signed in to comment.

Related sites and podcasts