Vmware Tools on Ubuntu Gutsy

Posted: February 29th, 2008 | Author: Trevor Orsztynowicz | Filed under: Geek, General | No Comments »

When installing Vmware tools on Ubuntu Gutsy (7.10), either after a fresh install or an upgrade, you’ll notice that your networking will either be broken and/or you’ll see a device named ‘eth1′ which is using the kernel module ‘pcnet32′. Pcnet32 will work as a virtual nic, however you’ll suffer serious performance degradations.

There are two ways to fix this. One is the right way (the permanent way) and the other is the wrong way.

The right way (and the only way I’ll show you)

cd /etc/initramfs-tools/
sudo echo vmxnet >> modules
sudo update-initramfs -u

What this will do is force your initramfs image – which is loaded at boot – to contain the vmxnet module, which is the one you really want to be running. You may still notice pcnet32 when you run `lsmod`, however you can freely unload it – it’s not being used by anything.


Download Difficulty

Posted: February 26th, 2008 | Author: Trevor Orsztynowicz | Filed under: General | No Comments »

I hate user registration pages in general, especially if it’s to download software.

I’ve been working closely with Solaris 10 and OpenSolaris lately, and I had to grab copies of SXDE and Solaris10 again today from the Sun website.

What a pain in the ass.

Seriously, It’s called ‘Open’ Solaris, but Sun requires a registration to be able to download a free copy of their software. What is Sun really going to do with the registration information it gets from you when you download a copy of Solaris? As far as they’re concerned I’m currently evaluating it for 1000 servers. Wouldn’t the benefits you gain in opening up your distribution channels outweigh the value of the statistics you’d get from requiring someone to log in?

If you want everyone to use your stuff, you have to make it *really* easy to get. If a client, be that a computer or a person can’t grab copies of your software in 1 easy step – Click – then you’re doing too much to prevent them from using it. If an EULA is your concern then put it at the boot prompt.

I want to see the numbers on the pros and cons.

Seriously.

Seriously.


The Coolest Conference

Posted: February 25th, 2008 | Author: Trevor Orsztynowicz | Filed under: General | No Comments »

I’ve only been to a handful of conferences, so I suppose I don’t have too much of a basis for comparison, but nobody can convince me that TED isn’t the coolest conference ever. TED 2008 starts tomorrow and this year’s topic is “The Big Questions”. Those questions are

Who are we?
What is our place in the universe?
What is life?
Is beauty truth?
Will evil prevail?
How can we change the world?
How do we create?
What’s out there?
What will tomorrow bring?
What stirs us?
How dare we be optimistic?
And the point?

A little technical, a little philosophical and all of them very exciting. I hope this years talks don’t take too long to squeak their way onto the interwebs.

Update:

I had my ear to the ground but it seems like the BIL conference (heh) has got a lot of traction.

The first (hopefully annual) conference is being held in Monterey, California and is free to attend and open to the public. BIL is a self-organizing conference with a handful of corporate sponsors. Does anyone want to rent a car and drive to California this weekend? :)


The Semantic Stack

Posted: February 17th, 2008 | Author: Trevor Orsztynowicz | Filed under: General | 5 Comments »

The internet is constantly evolving. What was once a loosely connected collection of documents has turned into a socialized application that allows you to search and gather information on pretty much anything you desire.

But what if web technologies could tighten the relationship between sets of information? As with any system, a set of technologies lie at its core, and those technologies are what I call the “Semantic Stack”.

1. RDF – Resource Description Framework

RDF is a standard for creating structured data about data, or Metadata. Specifically, RDF is a tool for associating values of a certain type to a unique object. An example of data that could be described by RDF is “Trevor Orsztynowicz is the author of Trevoro.ca”. In the RDF model, trevoro.ca (URI) is authored (value type) by Trevor Orsztynowicz (Value). RDF is usually expressed in XML format, which ends up looking like this

<?xml:namespace ns = "http://www.w3.org/RDF/RDF/" prefix ="RDF" ?>
<?xml:namespace ns = "http://purl.oclc.org/DC/" prefix = "DC" ?> 

<RDF:RDF>
  <RDF:Description RDF:href="http://trevoro.ca">
    <DC:Creator>Trevor Orsztynowicz</DC:Creator>
  </RDF:Description>
</RDF:RDF>

Adding structure to MetaData is important – because if a massive number of systems and processes are going to share that information, then they have to agree upon a language, or framework of writing it.

2. SPARQL – RDF Querying Language

SPARQL is a SQL like querying language for RDF data. SPARQL gives you the ability to query a system with constraints, and get back an interesting set of data. Think of it as a way of standardizing SQL queries across multiple systems. You can map your SQL Database to SPARQL if you want to share your data, making SPARQL not only the query language but also a transition mechanism, and way of opening up access to your data in a standardized and useful way. Think mashups in 50 lines of code and 10 minutes, or better yet: mashups-on-the-fly.

3. OWL – Web Ontology Language

OWL is a method of describing Ontologies – or loosely the connections and meanings of objects and relationships – contained in a document which can then be parsed easily by a machine. What this means, is that understanding OWL means understanding the future of knowledge transfer not only between machines, but between machines and people. Because OWL was designed for computers, it’s not really easy to read on your own; This is what an OWL format file written in XML looks like. OWL will make it possible to ask plain language questions to computers. For example, “Where in Vancouver can I buy wines that taste good with smoked gruyere cheese” is a query that you have to rewrite in your head, and perform a knowledge transfer yourself into a secondary query to get the results you need. Information described in OWL will eliminate that need.

4. XMPP – Extensible Messaging and Presence Protocol

XMPP is going to enable a whole bunch of cool things, and while it’s not necessarily a semantic technology if an of itself, it lends itself to what I call a naturalized online conversation. Computers shouldn’t have to poll for data. What if systems could let each other know about information, contextualize it, combine elements of that data with resources from a 3rd party, and deliver to you a summary of information, all in real-time? When a website becomes a conversational knowledge transformation system it’s no longer a website – It’s a friend telling you what you need to know.

5. OpenID – Distributed Authentication Model

All of this information is going to have to be trusted, as are the sources and people using that information. OpenID is the perfect solution to identifying and creating web’s of trust among and between environments. An authentication system would allow you to provide selective access to specific queries. Because OpenID already uses URI’s as their main identifier, it fits perfectly within the RDF model. With this model you could create levels of trust, weigh the validity of your results, and distinguish between systems trying to access your data.