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:
Reconfigures time zone in Ubuntu, which I cannot figure out how to do through the GUI. Worked like a charm to set my time zone to CEST from EDT.
There are 4 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
yes, and there's actually a distro-independent way of doing this... trying to remember it though. Ah yes, here we go:
# If you wish, backup the previous timezone configuration by copying it to a different location. Such as
mv /etc/localtime /etc/localtime-old# Create a symbolic link from the appropiate
timezone to /etc/localtime. Example:ln -sf /usr/share/zoneinfo/Europe/Amsterdam /etc/localtime# ...aaaaaaaaand to set up UTC:
vi /etc/sysconfig/clock # change the UTC line to: "UTC=true"errata: the "timezone to /etc/localtime. Example:" isn't a command. It was highlighted as a command but should be regarded as a #comment instead.
the handy command
tzselectwill also do this for you (probably will need root permission).
I think it's distro independant (if it's in angstrom, I'm pretty sure it's everywhere), but it is there on ubuntu
This should launch the Time and Date settings dialog:
time-adminIt works in ubuntu, but it should work in any GNOME installation according to the manual page.