Intel Begins Support for Debian
An anonymous reader writes "An Intel Software Architect announced on the Debian mailing list yesterday that Intel has begun supporting Intel devices on Debian sarge for their extensive reseller channel. This covers the D845, D865 and D915 chipsets and was done to meet customer demand.
They've posted drivers as well as the various distributions supported by the chip maker (Debian, Mandriva, Novell and Red Hat). Looks like the pure open source distributions are finally getting the attention of the big players!"
The kernel this binary deb was installed against is 2.6.8/i386, Debian 3.1.
The actual download is pretty silly. You download a tar.gz file. This unzips into a total of 1 file (so why the .tar?). The format? ISO. To mount this, just use `mount -o loop file.iso /mount/point`
Here's a general feel for the unusual install.
From the email:
"All the drivers of course include source and have been released under the GPL. They have also already been submitted upstream ( kernel.org, alsa.org , x.org) and can be downloaded at intel.com/go/linux."
Makeself. It's used in the Loki installer, and thus in lots of commercial software.
Besides that, grandparents point was that a .tar is a non-compressed archive, and the actual compression happens in .gz. Gzip can only compress one file, meaning that if you want to compress multiple files, you'll have to compress a tar archive of those files. But in this case, there is only one file. So they could've (should've?) skipped the tar step and just gzip it.
From the manual:
Or from Wikipedia:
Giving gzip multiple files will simply compress each of those files, instead of compressing them together inside a single archive.