vote up 1 vote down star

I have just, in my groggy morning state, reversed & confused the arguments to ln, replacing /usr/share/zoneinfo/America/Toronto with a link to the non-existant /etc/localtime, when I really wanted to link /etc/localtime to Toronto. Now I have no timezone file for where I live. Does anybody have a copy or know where I could get one? It's just instructions on how to translate unix time into toronto time, but I cat'd a few of the other files, and they don't seem like something I'm up to the task of writing by hand.

I know. At least I've never rm -r'd my /

edit:

Before anybody asks, I just tried sudo dpkg-reconfigure tzdata, gleefully entered "America" then "Toronto", only to crash and read, cp: cannot stat '/usr/share/zoneinfo/America/Toronto': no such file or directory. ARGH.

flag
which distribution of GNU/Linux are you using? – omouse Oct 31 at 17:04
1  
I hate ln. I always get the order of the arguments backwards, even when I take that fact into account. – Brian Campbell Oct 31 at 17:09
@omouse, linux mint 6 fluxbox ce @brian, i lol'd. That's exactly the problem. – nullpointer Oct 31 at 17:11
1  
this sounds like a serverfault question, as it doesn't involve programming. – Peter Oct 31 at 17:48
ln arguments are confusing because ls -l shows them in the opposite order (for symlinks). Just remember that ln arguments are in the same order as cp and mv: existing name first, then new name. – mark4o Oct 31 at 23:21

2 Answers

vote up 1 vote down check

http://www.246tnt.com/files/Toronto

link|flag
I'll give this a try. – nullpointer Oct 31 at 17:30
vote up 1 vote down

Depending on which GNU/Linux distro you're using, you may be able to just re-download the whole of the tzdata package using its package manager. I know ArchLinux has a package for the time zone data and so does Debian.

However, you can also manually download the whole package and extract the time zone file that you want.

link|flag
Hmmm. It seems those files are human readable script of some type, while the files on my computer are probably binaries, as cat rendered them as a bunch of bizarre characters. My aptitude can't find tzdata either. Hmmm :\ – nullpointer Oct 31 at 17:18
Yeah, you missed a step from the website (I did too hehe): The code lets you compile the tz source files into machine-readable binary files, one for each location. It also lets you read a tz binary file and interpret time stamps for that location. So you use the tzcode stuff to compile the tzdata stuff. You'll want to read the README file that comes with it to figure out how to dump the exact timezone data that you want. – omouse Oct 31 at 17:24
thank you anyhow. – nullpointer Oct 31 at 17:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.