Archiv für: April 2010
29.04.10
Ubuntu Lucid has been released
Link: http://www.ubuntu.com/getubuntu/download
Ubuntu Lucid is the next Long Term Support release after Ubuntu Hardy (which had been released in April 2008).
For my share, I've put more effort into the development and bug triaging process again.
21.04.10
Miro has been fixed for Ubuntu Lucid
A very annoying bug has been fixed in Miro in time for Ubuntu Lucid.
After having contacted the upstream developers they have provided a patch for an annoying bug in xulrunner, which makes web gtk widgets ("inline websites" / IIRC) misbehave in Miro.
In the end it is just a shameless plug to make you get Miro - or update yours.
Available for a lot of operating systems, thanks to being built upon xulrunner.
Backwardkompatibilität
Es ist schon erstaunlich, wenn eine IE5 Installation unter Ubuntu von 2006-06-18 immer noch läuft.
Hatte das damals mit ie4linux installiert, wenn ich mich recht erinnere - und wine packt es einfach weiterhin, auch wenn ich es jahrelang nicht genutzt habe (und weiterhin nicht nutzen werde).
13.04.10
Easy DNS wildcard setup for local domains using dnsmasq
When doing web development you'll often have domains/hostnames like hahler.local (instead of hahler.de).
Having a separate hostname for a lot of projects will result in some inconvenience though: you have to setup those.
Until recently, I was adding them to /etc/hosts (or the counterpart on Windows), like so:
127.0.0.1 hahler.local whissip.local
This however does not allow wildcards (like *.hahler.local), and having something like 127.0.0.1 *.local would be much easier to maintain (no adding to this file for a new setup/project).
dnsmasq to the rescue!
dnsmasq is a lightweight DNS forwarder and I was using it already to cache DNS queries locally, for faster browsing etc. Since it answers my DNS lookups already, it should be able to make *.local work for me.
I've created a simple file /etc/dnsmasq.d/my-local with just a single line:
Code:
address=/local/127.0.0.1 |
And after restarting dnsmasq, *.local gets resolved to 127.0.0.1.
Instead of "local" you can (and should probably) use another domain, like "dev" instead, because using "local" conflicts with Avahi/mdns, but this can get solved as follows:
Avahi/mdns defaults to ".local" as its TLD and therefore you have to adjust the "hosts" line in /etc/nsswitch.conf and put "dns" (which is dnsmasq in this case) before mdns4_minimal (which is avahi in this case), or remove the NOTFOUND=return, so that "dns" would get used even when mdns4_minimal returns NOTFOUND (which it apparently does for requests in its domain (typically ".local") it does not know anything about):
Code:
hosts: files dns mdns4_minimal [NOTFOUND=return] mdns4 |


