Slashdot Mirror


Mac OS X Tiger Accidentally Shipped Early

boarder8925 writes "Engadget reports: 'In many places around the world, Mac fans and Apple distributors received a shipment they weren't quite expecting: Mac OS X 10.4 Tiger arrived at the door a full eight days ahead of schedule for some lucky folks who pre-ordered. Vendors PCMall/MacMall and ClubMac gave pre-order customers a treat by unleashing the OS ahead of schedule, quickly followed up by a 'recall' of the copies from PCMall.'"

12 of 540 comments (clear)

  1. Other early resellers... by The+Amazing+Fish+Boy · · Score: 5, Informative

    At least one other "reseller" has received legal threats, but apparently they think they are immune.

    1. Re:Other early resellers... by bani · · Score: 4, Informative
  2. Re:Old News? by The+Amazing+Fish+Boy · · Score: 4, Informative

    Three days old is now "old news"? I'm not sure you understand how Slashdot works. The editors don't break stories, they repost stories and the users comment on it.

    Oh, and Steve wears New Balance shoes.

  3. Re:build number by outZider · · Score: 4, Informative

    8a428.

    --
    - oZ
    // i am here.
  4. Re:Oh come on... by NormalVisual · · Score: 4, Informative

    I wouldn't even worry about it. If you're shipped an illegitimate version, then that's not the item you ordered. Under Federal law you have no duty to return an item you didn't order, and the supplier is still on the hook to deliver the merchandise you've already paid for.

    If they want to be jerks about it, then do as you mentioned and dispute the charge. If Apple does in fact figure out some way to identify and exclude the early users from the support they're owed, they'd best make sure those people get a totally legitimate copy. Otherwise, they just grabbed the biggest shovel in the shed to dig a very public hole around themselves.

    --
    Please stand clear of the doors, por favor mantenganse alejado de las puertas
  5. Re:This was a mistake?! by ljaguar · · Score: 5, Informative

    I actually did a diff on the cp man page between panther and tiger. There is no significant different. maybe 4 lines or so changes outlining legacy mode for options -i and such.

    But there is however a significant changes from panther's cp to tiger's cp.

    Apple's website outlines it this way: http://www.apple.com/macosx/features/unix/
    HFS+ CLI file commands
    Use command-line commands safely on HFS+ files. Utilities such as cp, mv, tar, rsync now use the same standard APIs as Spotlight and access control lists to handle resource forks properly.

    This feature... is so huge. It made the upgrade to tiger worth it just by itself. Previously, unix CLI progs such as cp and mv didn't respect certain features of HFS+.

    There are flags on HFS such as hidden, bundle, and custom icons. Also (most importantly) cp didn't respect HFS+ resource forks. This broke a lot of stuff when you tried to manage files with cp. You had to use stuff like CpMac and ditto which were piss poor lacking in features. (couldn't handle symlinks. when it got to broken symlinks, it would just die...)

    New cp and mv and even rsync (yes!) uses different API now that respects everything and then some. (first class citizens again!)

    Even further than just handling HFS+ correctly, this new cp will invoke Spotlight so that spotlight db is correct always no matter how you manage files. This is totally sweet. /cartman

    Also this API will respect the new ACL functionality in tiger as well.

    A few other notable features of Tiger for me are Xcode 2.0, GCC 4.0, new PDF support for forms and encryptions and such.

    All that and ACL and the new CLI utils are less hyped but more important to unix users like me than Dashboard (which runs less than spectacularly on G3 600mhz iMac.)

  6. Legal status of unordered merchandise by Kufat · · Score: 5, Informative

    Cornell's law site backs him up; unordered merchandise belongs to the recipient. (Interestingly, I had that link handy because one of the free stuff sites accidentally sent me two iPod shuffles instead of one, and I wanted to know my legal status with regard to the second one.)

    1. Re:Legal status of unordered merchandise by ari_j · · Score: 4, Informative

      There's a difference between sending merchandise you didn't order and sending the wrong merchandise from what you ordered. The Uniform Commercial Code, which is the law in most states, has provisions for when you order one thing and get something else, and saying that you can just keep it and still demand the original item you ordered isn't precisely the legal truth at all times.

      From the US Code section you linked to, "(d) For the purposes of this section, "unordered merchandise" means merchandise mailed without the prior expressed request or consent of the recipient."

    2. Re:Legal status of unordered merchandise by Damiano · · Score: 4, Informative
      Actually, you're incorrect. This isn't unordered merchandise, it's what is known as non-conforming merchandise. He did order something, but received the wrong item. If he decides to keep it he will need to pay for it.

      Realize that this law was to prevent people from scamming consumers by sending them items unordered and then billing them for it, hoping they'd pay, not to allow you to get free stuff because of a shipping mistake. (Scammers used to send out family bibles to people who had just died and then send a bill. The next of kin wouldn't realize it was a scam and pay the bill).

  7. Re:This was a mistake?! by daviddennis · · Score: 5, Informative

    You've gotten some pretty good responses, but if you're not using a Mac I fear they are pretty obscure. So let me take a shot at it.

    Before MacOS 10, the Apple file system split files into two segments: A data fork, which looked basically like a conventional DOS/Unix file, and a resource fork, which was a sort of mini-database letting you structure your file contents. This was particularly useful in executable programs; the resource fork would contain icons, menu definitions and the like. It would also contain the program that created the file (the "creator code"). When you double-clicked a file, the system would look at the creator code, find the corresponding application and start it up. This was a much slicker system than file extensions because the file could be called anything you wanted and the association with a program was automatic and unchangeable unless you were familiar with system internals.

    A program called ResEdit let you change these definitions and you could do things like define different keyboard shortcuts by playing around with the menu definitions.

    This was also used by programs to create data file formats. This was very nice, because if those files contained information in standard Apple formats, it could be easily read and modified by ResEdit and similar programs. So the movie files created by Final Cut Pro, for example, had a lot of the information in the resource fork which made debugging and reading these files a lot easier than the alternatives.

    MacOS X attempted to get rid of this entirely, because of a significant problem: Resource forks don't exist in the Windows or Unix world, so copying Mac files to other operating systems was a bit of a non-starter. So in MacOS X, we have file extensions, just like in Windows and Unix, instead of creator codes in the resource fork. You can argue until you're blue in the face by saying resource forks are a much more elegant way to deal with the situation, and you'd be right. But at the same time it hardly matters since most people need to exchange data with Windows computers.

    Naturally, MacOS X retained support for the resource fork so that applications such as Final Cut Pro could continue to use it. However, they discouraged use of resource forks in future applications.

    The problem was that they didn't tell the Unix utilities like cp about the resource fork. Instead, the utilities would copy all the data fork but not the resources. So if you had a Final Cut Pro file using the resource fork, you could cp it to another folder and the file would not work when you tried opening it.

    So in Tiger they have fixed this problem, and the resource forks are now retained, so I can feel free to use cp et al to copy all Mac files, including those with resource forks.

    This is, of course, a major victory for people like me who like to use the Unix utilities for file management.

    D

  8. What good software or media has come out of Sweden by carabela · · Score: 4, Informative

    Well, let's go back some years to find swedish inventor Håkan Lans creating PC color graphics, a useable computer pointing device, safe flight control (through something resembling "P2P GPS") - who has tried to hinder his creativity? US government agencies and major US corps.

    Let's move on and find Ericsson software engineers creating AXE telephone switches, Bluetooth etc. Keep up, and we find Lavasofts Ad-Aware helping out most n00bs from getting the most out of skunkware. Pointsec, a swedish company producing the industry top class encryption sw (note: biggest customer is teh US military!). Yes, KaZaA and Skype are also created by swedes, ironic - isn't it!

    Oh, did you know who actually made most of super-US bimbo Britney Spears smash hits? A swede called Max Martin. Go figure!

    --

    The more you know, the less you need. [Admin added: from me.]
  9. Re:Apple cut piracy on Tiger. NOT. by As+Seen+On+TV · · Score: 4, Informative

    No, he's basically right. I mean, if you ignore the fact that he seems not to have actually read my comment. There are forty million Macs out there in active use, according to our market-research guys. Something like three out of four of those sold without DVD-reading drives in them.

    Now, something like three out of four OF THOSE can't even run Tiger anyway. It's not like somebody's going to go running Tiger on a Power Mac 9600. So it's not like we're saying that three out of four Tiger buyers will have to do the media exchange thing. Corporate tells us that they estimate it'll be closer to one in twenty. Which is fine.

    But it all boils down to this: We put Tiger on a DVD instead of four CDs because we wanted to. That's all there is to it.