" />
« January 2009 | Main | September 2009 »
One of the more annoying things about having Windows hosts on a Mac network is the lack of good Zeroconf support in Windows. I have figured out a way around this though. If you have Avahi running on a Linux server somewhere on the network, you can use that Linux server to advertise services on the Windows machine. Let's take VNC for example.
This example assumes that you are advertising services for a Windows machine with a static IP address. Without a static IP address, maintenance becomes a nightmare. The version of Windows doesn't matter, nor does the OS at all, really. Let's assume that we are advertising for a Windows XP system, at IP address 192.168.1.100, named testmachine.
First off, let's create a hosts entry for Avahi in the /etc/avahi/hosts file:
192.168.1.100 testmachine.local
Next, we need to create a .service file in /etc/avahi/services named testmachine.service :
<?xml version="1.0" standalone='no'?>
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>
<name replace-wildcards="yes">Test Machine</name>
<service protocol="ipv4">
<type>_rfb._tcp</type>
<port>5900</port>
<domain-name>local</domain-name>
<host-name>testmachine.local</host-name>
</service>
</service-group>
It's just as easy to share other services as well. Once you know how to use the domain-name and host-name parameters correctly, the sky's the limit.
From Boy Genius Report:
The Communications Workers of America (CWA) union has voted, with a huge 85 percent yes vote, to authorize a strike for over 20,000 unionized AT&T Mobility employees. If union leaders do not come to terms with AT&T, the strike could begin as soon as today in 37 states where contracts are set to expire at 12:01 am tomorrow, February 8th.
Of all the monumentally stupid ideas yet to come from the bumbling Obama administration, we have this:
There it was, in a front-page story in Wednesday's Wall Street Journal — the City of Austin's proposal for $886,000 from President Barack Obama's economic stimulus package for a 36-hole Frisbee golf course.Austin's Frisbee golf project was among $149 billion in items listed by the U.S. Conference of Mayors seeking stimulus money. The 18,750 individual projects were supposed to be "shovel ready" and create jobs around the country.
Hopefully after all of this non-sense is over, and we finally get rid of Obama and his cronies, it will be decades until the democrats regain power. Let's just hope they don't destroy America before that happens.