Slashdot Mirror


Xbox 360 Very Unstable

fmwap writes "There have been several postings over at Xbox-scene complaining of crashing Xbox's on new games, with default settings on single player. Crashes on Xbox Live and on startup have been reported too, and Project Gotham Racing 3 crashes before finishing the first lap. Screenshots and Video are available showing the crash."

73 of 1,113 comments (clear)

  1. 1699 parts ok by enoraM · · Score: 5, Funny

    Seems like they got 1699 Parts of the x-box to the market:

    http://games.slashdot.org/article.pl?sid=05/11/18/ 156253

    and it seems to be the same in other forums too:
    http://forum.teamxbox.com/showthread.php?t=391764

    1. Re:1699 parts ok by InvalidError · · Score: 4, Interesting

      At least this will solve M$'s supply problem after the news makes the news and front pages. Remaining early adopters will want to wait until M$ announces its take on things before thinking of buying again.

      On the XBox-360 poll, my answer was Never / X-Mas 2006. Launch prices are too high, I do not care about the coolness factor of having 0-dayz new stuff and I had doubts about how well the initial hardware would work. Quitting the bleeding-edge to stick with mature mainstream stuff has saved me quite a bit of cash and trouble, I'll stick to that.

  2. Have you tried.. by Anonymous Coward · · Score: 5, Funny

    ..placing a book under one corner?

  3. And in todays news... by Hieronymus+Howard · · Score: 5, Funny

    Microsoft product crashes
    Pope is discovered to be a Catholic
    Family of bears accused of defecating in forested areas

    1. Re:And in todays news... by ShrikeDOA · · Score: 5, Funny

      "So the bear wipes his ass with the rabbit."

      --

      You are not a beautiful and unique snowflake.
    2. Re:And in todays news... by 3-State+Bit · · Score: 4, Funny

      okay,
      Family of bears crashes
      (...for the night? crashes the party?) Anyway every camper knows to shut the flaps against the bears.

      Pope is accused of defecating in forested areas
      Hey, when you gotta' go, you gotta' go. Nature calls.

      But this?
      Microsoft discovered to be Catholic
      I call bullshit - don't let the tithing (MS tax) / real charity done by the Foundation throw you off. No way Gates would let his workers wear his crucified corpse around their neck. (Though I'm sure Balmer has thought of it...)

      Also 0 hits on this search.

    3. Re:And in todays news... by should_be_linear · · Score: 4, Interesting

      Microsoft product crashes
      I predicted in /. forum that XBox will be very unstable, not because it is designed by MS but because it is nightmare for debugging. You have to make 3 threads application (not 4, not 2) and sync all objects they share. Combine it with complicated interactions of objects in any game, which makes creation of auto-test scripts impossible and default gaming language, C++, which is very uneasy to debug for Multiple threads (compared to say, Java) and they hardly could do any better than this. Cell is designed in much better way, multiple threads (SPUs) are used by low level liberaries (well debugged) but main gaming/engine app. is still single-threadded and therefore easy to debug and stable.

      --
      839*929
    4. Re:And in todays news... by IAmTheDave · · Score: 4, Funny

      Now now... I wouldn't say that it "crashes" so much as "fits in with the family of Microsoft products." />

      --
      Excuse my speling.
      Making The Bar Project
    5. Re:And in todays news... by crashcodesdotcom · · Score: 4, Funny

      I thought the Pope was a Baptist.

      Stop me if you heard this one...
      Catholic: Who do you confess your sins to?
      Baptist: God. So, who do you confess your sins to?
      Catholic: A priest.
      Baptist: I heard about that, who does the priest confess his sins to?
      Catholic: A bishop.
      Baptist: Who does the bishop confess his sins to?
      Catholic: A cardinal.
      Baptist: Who does the cardinal confess his sins to?
      Catholic: The Pope.
      Baptist: Okay, who does the Pope confess his sins to?
      Catholic: God.
      Baptist: Oh, so the Pope is a Baptist!

    6. Re:And in todays news... by InvalidError · · Score: 4, Informative

      This is a myth.

      This article has responses from a few game devs stating that their launch titles are multi-threaded and a M$ threading person said: "Six months ago, we had only looked at a handful of games. Most of those games were single-threaded. Today, we've evaluated most launch titles and the majority are using multiple threads."

    7. Re:And in todays news... by sl3xd · · Score: 5, Informative

      Everybody knows that Jesus 'rode into town' on a Harley Davidson. Stop trying to spread your revisionist theories on history.

      --
      -- Sometimes you have to turn the lights off in order to see.
    8. Re:And in todays news... by sl3xd · · Score: 4, Insightful

      Debugging is not the problem, the rush to market is to blame here, plain and simple.

      I recall the original X-Box having similar issues when it was launched. BFD; Microsoft isn't exactly alone in releasing first, fixing later. They're probably not even the worst at the game.

      At least with PC games, it's become par for the course that the game will be quite unstable until the 2nd or 3rd patch.

      Most people I know won't deploy a new verision of Windows until the 1st service pack.

      Welcome to the world of rushed releases of incredibly complex systems.

      Engineer says: "How does it work?"
      Manager says: "When will it work?"

      Manager usually wins, engineer doesn't get his questions answered, and as a result there are bugs.

      Leaving the customer to complain: "Why doesn't it work?"

      --
      -- Sometimes you have to turn the lights off in order to see.
    9. Re:And in todays news... by tgrimley · · Score: 5, Funny

      Parent is moderated "Informative." Makes you think..

    10. Re:And in todays news... by Deagol · · Score: 4, Funny

      "That piece of halibut was good enough for Jehovah."

    11. Re:And in todays news... by John+Whitley · · Score: 4, Informative
      Have you *ever* written/debugged a multi-threaded program?

      Yep. I've done this type of work and it's possible for it to not be a big deal -- provided that the developers stick to a robust set of patterns and protocols for interacting with the DSP compute hardware. For sanity's sake, all of the sync code should be wrapped up into frameworks so that various sub-teams never end up wandering off and generating buggy one-off low-level synchronization code. Devs coding for the specialized hardware (DSP/Cell) write to interfaces that are clean and purely single-threaded. Clients on the main hardware threads never need to screw around with low-level sync code. The framework itself can be instrumented to assist in finding and debugging any odd concurrency issues that come up, but for the most part a well-designed framework allieviates a lot of annoying concurrency bugs in the first place. When bugs are found they get quashed once and for-all in the framework, instead of being distributed willy-nilly (and sometimes in non-obvious ways) around the system.

      To folks looking for further reading, I suggest starting with Pattern Oriented Software Architecture, Vol 2: Patterns for Concurrent and Networked Objects by Douglas Schmidt, et. al. A number of these patterns are also available as papers from Schmidt's website -- see Google. I also recommend checking out the Future(s) pattern, not covered in POSA2. The idea is to have an asynchronous operation return a Future object that represents the result of the async computation. When the result in needed, the object either returns it (if the async computation is done) or blocks (if the async computation isn't done). This allows both batching of multiple parallel async activities, as well as result/input dependency management. A somewhat simple example:
      Future<Texture> t = LoadTexture(textureid);
      Future<Model> m = LoadModel(modelid);
       
      Future<Model> munged_m = Transform(m.result() /* may wait*/,
                                        transform_params);
       
      /* do other stuff */
       
      Future<Frame> = Render(munged_m.result(), t.result());
      The nice thing is that the work requests (here, loading or transforming data) can (potentially) all run in parallel. Note that LoadTexture, LoadModel, and Transform all return instantly -- we'll only wait for a result when it's called for, and we only wait if the result is not already available.
  4. here's my surprised look by samsonov · · Score: 4, Funny

    what?!? No blue screen of death?

    --
    "You killed my yogurt!" --Fred Fredburger
  5. hmmmm .... by Average_Joe_Sixpack · · Score: 5, Funny

    Project Gotham Racing 3 crashes before finishing the first lap

    Sounds like someone needs to improve their driving skills and stop blaming the system.

  6. upgrades by tezbobobo · · Score: 5, Insightful

    Does anyone know if these things are upgradable? or what the process is? Microsoft has a history of being first to markwt with buggy software. In the past it has been a strategy which has worked for them. Still, I long for the days of cartridges. Just reminissing - please don't flame me. But do answer if you know about upgradability/

    1. Re:upgrades by SenFo · · Score: 4, Insightful

      I'm honestly not sure if it's upgradeable or not; but even if it is, you have to realize that it's definitely NOT the same kind of market.

      I guess after years of working with Microsoft operating systems and just assuming that Windows was part of the computer, many users have grown to accept crashing and the need to run periodic upgrades. However, in the "black box" market, people are much less forgiving of programming bugs that lead to crashes and are much less likely to upgrade to newer firmware versions.

      I work with embedded systems at my job and it's known by all programmers that our firmware needs to be as close to bug free as we can possibly get it. Think of a little "black box" that controls your printer (a print server), for example. How would you feel if you had to reset some idiot box a couple times a day for no reason? For everybody I've ever worked with, it's entirely unacceptable and it's an almost certainty that the IT managers would be replacing the box with another brand as soon as possible.

      I don't know about you, but it's bad enough for me --and most people-- when my computer crashes. I would be pretty upset, however, if my game console crashed after hours of game play to complete a mission.

  7. Could be worse... by TripMaster+Monkey · · Score: 4, Funny


    So the new XBoxes are crashing...let's just hope they've addressed the problem of the XBox bursting into flames and killing you. ^_^

    --
    ____

    ~ |rip/\/\aster /\/\onkey

  8. What is this? A tabloid? by pjh3000 · · Score: 5, Insightful

    So half a dozen out of the hundreds of thousands of new Xbox 360 owners are having problems. Why does Slashdot have to state "Xbox 360 Very Unstable"? I've had bad installs of Linux too. Would we see the headline on Slashdot "Linux Very Unstable" too?

    This is normal. With the massive number of parts in the Xbox 360, it's to be expected that some are defective on a few units. Microsoft will give them a replacement. Move along, nothing to see here.

  9. see....... by xao+gypsie · · Score: 4, Insightful

    This is why I never buy technology when it is first released on the market...

    --


    xao
    http://TheHillforum.hopto.org
  10. Well... by Claws+Of+Doom · · Score: 5, Funny

    ...where *did* you think all those Windows Millenium Edition licenses went?

    1. Re:Well... by apoc06 · · Score: 5, Interesting

      well, TFA has the actual gathered facts. this reflects what we've been hearing about the x360 kiosks that were installed in walmarts as well. whereas those crashes were written off as the byproduct of improper ventilation in the kiosks and the models being alpha-development hardware, now we are starting to see those werent just early prototypes; those are the same models that are being sold now. remember the whole "the actual power supply wont actually be that big..." argument? well, guess what? IT IS... remember the whole "the final model wont be as noisy..." argument? well it is. what else is there to be said? the crashes arent isolated to one or two software titles; it must be in the hardware somewhere.

      this sort of stuff happens with lots of rushed to market consumer electronics. no big deal to me; its what you would expect. all i can say is that ive had my fair share of consoles do weird stuff, but no playstation or nintendo product ive ever owned has repeatedly crashed on me within the first 24 hours of owning it.

      the postings are on xbox-scene. if they are biased against microsoft, i cant tell. its an xbox modding/fan site! would multiple users go out and spend $400 plus games, peripherals, etc. on x360s just so they can post screenshots of self-inflicted crashes?

  11. and this folks by lubricated · · Score: 4, Interesting

    Well, this is why I always wait a few months before jumping on a console, if not a year. Nothing pisses me off more while I'm gaming than a crash.

    --
    It has been statistically shown that helmets increase the risk of head injury.
  12. what does MicroSoft call an alpha-tester? by peter303 · · Score: 5, Funny

    A customer.

    Furthermore, "geek up" the product so the alpha-testers will wait in line for 18 hours and pay twice as much as for competitor's hardware for this "priviledge".

  13. Re:I wish I had a dollar by Kazzahdrane · · Score: 4, Insightful

    You won't be getting a dollar from me then. If this is a big hardware problem I feel bad for the developers who had to work long hours to get their product ready for launch date.

  14. Hoax by trollable · · Score: 4, Funny

    Com'on, this is a bad hoax against Micro$oft. The screenshots are not even blue!

  15. Not the only site reporting failures by Bones3D_mac · · Score: 5, Informative

    These guys have a fairly big list going too.

    --


    8==8 Bones 8==8
  16. Look to the power my son by Groo+Wanderer · · Score: 4, Insightful

    http://www.theinquirer.net/?article=27893

    80 or 110W CPU (I have heard both ways), a GPU equivalent to the ~100W R520, a HD, RAM and a constantly spinning DVD in a box how big?

    And people wonder why they crash. Anyone who has one want to comment on how hot they get?

              -Charlie

    1. Re:Look to the power my son by Anonymous Coward · · Score: 5, Interesting

      The air being exhausted from my xbox 360 doesn't feel any hotter then what's comming out of my PC. I think there probably a larger precentage of defects out there, especialy given the rush to market and short supply. Last night I played for about 6 hours strait didn't experience any lockups or other issues like what has been reported.

  17. ... Re: MS Paying DEARLY by Bill+the+Bilby · · Score: 5, Insightful

    ... You know they won't. The problem with today's software (and combined hardware/software) manufacturers and vendors has nothing to do with the programmers themselves. Companies have simply responded to the paying public's demand for new toys with no wait. We want our toys NOW, not later. And buying trends for YEARS now have indicated that computer and computer program buyers are more then willing to purchase a program and then spend a significant amout of time patching and updating it- often right out of the box.

    Microsoft responded to this in the way that gained them the most extra profit- they rushed the system to market without (apparently enough) random batch testing or other beta testing. People (lots and lots of people) bought the systems. They are crashing. Microsoft will now start to release patches (probably over Live) that correct this bug or that. The paying public will accept this and install them. People who buy XBox 360s down the road will expect the patches to be installed before they buy the system- but they'll still expect to have to install more at some point.

    It's NOT the computer companies fault things have grown this way. They- like all companies- are a FOR-PROFIT venture, and will do whatever they think is the thing that will garner them the most profit. Period.

    Welcome to Capitalism, enjoy your stay.

    1. Re:... Re: MS Paying DEARLY by killtherat · · Score: 4, Insightful

      They are crashing. Microsoft will now start to release patches (probably over Live) that correct this bug or that. The paying public will accept this and install them. People who buy XBox 360s down the road will expect the patches to be installed before they buy the system- but they'll still expect to have to install more at some point.

      I'm curious how Microsoft plans to patch the systems without hard drives. Aside from updates to the BIOS, how can changes to the video games be saved?

    2. Re:... Re: MS Paying DEARLY by Generic+Guy · · Score: 4, Insightful

      Regardless of Microsoft's "plans", they will find that the consumer elecronics business is _not as easy to dominate as the arena of PC software. Their biggest competitor (Sony) is a veteran of consumer electronics and is having all sorts of financial problems -- ironically, people point to the Playstation division as Sony's sole saving grace. In fact, Microsoft is already finding out because J.Allard's original plan was for the Xbox1 to be turning at least a tiny profit by this point. Instead, they dumped a bunch of money into a new design and rushed it to market.

      If this Xbox360 crashing problem is widespread enough, these things are going to either be shunned by the market, or lose all their profit potential fixing them.

      --
      { - Generic Guy - }
  18. Re:I wish I had a dollar by garcia · · Score: 4, Insightful

    We whine when they delay and push back release dates of their OS over and over again but when they finally do come out with something "on time" (whatever that means) and it's not up to par we give them shit.

    So they can't win. Everyone knew that already but seriously it's not going to cost them anything.

    Consider their "limited release numbers" early adoption beta testing. They got them out there into the real world without having to give the units away and now they are getting the feedback they need to add to the new "revisions" that will still be out before the PS3.

    It's a good thing though, the *only* reason I could ever see purchasing an XBox with Live would be for racing online. Now that I can't do that I might as well wait for Gran Turismo 5 on the PS3 w/o network play ;)

  19. "Several posts" on a few boards = "very" unstable? by xbrownx · · Score: 4, Insightful

    Is that all it takes?

    I would hope people would take more of a wait and see approach to see how widespread the problem is.

  20. How widespread is this? by WebGangsta · · Score: 4, Interesting
    I fully anticipated that there would be problems with the initial release of 360s reported from various tech-knowledgable early buyers, but how widespread are these problems in reality?

    For example, I have a day-of-release PS2 that's still going strong, and I never experienced any of the problems that were reported here and elsewhere with these units. In this case, I assume that my machine is the norm and not the exception, but if I based my opinion on the naysayers at the time it would appear that my PS2 would be in the minority of working units instead.

  21. Rumors by SlashAmpersand · · Score: 5, Funny

    I've heard an unconfirmed rumor that Microsoft suspects that the XBox's are crashing because of the proximity of nearby Linux boxes. One employee, using an "open source detector", claimed to have established a 3-mile "Cloud of Evil" around a Red Hat server. The employee went on to say "This conclusively proves that Linux is a danger to our children". Steve Ballmer's statement (which was taped to a chair and thrown through a newsroom window) blamed Google.

  22. Sony has had its moments too... by tkrotchko · · Score: 5, Informative

    Sony has had problems with the PS2... the first batch had a significant amount of CD/DVD drive failures; I had one, but sony eventually replaced it for free.

    In fact, there has been a class action over the issue:

    http://www.ps2settlement.com/

    --
    You were mistaken. Which is odd, since memory shouldn't be a problem for you
  23. Doesn't it strike you as a bit odd by tkrotchko · · Score: 4, Interesting

    I understand what you're saying and to a certain extent I agree.

    But give how common these problems are, doesn't it strike you as odd? This is almost like there was no testing at all, which doesn't make sense. The developers surely would have caught these weeks, if not months ago.

    --
    You were mistaken. Which is odd, since memory shouldn't be a problem for you
  24. Or how about? by Joseph+Vigneau · · Score: 5, Funny

    Have you tried blowing on the DVD, and wiggling it around a bit?

    1. Re:Or how about? by Viper+Daimao · · Score: 5, Funny

      Have you tried buying a PS2/Gamecube?

      --
      "In the game of life, someone always has to lose. To me, if life were fair, that someone would always be Oklahoma." -DKR
  25. Re:What is this? A tabloid? by Phybersyk0 · · Score: 4, Insightful

    somebody mod the parent post up.
    At work we get large quantities of hard drives from various manufacturers and out of every batch we usually get 1 or 2 that just will not spin up, or have other errors prohibiting their use.

    Considering the condition of some of the boxes I've seen people carrying out of the stores, it's no wonder there isn't a few machines that have had parts wriggle free.

    They probably make sure the system boots to the dashboard and then send it on for packaging.

    I seriously doubt that ANY video game console company does burn-in testing for 24-hours before shipping the unit to market. The costs would be (more) astronomical.

  26. Cool crash screens though. by suso · · Score: 5, Funny

    You have to admit though. Those are some decent crash screens. Not unlike the screens you'd see when pulling out a Atari 2600 game cartridge with the power on. Hey wait, the crashes themselves look better than atari 2600 games. Oh no!

    1. Re:Cool crash screens though. by Gentlewhisper · · Score: 5, Funny

      >You have to admit though. Those are some decent crash screens. Not unlike the screens you'd see when pulling
      >out a Atari 2600 game cartridge with the power on. Hey wait, the crashes themselves look better than atari
      >2600 games. Oh no!

      Why didn't they color the crash screen using Microsoft's trademark blue?

    2. Re:Cool crash screens though. by Thud457 · · Score: 5, Funny
      Forget "but does it run Linux?"

      What people really want to know is "does it run the Sony rootkit?"

      --

      the preceding comment is my own and in no way reflects the opinion of the Joint Chiefs of Staff

    3. Re:Cool crash screens though. by Alien+Being · · Score: 4, Funny

      "the crashes themselves look better than atari 2600 games"

      --- A Ballmerable Snowman ---

      Steve Ballmer is led onto a stage in chains and shackles. The audience looks aghast at the hideous creature. Although he is clearly dangerous, he seems to be pacified by a rather large contingent of middle managers.

      On the other side of the stage, Bill Gates is demonstrating the XBOX 360. The press is eating it up. The audience is on its feet. Suddenly the XBOX bursts into flames. Ballmer sees the flames and reacts with a violent primal rage. He explodes from his restraints with the strength of a hundred men. Rampaging through the audience, he effortlessly tears up rows of chairs, heaving them in every direction. Then, he turns on the people. He grabs each person by their ankles, turns them upside-down, and shakes the money out of their pockets. Bill Gates is speaking over the public adress "Please remain calm. The situation is under control." It's of no use. Panic has ensued.

      By this time, Ballmer is stomping around the arena, masturbating wildly, and crushing everyone and everything. Few survive. Finally, sweat-drenched and exhausted, he returns to the stage where he cuddles with his harem of developers.

  27. Unstable? by SpikeSpegiel · · Score: 5, Informative

    I waited up all night in front of a Best Buy to get mine. I also purchased Project Gotham Racing 3 and Kameo. With both games, I've spent most of my time playing PGR3. I have not had one crash, and the only trace I've seen of it is on Kotaku.

    As a note, the system is very thermally unstalbe. I have mine vertical, and every vent is needed. If you were to block any of the airholes for any reason, or to trap the air exiting via the rear of the sytsem, the system potentially could overheat. The exhaust was very high temperature when I checked it after an hour or two of PGR3.

    My rig (for reference) was running at 720P for part of it, 1080i for the other part (to compare whose transcoder was better, my TV or the XBOX). I'm on XBOX live, and upon boot, the system updated itself and restarted. This could have been a critical update that fixed the problem that people are talking about.

    All and all, I'm quite impressed with the hardware. The emulation works better with some XBOX games than others. For instance, Forza motorsport runs sluggishly on the 360, yet Dead or Alive 3 runs flawlessly.

    The live marketplace is impressive. They have HD downloads available, such as music videos and trailers. In addition, you can download new games such as bejewled from Microsoft. There are also themes that can be purchased via live, and as Penny Arcade themes are available, many people should be able to get their themes for sale on Live.

    If I see crashes, I'll repost. However, so far, after 10+ hours of operation, most of which with PGR3, I have no crashes or errors to report.

  28. Misleading Headline by Anonymous Coward · · Score: 4, Insightful

    How can you call the XBOX 360 'very unstable', based purely on a couple of sporadic forum posts, by anonymous people with no real media credibility. While I'm certainly not saying they are fake, I am saying some people have an agenda. And frankly, it wouldn't surprise me if some "hyper-ultra anti MS zealots" that frequent this site would do such a thing purely for kicks and a lack of maturity, such is the nature of those with a religeous devotion to something. Also, who says these people havn't opened up the XBOX, had a fiddle, tried some modding etc...

    Furthermore, with the exponentially increasing complexity of electronic products these days, it's to be expected that there will be some software bugs that need ironing out. A console as complex as the XBOX 360, with advanced networking features and a system such as Live will of course have some bugs to iron out. Microsoft will replace faulty units, because they wish the XBOX 360 to succeed and public outcry wouldn't be to there advantage.

    Finally, When Slashdot posts an article about the XBOX 360 launch, with links to sites effectively praising the console as an excellent product, with respected sites such as [H]ardocp giving it the thumbs up, it's poor journalism to immediately follow up with an instability article with poor sources. Common sense tells me if the XBOX 360 was 'very unstable', sites such as [H]ardOCP and GameSpy who would be testing and evaluating it extensively would also have run into issues, yet I see no mention of this on their sites.

    Very unstable? Rubbish. Editors need to be more responsible and ensure articles have an appropriate headline.

  29. Heat by captaineo · · Score: 5, Insightful

    The graphics glitches in those screenshots look like what happens when a modern graphics card overheats. For some reason the contents of the video RAM tend to get corrupted (covered with checkerboard blocks or rainbow colors) right before the system halts altogether.

    I don't have an Xbox, but maybe you could try running it with the cover off or a fan blowing on it?

    1. Re:Heat by Jarnis · · Score: 5, Informative

      Opening xbox not only voids your warranty, but also probably makes things worse. The cooling has special ducts directing the airflow, and if you pluck those out, it'll overheat even easier.

  30. Re:I wish I had a dollar by frdmfghtr · · Score: 5, Insightful

    We whine when they delay and push back release dates of their OS over and over again but when they finally do come out with something "on time" (whatever that means) and it's not up to par we give them shit.

    So they can't win. ...


    Ahh, but they can win...it's called proper project management.

    Delays can and do occur, but to be years off target is inexcusible. Rushing a product to market to meet the project deadline is also inexcusible. Microsoft has way too much experience in software development to not be able to estimate how long a project will take. When projects are chronically late by significant anounts of time, your means of estimating time to complete projects needs to be re-examined.

    Longhorn is estaimated to ship when, 2008 is it? This is several years behind schedule? (I don't know for certain.) Microsoft's project manager knew (or whould have known) what was going into the new OS and the developers should have been better prepared to provide a more reasonable estimate of the time needed to complete the project.

    Of course, the MS Marketing Dept. may be setting timelines and not the engineering/R&D department....no shock there.

    --
    Government's idea of a balanced budget: take money from the right pocket to balance...oh who am I kidding?
  31. Rushed to market? by Winterblink · · Score: 4, Interesting

    Who knows, this could be a result of Microsoft rushing the hardware to make it in time for the holiday season.

    In the case of PDZ, I'd question the stability of the game from the fact they were stamping the damn thing before running it through Microsoft's test regime. The problem is with both parties frankly, because if you're stamping it before final testing, the you probably didn't do your OWN testing to make sure things were working properly. Or, I bet Rare was biting its fingernails hoping Microsoft didn't find known issues.

    Admittedly, this is version 1 of the 360. You can never find all the problems until a product is put out to market and widespread use finds all sorts of issues you never thought of. For all we know, some people having issues maybe have their 360 plugged into a dizzying array of power bars hooked up behind their home theaters. Power issue, maybe? Inadequate cooling? Time will tell.

    In any case, I'm pretty glad I'm not an early adopter this go-around. I'm still considering picking one up, but I think I'll wait until the game library's a little less sports-heavy, and maybe for the 65nm chipped versions to hit the shelves.

    --
    "I'm a leaf on the wind. Watch how I soar."
    -Hoban Washburn
  32. Oh, They Can Win by Greyfox · · Score: 4, Insightful
    They could give us a correct estimate of how long it will take them to actually do the job correctly. Or better yet, not talk about their new product until it's actually out the door, which IBM had to do for a long time under their consent decree with the DOJ, since they used to regularly abuse their monopoly power in the mainframe market by claiming their new mainframe would have millions of new features that their competitors never even dreamed of and would be out in just one more year. So naturally everyone would hold off their IT purchasing for another year. Then IBM would push the release date back or release a product with far fewer features than they originally said they would. That was the original anti-competitive practise that IBM invented. Yes, Microsoft can't even be innovative in business process.

    Of course, they've also shown that they can win with their anti-competitive practises. Too bad there's not some sort of legal entity that will call them on it...

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

  33. Re:Last minute change in the BIOS? by TrappedByMyself · · Score: 4, Insightful

    It sounds like either the dev kits weren't in sync with production units, or someone as MS decided to add a last minute DRM to the BIOS.

    It sounds like you're just making shit up.

    --

    Help me take back Slashdot. When did 'News for Nerds' become 'FUD and Conspiracy Theories for Extremist Nutjobs'?
  34. I'd like to thank the guinea pigs by DrXym · · Score: 5, Funny
    ...who are discovering all the bugs and flaws in this new console. I don't know about others but I really appreciate your services - your willingness to queue up for the box; to pay a premium rate for a revision 1.0A piece of hardware; to choose from a paltry selection of mostly mediocre full-price games; and to gripe that the reality of your purchase might not meet up with your expectations or indeed what the hype lead you to believe.

    We salute you!

  35. Re:I wish I had a dollar by LDoggg_ · · Score: 5, Funny

    If this is a big hardware problem I feel bad for the developers who had to work long hours to get their product ready for launch date.

    hmmm..

    DANTE: All right, so even if independent contractors are working on the Death Star, why are you uneasy with its destruction?

    RANDALL: All those innocent contractors hired to do a job were killed--casualties of a war they had nothing to do with. (notices Dante's confusion) All right, look--you're a roofer, and some juicy government contract comes your way; you got the wife and kids and the two-story in suburbia--this is a government contract, which means all sorts of benefits. All of a sudden these left-wing militants blast you with lasers and wipe out everyone within a three-mile radius. You didn't ask for that. You have no personal politics. You're just trying to scrape out a living.

    BLUE-COLLAR MAN: Excuse me. I don't mean to interrupt, but what were you talking about?

    RANDALL: The ending of Return of the Jedi.

    DANTE: My friend is trying to convince me that any contractors working on the uncompleted Death Star were innocent victims when the space station was destroyed by the rebels.

    BLUE-COLLAR MAN: Well, I'm a contractor myself. I'm a roofer...(digs into pocket and produces business card) Dunn and Reddy Home improvements. And speaking as a roofer, I can say that a roofer's personal politics come heavily into play when choosing jobs.

    RANDALL: Like when?

    BLUE-COLLAR MAN: Three months ago I was offered a job up in the hills. A beautiful house with tons of property. It was a simple reshingling job, but I was told that if it was finished within a day, my price would be doubled. Then I realized whose house it was.

    DANTE: Whose house was it?

    BLUE-COLLAR MAN: Dominick Bambino's.

    RANDALL: "Babyface" Bambino? The gangster?

    BLUE-COLLAR MAN: The same. The money was right, but the risk was too big. I knew who he was, and based on that, I passed the job on to a friend of mine.

    DANTE: Based on personal politics.

    BLUE-COLLAR MAN: Right. And that week, the Foresci family put a hit on Babyface's house. My friend was shot and killed. He wasn't even finished shingling.

    RANDALL: No way!

    BLUE-COLLAR MAN: (paying Dante for coffee) I'm alive because I knew there were risks involved taking on that particular client. My friend wasn't so lucky. (pauses to reflect) You know, any contractor willing to work on that Death Star knew the risks. If they were killed, it was their own fault. A roofer listens to this...(taps his heart) not his wallet.

    --

    "If they have both, tell them we use Linux. And if they have that, tell them the computers are down." -Dave Chapelle
  36. Overheating! My experience. . . by Aegis9975bb2 · · Score: 5, Informative

    My XB360 crashed multiple times playing Quake 4. Personally, I think its an over heating issue.

    Since the machine is pretty loud I put it in my home-entairtainment cabinet, which it shares with a receiver, DVD player, and an old VHS. While the cabinet is relatively large, when I close the glass door and play the XB360 it gets very hot in there after playing (and I've been playing alot).

    Quake 4 seems to really stress the XB360 out since there is an aggrevating amount of slow down in the game. Several times when Quake 4 got too hectic my XB360 froze up on me. After I felt how hot it is I took it out of the cabinet and so far (being since last night) I haven't had any problems with crahes so far.

  37. Re:I wish I had a dollar by Lisandro · · Score: 5, Insightful

    It does seem to be a hardware problem - they crash screen look glitchy instead of the "clean" screen you get when the crash is OS related. Reminds me of and overheated GPU.

        Now, i don't know if the headline is correct (the console is very unstable... but only for a bunch of people), but if true, it has the smell of a rushed product all over it. And i won't make any friends over this, but serves these people right. Yeah, you, the ones that couldn't wait a couple of months and pay 3x the price in order to buy a product before it has been properly reviewed. And i don't mean like Gamespot's "Oooh! It's the second coming of Christ"-kind of reviews.

        Paying upfront for promises is bad buisness. Don't buy into the hype. It's only a console.

  38. Re:Last minute change in the BIOS? by cloudmaster · · Score: 4, Funny

    Yup, not enough synergy in the leveraging of ROM bits, it'll get your z-buffer out of sync with your bit blitter every time. When will they learn?

  39. Re:Polls by Golias · · Score: 4, Insightful

    apparently team xbox started a poll. Very small sample but 15% of xbox 360's are freezing. It will be interesting to see what happens to the percentage as the sample grows.

    Dude, if I had an X-Box and it was working properly, why would I be answering polls on some "team X-Box" site??? I'd be spending every waking hour (outside of work) playing Call of Duty 2 or something.

    Frankly, I'm stunned that their number isn't far closer to 100%.

    The real number of X-Boxes with problems is something we won't know for a couple weeks yet. It could be everybody, it could be a handful of loudmouths (or Sony astroturfers) trying to turn their bad experience into the next big consumer "crisis", a la the iPod battery "issues." Let's not get ahead of ourselves. If they screwed up the launch, we'll have plenty of time for MS-bashing fun when the dust settles.

    --

    Information wants to be anthropomorphized.

  40. Unfair by Chuck+Chunder · · Score: 4, Insightful
    Slashdot just wanted to post this 'story' because they wanted to be able to laugh at MS and pretend the evil giant was on its knees because all Xbox 360s are defective. MS has it coming once in a while and deserves to be bashed but in this instance it's the MS-haters who sound like drooling fanboys.
    I think that's a tad unfair. It's a 'story' because the 360 is hyped right now and anything that happens surrounding it is news. We've had months of rumour, speculation and hype. It hardly makes sense to start pointing the finger at 'MS-haters' when a story starts emerging showing the 360 in an unflattering light. Any details will be news on launch day and people will pick up whatever little bits they have and run with a story. That's just a natural follow-on from a much hyped launch.
    --
    Boffoonery - downloadable Comedy Benefit for Bletchley Park
  41. What to Watch by Winterblink · · Score: 4, Insightful

    What we should be reporting on, what is MORE newsworthy than just the instability, is Microsoft's reaction to it. If and when they find the problem, will they replace defective units? It's usually at times like these that a company shows its true committment to its customers and product. As an example, when the iMac flat panel line first came out there were lots of customers complaining of fan noise, and Apple was quick to figure out what was causing it and send out replacement parts to affected users. My first Mac was an iMac with such a problem, and their reaction to the problem was entirely reassuring to someone who bought in on a 1.0 version of a product. I'm definitely going to be keeping an eye on the news of these issues to see what kind of support is there for people.

    --
    "I'm a leaf on the wind. Watch how I soar."
    -Hoban Washburn
  42. What's "a trace of a crash?" by dpbsmith · · Score: 4, Funny

    "I have not had one crash, and the only trace I've seen of it is on Kotaku."

    What, exactly, is "a trace" of a crash? Sounds like "a little bit pregnant" to me...

  43. Re:I wish I had a dollar by merlin_jim · · Score: 4, Informative

    The information at some of the links indicates it might be a problem with the power supply brick - one poster had three 360s (his and two friends')... one had a very different (color, size, prong size) power cord. That power cord, whichever xbox it was plugged into, wouldn't have a problem.

    Sounds like its likely a combination of out-of-spec power conditioning and overheating. The two can reinforce each other AND combine to contribute instability... parts that are hot are less likely to be tolerant to poor power conditioning, and parts that are experiencing power fluctuations tend to produce more heat on the surge cycles.

    --
    I am disrespectful to dirt! Can you see that I am serious?!
  44. Re:And this is a surprize because? by Aegis9975bb2 · · Score: 5, Informative

    We're taking components and cramming them in spaces with insufficient free air delivery and we're surprised when they crash and burn.

    I've lost many hard drives and three computers (one Linux, one Mac and one Windows,) to "heat prostration". Sometimes the cases are not really capable of handling everything we can shove in there.

    I hate the monolith in Redmond as much as the next guy but... heat is the enemy here.

    I bet NOBODY who lives in a frozen food section at Safeway is reporting a crash.


    >>First off, my other consumer electronic devices (including my 600W receiver) have absolutely no problems with over-heating. As do, I'm assuming, most electronic devices made today.

    >>Secondly, as mentioned in my first post the cabinet is relatively large, and my VHS and DVD are obviously turned off when playing my XB360; there is ample space and ventilation in the cabinet, I put it on the shelf where my old Xbox used to sit.

    >>Thirdly, MS should obviously design their "home entertainment" device to be put in, well, a "home-enteirtainment" cabinet. Its unresonable to expect every person to use their XB360 in "frozen food section at Safeway" .

    It should also be mentioned that even outside the cabinet it's incredible hot. When I eject the DVD to the machine I can feel the heat of radiating from it, and the game is suprising hot to the touch. I've never had this problem with my original Xbox (that sat in the same cabinet), which I also bought on lauch day, and has been incredibly reliable since the day I got it. Personally, I think MS caved into the critism of the size of the original Xbox and stuffed the hardware into too small a place relative to heat disapation.

  45. Re:Polls by DannyO152 · · Score: 5, Funny

    Well, I wouldn't be surprised if Microsoft astroturfers weren't deployed to say positive things at any web site where there might be........ anti-Microsoft... comm..... HEY, wait a doggone moment.

  46. They'll have to come out with Xbox 361..... by rollthelosindice · · Score: 5, Funny

    for Workgroups

  47. Tech support response by Midnight+Thunder · · Score: 5, Interesting
    First, I would be curious to know what percentage of XBOX 360s have this issue? I ask this because only people having issues make any noise, with the rest spending too many hours playing with their new system.

    One thing that is worth sharing is the answer 'makaveli87' (post #79 in the Xbox Forums) gave about his contact with MS Support:

    "Ok I phoned tech support, I was on hold for about 40min. The first guy didn't really know what he was talking about, he kept trying to tell me to do things I had already tried like unplug everything or "read the manual" so he connected me to someone else. This guy seemed like a gamer or he at least knew what he was talking about. He told me that they were having several problems with the launch consoles, the hdd problem, overheating, something to do with the HD to SDTV thing on the back, game disks being scratched , problems with the operating system and a few disk read errors.
    He said the overheating problem will be the most common and that this is what I have. (If your console turns off or the screen freezes 90% of the time its an over heating issue. If you get one of the error screens its and OS problem.) he said for both of these problems they need to replace the console and that it would take 6-10 weeks!!! I asked why and he said that they are experiencing more problems then hey had hoped and that he is supposed to say 6-8 weeks, but last week he was telling people 4-6 and those people would be waiting until mid-january. He wouldn't go further into that though. He did tell me that I could hold onto the system and use it as much as I can for 2 or 3 weeks, send it in then and I would still get it back 6-10 weeks from now.
    Anyways the warranty covers any of those major problems I stated above so that's good. I guess #1 on MS list is to sell all of their consoles to new customers and let the people with problematic ones wait until after the holidays."
    --
    Jumpstart the tartan drive.
  48. Re:How many of you have it on the carpet. by larien · · Score: 4, Insightful

    It's a games console... it's supposed to be in the living room. If the designers couldn't figure out that bit and left it with a flaw where it didn't work in a normal living room, they deserve to be shot.

  49. Re:Polls by iamhassi · · Score: 4, Insightful
    "Dude, if I had an X-Box and it was working properly, why would I be answering polls on some "team X-Box" site??? I'd be spending every waking hour (outside of work) playing Call of Duty 2 or something. Frankly, I'm stunned that their number isn't far closer to 100%."

    well, the real number is closer to 0.0001%, but apparently a few people did take a second to go on the forums to brag about their working xbox360 which is why it's only 85%. Think it's Cartman syndrome: got a cool new toy = gotta brag about it.

    The people who paid $300+ for a non-working xbox360 have nothing better to do than to bitch about it online so that's where the 15% came from.

    Just the fact that it's only 15% means there's very, very few people with broken xbox360s because when shit breaks the first thing the internet community does is bitch about it 24/7. If there was truly a lot of busted xbox360s out there then this number would be 100%.

    --
    my karma will be here long after I'm gone
  50. Re:Polls by Anonymous+Brave+Guy · · Score: 4, Funny

    Oh, come on. We^WThey'd never dream of doing something so low.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  51. My experience with the first 5 hours of use by sho222 · · Score: 4, Interesting

    My XBOX 360 was waiting for me when I got home from work last night. I had pre-ordered from EBGames.com and selected next day air shipping. My first 5 hours with the machine were not as smooth as I had hoped.

    After getting the old Xbox out of the way and hooking up the component cables, surround sound optical cable, wireless adapter, and ginormous power brick, the first thing I saw on the screen turning it on was an error screen. Black, with E74 in the center bottom - there was some other text as well, but I don't remember what it said and most of it was in another language. Not a great first impression, to say the least. I think the problem was the wireless adapter - I was using the one I bought for my original Xbox. I guess they don't play nice together. I'm not sure why really, I thought it was pretty much equivalent to a wireless bridge. Starting up the console without it plugged in resulted in the startup screen. A big error screen is a pretty harsh welcome - they could have at least set it up to start up the system as normal and then display a friendly error message about having to pony up more money for new accessories: "Sorry. Although your shiny new Xbox 360 might be able to play over 200 legacy Xbox games, the wireless adapter you bought is now just a paperweight with lights." That would be better than E74.

    After getting the Xbox on finally, I discovered that turning on the controller is less than intuitive. Batteries are included, and simple enough to insert. There is a nice sticker with the finger-pointing-hand icon pointing right at the Xbox 360 semisphere button. The message was clear enough: "Press this button to make this thing work." Nope. I pressed it. I pressed it again. Nothing. I unwrapped the second controller that EBGames so kindly packaged for me, and had the same result. Those damned things wouldn't turn on - no lights, no nothing. It was several minutes before I discovered that you need to hold the button down for several seconds before controller will turn on. I even resorted to RTFM, and still didn't find this crucial tidbit of info. That sucked for a while.

    Played PD0 first - no real issues. When I first inserted Project Gotham Racing, however, I saw a nice error screen that told that in order to play this game I must insert it into a Xbox 360 console. I thought that was what I did, but I ejected it and inserted it again just in case. It played the second time around, but when I was done and ready to try out Call of Duty 2, the Xbox 360 just went to a black screen, not the dashboard. Inserting a new disc did nothing - I tried all 4 of them. I had to turn the console off and back on again before it would recognize a game. What the hell? I felt like blowing on the disc and in the tray for old time's sake.

    I could gripe a bit about how counterintuitive it is to get a second player to join in games, but I'll chalk that up to my lack of experience with the new interface...

    After wading through most of the nonesense, I had a pretty good time my first night with the new system, but damn was it a rough start. The games are pretty fun (PDZ, PGR3, CoD2, Kameo), but at no time did I feel completely blown away by the graphics or the gameplay. Kameo is probably the best of the bunch. I fully expect to encounter more glitches, but there is little chance that I'll send the system away for repairs at this point when most people can't even get their hands on one until next year. That would just be insensitive.