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/
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.
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:
When you have to manage lot of servers, it's boring to type ssh root@myhost for each connection. Now you can type juste "s someting" and you are connected.
You can too add bash_completion script to complet with tab the name of your servers. This will be the next tips from me ;)
There is 1 alternative - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
You should setup your servers in the ~/.ssh/config file. You can make it so that every time you type "ssh yourhost" the default user name is root. You can create custom defaults for each host, and you can change anything you can set on the command line normally and then some.
You should not be sshing as root, anyway, not to mention the trivial, obvious command.
no need more alias
When at all possible, logging in as root should be disabled. It's the first account attempted when something is trying to break in. SSH in with your normal user name and su once you're in.
Very useful shortcut to run remote commands.
For instance, to clone a windows host with SystemRescueCD, I use this one :
# alias onfoo='ssh root@foobox'
# onfoo "dd if=/dev/sda bs=1 count=512" | dd of=/dev/sda
# onfoo "sfdisk -d /dev/sda" | sfdisk /dev/sda
# onfoo "ntfsclone -s /dev/sda1 -o - | gzip" | gunzip | ntfsclone -r -O /dev/sda1 -
Other way I do, but with a function and zsh:
sshs=( host.1
host.2
host.3
host.4
host.5
host.6
)
zstyle ':completion:*:*:ssh:*' hosts $sshs
With that you use tab once to show a list of available host to connect, then you can move using tab again or arrow keys to move through all hosts and select the one you want.