Slashdot Mirror


Lost Opportunity? Windows 10 Has the Same Minimum PC Requirements As Vista

MojoKid writes Buried in the details of Microsoft's technical preview for Windows 10 is a bit of a footnote concerning the operating system's requirements. Windows 10 will have exactly the same requirements as Windows 8.1, which had the same requirements as Windows 8, which stuck to Windows 7 specs, which was the same as Windows Vista. At this point, it's something we take for granted with future Windows release. As the years roll by, you can't help wondering what we're actually giving up in exchange for holding the minimum system spec at a single-core 1GHz, 32-bit chip with just 1GB of RAM. The average smartphone is more powerful than this these days. For decades, the standard argument has been that Microsoft had to continue supporting ancient operating systems and old configurations, ignoring the fact that the company did its most cutting-edge work when it was willing to kill off its previous products in fairly short order. what would Windows look like if Microsoft at least mandated a dual-core product? What if DX10 — a feature set that virtually every video card today supports, according to Valve's Steam Hardware Survey, became the minimum standard, at least on the x86 side of the equation? How much better might the final product be if Microsoft put less effort into validating ancient hardware and kicked those specs upwards, just a notch or two? If Microsoft did raise the specs a notch or two with each release, I think there'd be some justified complaints about failing to leave well enough alone, at least on the low end.

554 comments

  1. Why still 32bit builds? by Anonymous Coward · · Score: 1

    That needs to go windows server dumped them years ago.

    1. Re:Why still 32bit builds? by tepples · · Score: 2

      Because there are still tablets and small laptops with less than 4 GB of RAM. For what workloads do the extra general purpose registers of x86-64 outweigh the cache hit from larger pointers?

    2. Re:Why still 32bit builds? by Nethemas+the+Great · · Score: 3, Informative

      It has nothing to do with what is being run on these diminutive machines, it has to do with the needless complexity of supporting two architectures. The end user wouldn't know the difference, but it would lighten the burden for all software developers whether writing Windows, or software targeting Windows.

      --
      Two of my imaginary friends reproduced once ... with negative results.
    3. Re:Why still 32bit builds? by tepples · · Score: 2

      The end user wouldn't know the difference

      Other than that pointer-intensive 64-bit programs run more slowly than pointer-intensive 32-bit programs because of all the cache misses.

    4. Re:Why still 32bit builds? by Anonymous Coward · · Score: 0

      Beacuse people might be tempted to try linux rather than upgrade?

    5. Re:Why still 32bit builds? by Anonymous Coward · · Score: 0

      Yes the end user totally notices this.

    6. Re:Why still 32bit builds? by BradMajors · · Score: 1

      Non-portable software is bad software. Developers who are burdened by writing portable software are bad developers.

    7. Re:Why still 32bit builds? by fredprado · · Score: 1

      Sure he does. Performance drops are exactly what the end user notices.

    8. Re:Why still 32bit builds? by Anonymous Coward · · Score: 0

      I bet a 32-bit user would immediately find the difference if he or she tried running a binary compiled for 64 bits.

    9. Re:Why still 32bit builds? by Anonymous Coward · · Score: 0

      Citation on user noticeable difference? Maybe on synthetic benches but not in any real world scenario.

    10. Re:Why still 32bit builds? by K.+S.+Kyosuke · · Score: 1

      Is there any reason why 32-bit compressed pointers shouldn't work in properly designed 64b systems? That way, you could have both on x86-64. (Or, you know, simply use ARM...it's been around for decades by now.)

      --
      Ezekiel 23:20
    11. Re:Why still 32bit builds? by K.+S.+Kyosuke · · Score: 2

      In those parts where you actually care about top cache performance, if you're using a "lower-high-level" language such as C or C++, you might not even want to use pointers and rather use some custom information encoding to squeeze as much useful information into a single cache line as you can.

      --
      Ezekiel 23:20
    12. Re:Why still 32bit builds? by tepples · · Score: 2

      Are you trying to claim that, for example, only bad software can be written in the Swift language because it isn't implemented anywhere but on Apple hardware?

    13. Re:Why still 32bit builds? by Megol · · Score: 1

      And yet it is likely the software you write isn't really portable. Getting portable code isn't easy at all.

    14. Re:Why still 32bit builds? by dosius · · Score: 1

      Probably to entice the last few (million) XP holdouts.

      --
      What you hear in the ear, preach from the rooftop Matthew 10.27b
    15. Re:Why still 32bit builds? by beelsebob · · Score: 1

      But the average case application runs more quickly due to the increased number, and size of registers, and increased number of operations that are guaranteed to be available on the CPU.

    16. Re:Why still 32bit builds? by Anonymous Coward · · Score: 0

      I don't understand. If portable software is good, then why are the devs who write portable software bad devs?

    17. Re:Why still 32bit builds? by neokushan · · Score: 1

      I agree with this, they said Vista would be the last 32bit Windows OS, then 7, then 8 and now apparently 10.

      However I suppose they're trying to kill off 8 as quickly as possible. Everyone on 8 and 8.1 is getting upgraded to 10, so it may as well be 8.2 and I'm guessing that Microsoft would rather keep their updates in sync than half half of their userbase on 8 and the other half on 10.

      --
      +1 IDisagreeSoHeMustBeATrollOrAnAstroturferOrAShill
    18. Re:Why still 32bit builds? by Ottibus · · Score: 1

      For what workloads do the extra general purpose registers of x86-64 outweigh the cache hit from larger pointers?

      Almost every workload, I would imagine, because those extra registers significantly reduce the need to go to the cache in the first place and can increase the IPC. If you are using so many pointers that the size in the cache is significant then your workload probably has so much code and data divergence that cache occupancy is not the limiting factor on performance.

      But if you have some figures that contradict this I'd be interested in seeing them.

    19. Re:Why still 32bit builds? by exomondo · · Score: 1

      Other than that pointer-intensive 64-bit programs run more slowly than pointer-intensive 32-bit programs because of all the cache misses.

      The more cache misses are in general balanced out by fewer cache accesses on 64bit systems, really the only place you're going to see a tangible difference is in the numbers on synthetic benchmarks. Anything doing significant floating point calculations is going to be a lot faster on 64bit than 32bit. I know you're saying "pointer-intensive" 64bit programs run more slowly but could you quantify "more slowly" and give an example? It doesn't seem like a likely real world situation given the other advantages of 64bit architectures.

    20. Re:Why still 32bit builds? by nashv · · Score: 1

      So, because this is a Microsoft product, having a choice of 2 bit-depths is a problem? /sarcasm.

      And no, unlike Linux , where 64-bit builds need to be prepared for 64-bit OSes because of differences in the way some libraries work and directory structure, 32-bit Windows architechtures run fine on 64-bit Windows.

      If you, as a developer, don't want to support "two architechtures" , just make a 32-bit build and be done with it. Everyone can use it.

      --
      Entia non sunt multiplicanda praeter necessitatem.
    21. Re:Why still 32bit builds? by gargleblast · · Score: 1

      Other than that pointer-intensive 64-bit programs run more slowly than pointer-intensive 32-bit programs because of all the cache misses.

      Donald Knuth was wrong. The cache hit problem is of minor significance. Most programs use 10% or less of memory for pointers and 90% or more for data. Most (but not all) of the others have an infrastructure problem. Most often, it is poor choice of language.

    22. Re:Why still 32bit builds? by tepples · · Score: 1

      Let me rephrase how I understood the comment by BradMajors: Developers who find portability to be a burden are bad developers.

    23. Re:Why still 32bit builds? by unixisc · · Score: 1

      Because there are still tablets and small laptops with less than 4 GB of RAM. For what workloads do the extra general purpose registers of x86-64 outweigh the cache hit from larger pointers?

      That's not a compelling reason to have two code bases. Indeed, in Windows 7 itself, the need to support 32-bit went away. By now, it should be history.

      Microsoft really has no reason to chase small laptops anymore, and even as far as tablets go, their own ones don't have anything less than 4GB. Android already owns the low end tablet market

    24. Re:Why still 32bit builds? by mschwanke97402 · · Score: 1

      There are still instances where some old 32 bit business program, that can't be updated or replaced, works nicely in a 32 bit environment and not so much in 64 bit WIndows.

    25. Re:Why still 32bit builds? by unixisc · · Score: 1

      I went to PC-BSD after using 8 for 4 days. However, with 10, the difference is that while in laptop mode, it's absolutely like 7, and only gives us the Metro interface (I refuse to call it 'modern') when the keyboard is removed, or one touches the screen. But if you got a non-touch laptop with a non-removable keyboard, it would only give you the Metro interface if you actually want it!

    26. Re:Why still 32bit builds? by Redmancometh · · Score: 0

      Writing a program of appreciable complexity in C is a massive pain in the ass without pointers. It is also beyond the ability of junior C developers.

      In fact I don't know how you'd do any complex abstraction without function/struct pointers.

      Also pointers can be highly performant when used properly...

    27. Re:Why still 32bit builds? by Gadget_Guy · · Score: 1

      I agree with this, they said Vista would be the last 32bit Windows OS, then 7, then 8 and now apparently 10.

      Who supposedly said this? It certainly wasn't Microsoft.

      However I suppose they're trying to kill off 8 as quickly as possible.

      No, the scheduled late-2015 release of Windows 10 will put it at the standard time frame for release dates. Look at the number of days between recent Windows versions: Vista: 996, Windows 7: 1100, Windows 8: 1091 (estimated). Every release some people claim that Microsoft are rushing out a new version, but this is only because they are comparing the OS lifespan to XP, which was artificially long.

      Everyone on 8 and 8.1 is getting upgraded to 10, so it may as well be 8.2

      No, that was just a silly rumour. There is no doubt that Microsoft will do a special upgrade deal just like they did for Windows 8. If they didn't make Windows 7 free after Vista, why would they do it this time around? Surely those people who really dislike the version of Windows that they are using will be more motivated to give Microsoft money to upgrade than others, so why wouldn't they take it?

    28. Re:Why still 32bit builds? by tepples · · Score: 1

      Microsoft really has no reason to chase small laptops anymore

      I'm not sure what you mean by this.

      Android already owns the low end tablet market

      Who owns the low end detachable laptop market, or the 10" laptop market at all? And yes, multi-window operation works even on such a small screen because an 80 column source code window and an 80 column output window for comfortably side by side. Or try this sound bite: Why does the calculator app on Android fill the screen instead of floating like the 1984 Mac's calculator did?

    29. Re:Why still 32bit builds? by ChunderDownunder · · Score: 1

      Because Windows RT runs on ARMv7, so the code remains 32 bit clean.

      If a handful of people wish to run Windows 10 on their 10 year old Athlon XP/Pentium 4, they can.

    30. Re:Why still 32bit builds? by Anonymous Coward · · Score: 1

      If we were talking about Hello World, then I'd agree. But we're talking about an _operating system_. An operating system's responsibility is to talk directly to hardware, so there is going to be some code that, no matter how well written, simply won't work on all the supported hardware.
      As a result there is a non zero cost to supporting different hardware.

      Whether it's a significant cost is another matter - obviously Microsoft currently think it's a worthwhile cost, but you can't claim that if only they were better programmers it'd be non existent. It does exist.

    31. Re:Why still 32bit builds? by K.+S.+Kyosuke · · Score: 1
      In an actual strongly-typed language, this shouldn't be a problem since even representation switching can be handled there. Well, when it comes to C, at least you can profile the thing and only then pull out the big guns (and non-junior C programmers) only when necessary. It's all YAGNI, until it isn't YAGNI.

      In fact I don't know how you'd do any complex abstraction without function/struct pointers.

      In general case, I'd agree. But when you hit performance bottlenecks, after doing all the usual stuff, what you're facing are probably fairly specific problems. Then you have to use your brain.

      Also pointers can be highly performant when used properly...

      And by "used properly", you mean "used seldom on 64 bits"? ;-)

      --
      Ezekiel 23:20
    32. Re:Why still 32bit builds? by Goalie_Ca · · Score: 1

      Actually, 64-bit memory allows for better security. You can randomize the memory layout of a program much better with more space.

      --

      ----
      Go canucks, habs, and sens!
    33. Re:Why still 32bit builds? by omfgnosis · · Score: 1

      Portable to what?

    34. Re:Why still 32bit builds? by Barsteward · · Score: 1

      Not the ordinary user. I've seen people suffer really slow machines due to the build up of crap spyware etc and they still plow on regardless because they think that is the way it is. i've cleaned some of these machines when i've seen them and had the time. They eventually goes back to being slow again and they still wait for me to turn up someday to fix them again, they don;t call and say "its gone slow again, can you help"

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    35. Re:Why still 32bit builds? by arglebargle_xiv · · Score: 1

      Citation on user noticeable difference? Maybe on synthetic benches but not in any real world scenario.

      Exactly. The reason why MS has kept the baseline constant since Vista came out is because that's about all the typical user needs. Whether you have a 2006 machine with the CPU idle 95% of the time or a 2014 machine with the CPU idle 99% of the time doesn't make any difference to Joe/Jane Sixpack browsing the web, reading email, and updating their Facebook page. Now admittedly sometimes they may really load the machine down and fire up Word, so the CPU is only 92% idle, but that's the exception.

      This is also why the PC market has been stagnant for the last five years or so. Despite the constant predictions of pundits that "the PC is dead, tablets are taking over", the real issue is that there's no need to upgrade every two years any more. If you're a typical user (so not a Slashdot reader) and you bought a PC in the last five years you can just keep on using it until it physically wears out. It'll do everything you need to do with loads of capacity to spare.

      (Typed on my not-so-new laptop with its CPU clock-throttled to 800MHz, and 97% idle).

    36. Re: Why still 32bit builds? by Anonymous Coward · · Score: 0

      Supporting multiple architectures makes code better. It keeps the structure of the code more abstracted and portable. It nakes the code easier to maintain over the long term. NetBSD demonstrates this point.

    37. Re: Why still 32bit builds? by slasher999 · · Score: 1

      I agree the difference in performance would be imperceptible to the average and many "above-average" users especially if they move from a 32bit OS to a 64bit OS at the same time they move from a processor that is a couple generations old to a newer - for example - i3 or i5 machine. I believe the same would be true in the mobile device world where there are still leaps in performance being made in each processor iteration. Factor in increased memory speed and the performance drop that does exist becomes more imperceptible.

    38. Re:Why still 32bit builds? by Blaskowicz · · Score: 1

      Windows needs to support both amd64 and ARM 32bit, soon ARM 64bit.
      So there are already multiple architectures + 32bit vs 64bit.

    39. Re:Why still 32bit builds? by Blaskowicz · · Score: 1

      That's not a compelling reason to have two code bases. Indeed, in Windows 7 itself, the need to support 32-bit went away. By now, it should be history.

      I really don't understand what you say there. Win 7 32bit allows to use XP drivers, and then it runs on Athlon XP, Pentium 4 etc.
      It's absolutely needed and with EOL XP, Microsoft would have had to tell users to junk their hardware or switch to linux.

  2. forgettiing by present_arms · · Score: 5, Informative

    As the years roll by, you can't help wondering what we're actually giving up in exchange for holding the minimum system spec at a single-core 1GHz, 32-bit chip with just 1GB of RAM. The average smartphone is more powerful than this these days

    They're forgetting that Vista ran like shite on those specs :) and NO smartphones are not more powerful, although they are close to atoms at similar speeds now.

    --
    http://chimpbox.us
    1. Re:forgettiing by Anonymous Coward · · Score: 1

      Indeed, most (even older) Atom CPU's are much faster still compared to ARM cpu's.

      The only difference being that the OS and Software is optimised for low-spec hardware, and you have specialised area of the CPU for video decoding etc, and that's why apps and web sites are super fast to respond.

      Windows (in comparison to iOS and Android) is a beast and requires far far more memory and cpu power, not to mention an absolutely dreadful battery life (power management is still one of the biggest weaknesses of Windows - although improved significantly in Win8).

      And although Windows may appear to run fine on only 512mb or 1gb of ram, you basically can't run anything else on top of that - compare this to Windows 2000 or Windows XP (which are still surprisingly more power-efficient compared to Windows 8), and they require significantly less memory.

    2. Re:forgettiing by Anonymous Coward · · Score: 0

      Not to mention smart phones are a great example of how bloated things become once requirements are already in a reasonable range and get bumped up more.

    3. Re:forgettiing by K.+S.+Kyosuke · · Score: 1

      Indeed, most (even older) Atom CPU's are much faster still compared to ARM cpu's.

      Per joule? Frankly, I'd expect something like that only from the newest ones.

      --
      Ezekiel 23:20
    4. Re:forgettiing by Megol · · Score: 1

      You are adding a constraint the OP didn't specify...

    5. Re:forgettiing by K.+S.+Kyosuke · · Score: 1

      But in battery-powered devices, the constraint has already been there for many years. I'm just making sure that his understanding of the word "performance" is the same as the understanding of people working in the mobile computing industry.

      --
      Ezekiel 23:20
    6. Re:forgettiing by Anonymous Coward · · Score: 0

      I have an older Atom netbook, and a Samsung S5. I play chess sometimes. The phone gets about 200 kilonodes per second more than the netbook. Note that chess analysis is mostly testing single-core performance. For multithreaded applications, there is no comparison: remember, the early Atoms were single-core, in-order processors.

      Generally, memory utilization by the OS is a good thing; unused memory is wasted memory. Did you have some other measure that says that Win6+ has performance issues?

      Btw Windows XP performance is as relevant to this discussion as MS DOS. I am no fan of Microsoft or their spawn, but they have improved pretty much every aspect of their OS since XP, from security, to sound, to the driver architecture, color, caching, browser compatibility, and did I mention security? Because if there's one thing that XP absolutely fails at, it would be that. So what if it doesn't do as much -- that's not the feature you think it is.

    7. Re:forgettiing by Guspaz · · Score: 1

      If memory serves, when Apple's A7 came out, benchmarks showed it as being faster than low-end Atom processors, and there are faster ARM chips on the market than the A7 now (including Apple's own revision of it, the A8). There's a lot of overlap in the performance spectrum between high-end ARM and low-end x86.

    8. Re:forgettiing by bytestorm · · Score: 1

      But such a constraint makes the comparison apples to apples. To further stretch the illusion of comparability consider an i7-4700MQ or similar. Same market segment (you find them in MS Surface Pros, that's a tablet, right?) but without the power constraint, at 45W that thing blows away pretty much any chip in either ARM or Atom lines. i7, atom, and arm are all different optimizations of price, performance, power. From what I gather, in the mobile segment, performance/power is pretty much king.

    9. Re:forgettiing by Bengie · · Score: 2

      Win8 functions quite a bit better than Vista on low memory. Not only does it use less memory by nearly 20%-30% to get a usable desktop, but it's much smarter about paging.

    10. Re:forgettiing by Anonymous Coward · · Score: 0

      Actually, lets take a look...

      Single core 1GHz (we'll give it the benefit of the doubt, and make it a CoreSolo, the fastest 1GHz chip ever made): http://browser.primatelabs.com...
      That scores 443/440 for multithreaded/single threaded respectively on geek bench.

      A modern mobile phone: http://cdn.macrumors.com/artic...
      That scores 2920/1633 respectively.

      So yes, a current mobile phone is much more powerful than a 1Ghz single core machine. In fact, it's roughly as powerful as a 3Ghz Dual core: http://browser.primatelabs.com...

    11. Re:forgettiing by Anonymous Coward · · Score: 0

      Not true, you're underestimating how much CPUs move on in a few years. A Core Solo 1GHz scores 440/440 on Geekbench (which is a pure number crunching benchmark), compared to Apple's latest iPhone CPU (the A8) which scores 2970/1633. Compared to an early atom, things are even worse –they score only 373 at single threaded operations.

      Basically, no, current phone CPUs are about as fast as desktop CPUs from 2008 (a 3Ghz Core2Duo scores roughly the same as a current iPhone).

    12. Re:forgettiing by jedidiah · · Score: 1

      >> Indeed, most (even older) Atom CPU's are much faster still compared to ARM cpu's.

      > Per joule? Frankly, I'd expect something like that only from the newest ones.

      I don't give a damn about that metric. I want to get things done. I don't want to have to outsource things like voice recognition or any other type of app that the SoC designers didn't specifically account for.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    13. Re:forgettiing by jedidiah · · Score: 1

      Not really. Take VLC and turn off the hardware acceleration and watch the your battery levels quickly go to zero. ARM based mobile devices are crap for number crunching on battery power.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    14. Re:forgettiing by K.+S.+Kyosuke · · Score: 1

      Obviously, it's the point of hardware accelerators to prevent common tasks such as playing video from draining the battery. What exactly does this alone prove?

      --
      Ezekiel 23:20
    15. Re:forgettiing by K.+S.+Kyosuke · · Score: 1

      In that case, good performance per joule sounds precisely like the thing you want if your power envelope is fixed.

      --
      Ezekiel 23:20
    16. Re:forgettiing by K.+S.+Kyosuke · · Score: 1

      Generally, memory utilization by the OS is a good thing; unused memory is wasted memory.

      I believe that modern mobile memory chips can already selectively (through Partial Array Self Refresh) turn off unused parts to save power, and this is probably going to get used in the future in shipped devices and operating systems.

      --
      Ezekiel 23:20
    17. Re:forgettiing by jedidiah · · Score: 1

      The claim that ARM devices are better due to superior power usage is total nonsense. If you use them as general purpose devices, they will have equally horrible battery life. They have no real advantage over a faster machine.

      With a non-ARM device, I can stray off the reservation.

      The whole "general purpose" computing concept actually works and isn't effectively sabotaged by the poor performance of the platform.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    18. Re:forgettiing by Anonymous Coward · · Score: 0

      I also don't understand why we need an OS to consume more resources. It seems to me that the lighter the OS is, the better. We spend our time in applications, not the OS features. ChromeOS is onto something I think. IMO OP is asking a really stupid question here.

    19. Re:forgettiing by Anonymous Coward · · Score: 0

      So the conclusion is that the cutting edge of mobile processors today is faster than the baseline tech from a decade ago, not really impressive.

    20. Re:forgettiing by Anonymous Coward · · Score: 0

      People are forgetting that the Vista Requirements were why many crappy "netbooks" exist in the first place.

      Microsoft shouldn't need to raise the requirements, but should adjust the Windows Experience Index so that devices that don't hit a 5.0 are degraded to not running Aero.

    21. Re:forgettiing by Anonymous Coward · · Score: 0

      Well, his assertion was that "NO smartphones are not more powerful". So, I consider that case closed, YES, they are.

      Aside –a 3Ghz Core2Duo was cutting edge, near top of the line tech in 2010, so they're actually basically the same speed as only 4 year old desktop CPUs. Given that that desktop CPU consumed 80W, and the smartphone one is consuming 1W, that's pretty impressive progress.

    22. Re:forgettiing by Shirley+Marquez · · Score: 1

      They have already done this starting with Windows 7; only systems that can run Aero acceptably have it enabled by default. (Just about any current system can, even ones with Intel integrated graphics.) Vista, alas, always defaulted to having Aero on (it could be turned off in preferences), and many of the GPUs of the day were woefully inadequate to the task.

      Vista was also a memory hog compared to XP (partly because of Aero, partly because it liked to use a lot more RAM for disk cache, and partly just because), and lots of people were still using systems with amounts of RAM that are pitifully small by modern standards. Some XP systems had as little as 256MB, and few systems from the XP era shipped with more than 1GB. (I'm not counting systems that shipped with XP after Vista was available; those often had more RAM.) Each new version of Windows since Vista has improved memory efficiency (the jury is still out on Windows 10 since it's still a long way from RTM), so systems from the Vista era often run better with Windows 7 or 8 than they did with Vista. (The exceptions are ones with hardware that never got drivers for the later versions.)

    23. Re:forgettiing by Anonymous Coward · · Score: 0

      As the years roll by, you can't help wondering what we're actually giving up in exchange for holding the minimum system spec at a single-core 1GHz, 32-bit chip with just 1GB of RAM. The average smartphone is more powerful than this these days

      They're forgetting that Vista ran like shite on those specs :) and NO smartphones are not more powerful, although they are close to atoms at similar speeds now.

      Consider Africa, and parts of India and Asia. Electricity is expensive, and the computer likewise. In these places they continue to run XP or Linux on 1 gig boxes

    24. Re:forgettiing by Anonymous Coward · · Score: 0

      Nice fake score on the second link. Why didn't you just link to an official score? Why use Geekbench when there are better benchmarks out there that aren't biased towards Apple?

  3. Businesses don't want to spend money on PCs by the_l3pr3chaun · · Score: 4, Informative

    I have worked IT in Banking (twice) and Healthcare (once), in both neither company wanted to spend money on a desktop pc. They wanted the cheapest they could get. Businesses buy Windows. It is hopelessly annoying, but a fact of life.

    1. Re:Businesses don't want to spend money on PCs by techno-vampire · · Score: 0, Flamebait

      Businesses buy Windows. It is hopelessly annoying, but a fact of life.

      I know this isn't what you meant, but what I find annoying about this is the fact that they could install Linux for free, saving money (after whatever re-training costs are recovered) and allowing them to lower prices while increasing their profits.

      --
      Good, inexpensive web hosting
    2. Re:Businesses don't want to spend money on PCs by the_l3pr3chaun · · Score: 1

      Businesses buy Windows. It is hopelessly annoying, but a fact of life. I know this isn't what you meant, but what I find annoying about this is the fact that they could install Linux for free, saving money (after whatever re-training costs are recovered) and allowing them to lower prices while increasing their profits.

      I have to agree with you on that.

    3. Re:Businesses don't want to spend money on PCs by Anonymous Coward · · Score: 1

      You're looking at this backwards. The re-training would be an ongoing expense, where Windows is a one time hit. You're investing in a one time Windows expense, that you then make back with interest over the coming months and years by eliminating necessary re-training to be able to use an uncommon and unfamiliar OS.

    4. Re:Businesses don't want to spend money on PCs by Anonymous Coward · · Score: 0

      You're looking at this backwards. The re-training would be an ongoing expense, where Windows is a one time hit. You're investing in a one time Windows expense, that you then make back with interest over the coming months and years by eliminating necessary re-training to be able to use an uncommon and unfamiliar OS.

      Depending on the scope and your perspective of the topic, this could be completely BS. Many employees, especially in fields such as banking, require training on the application(s) they use. In some cases, those are just point of sale devices, where the OS choice doesn't one iota to the user. In many others, there are also custom applications and/or sites they need to learn, for which the OS also doesn't matter (except that it is able to run there, which you could argue is currently on windows, but the cost to change platforms could vary wildly and is often only expensive with targetted software that few users need - limited scope of windows required).

      Blah blah blah, my point is that re-training is only an expense for new hires, and if you're talking about an area with high turn over, then those users are (almost always) primarily using some custom software they need to be trained on anyway. They get a login/logout screen, and they go right into their app or click one of a handful of icons to start it - os doesn't matter in those cases.

    5. Re:Businesses don't want to spend money on PCs by K.+S.+Kyosuke · · Score: 1

      Would a carefully built Celeron G1840 box qualify as cheap? Basic PC desktops have never been more affordable. Even that should last you for years. And if you're not exactly penny wise and pound foolish, for extra $25, you can get almost 40% more performance with the G3258. Avoiding that doesn't exactly sound clever to me, especially if investing less than an employer's week's pay for his machine every five years or so can save you trouble along the road.

      --
      Ezekiel 23:20
    6. Re:Businesses don't want to spend money on PCs by Culture20 · · Score: 3, Insightful

      You're looking at this backwards. The re-training would be an ongoing expense, where Windows is a one time hit. You're investing in a one time Windows expense, that you then make back with interest over the coming months and years by eliminating necessary re-training to be able to use an uncommon and unfamiliar OS.

      Re-training is already an ongoing expense with Microsoft products. Office ribbon, Windows 8 tile screen, any slightest change in Windows XYZ where the ABC isn't in the same pixels on the screen or is renamed something intelligible. The biggest drawback isn't the training expense, it's the fear of incompatibility with other companies' software.

    7. Re:Businesses don't want to spend money on PCs by westlake · · Score: 1

      what I find annoying about this is the fact that they could install Linux for free, saving money (after whatever re-training costs are recovered) and allowing them to lower prices while increasing their profits.

      The Linux evangelist needs to take a long hard look at all the expenses needed to build and maintain an efficient and productive clerical staff --- which is likely to include a mix of full and part time workers, office temps, senior volunteers, and so on.

    8. Re:Businesses don't want to spend money on PCs by Anonymous Coward · · Score: 0

      Anyone who needs 'training' in this area should have any and all computer access rights revoked.

      Seriously, you train people on computers now?

    9. Re:Businesses don't want to spend money on PCs by Darinbob · · Score: 1

      I think home users are the same. No one wants to upgrade merely because software got fat and bloated. It's about time that we hold the line. The topic is just wrong, it wasn't an opportunity that was missed but perhaps sanity peeking a head out briefly.

    10. Re:Businesses don't want to spend money on PCs by Anonymous Coward · · Score: 0

      Jumping in here.

      I think the issue is that companies assume most people know, or can reasonably learn (before applying for the job) Windows and it's suite of software. Look at job requirements, and how often they say Windows or Excel as a requirement.

      While I don't think we necessarily need coding/programming in k-12, it wouldn't hurt to focus more on learning about hardware and operating systems. The latter for the case of encouraging companies to expand to non-Windows.

    11. Re:Businesses don't want to spend money on PCs by Anonymous Coward · · Score: 0

      Which goes to explain why Windows 7, a five-year-old OS, is the gold standard in most companies. By sticking to it, companies let users have something they will be familiar with, avoiding the retraining that a shift to Windows 8 might cause. So yes, there is a concern about training costs, too.

    12. Re:Businesses don't want to spend money on PCs by david_thornley · · Score: 1

      Microsoft offers "generally good enough" at reasonable prices, and this makes it an excellent choice for a company that's not heavily into strategic use of software. Linux is often not good enough, since it doesn't reliably run Windows software, and some software is available only on Windows. Moreover, Linux may not save money. Most computers arrive with a Windows OS and enough crapware to offset most of the Microsoft tax. Linux computers generally don't get the cost-reducing crapware, are generally not available in the same variety as Windows computers, tend to be a customer service pain, and don't sell in the same quantities, making them possibly more expensive than a similar machine with Linux installed.

      --
      "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  4. Buy a Mac by Ron024 · · Score: 2, Insightful

    If you want the PC that you've been using for the past 5 years that works perfectly well to stop being able to run the latest version of its OS well then it would be a Mac.

    1. Re:Buy a Mac by alvinrod · · Score: 1

      Or just any *nix. I've got some machines that are well passed that point that are still happy running recent versions of various Linux distros. They're obviously not the workhorses they once were, but they're still capable of running the latest versions of the OS (granted that doesn't include all of the bells and whistles that have been tacked on to the UI) and the only real reason to consider them obsolete is that over time it would be cheaper to replace them with a single machine running multiple VMs simply because the newer machine would consume far less power due to improvements in efficiency.

    2. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      My 1st-generation MacBook (2006) ran fine until this summer when the CPU fan gave up the ghost for a second time. I didn't bother to take it to the Apple Store for repair since some applications (*cough* Chrome *cough*) are no longer being updated because CPU is only 32-bit. Since I'm getting back into programming, I need a 64-bit Mac to run the latest and greatest.

    3. Re:Buy a Mac by nogginthenog · · Score: 4, Funny

      Why don't you get it fixed and install Windows 10 :-)

    4. Re:Buy a Mac by rafjaimes · · Score: 5, Insightful

      I think you misunderstood Ron024's comment, or maybe I did. He is saying newer versions of OSX are NOT compatible with older machines. You can get mostly any linux distro to run on any computer since like a Pentium 2 (dependent on DE/WM).

    5. Re:Buy a Mac by __aaclcg7560 · · Score: 2

      Let's do the math. Spend $130 to get the CPU fan replaced at the Apple Store (which was what it cost two years ago), and another $130 for a Windows 10 CD. That's $230. For about $300, I could get a used Mac that could run the current version of Mac OS X. I think the answer is obvious.

    6. Re:Buy a Mac by __aaclcg7560 · · Score: 4, Funny

      Wrong answer. OS X is a much nicer operating system than Windows. Nice to see that Win8 is finally catching up to OS X. So much so that the next version of Windows is WinX!

    7. Re:Buy a Mac by Anonymous Coward · · Score: 0

      Spoken like somebody who never actually tried it. A 386 is all you need for a stock kernel, but the mobo that supports that is
      highly likely to not support a sufficient amount of RAM to load even a 2.6 kernel.
      Even so, run is one thing, be usable is another. I can remember installing win95 on a 486 with 4Mb RAM. It ran, but was useless.

      "Linux is light" was inaccurate 10 years ago and it's sure not now.

    8. Re: Buy a Mac by Anonymous Coward · · Score: 0

      Even closer, 130$ + 130$ = 260$

    9. Re: Buy a Mac by __aaclcg7560 · · Score: 1

      Macs before 2009 can't run the current version of OS X. For $129, I could get a 17" iMac, pull the memory and SSD from my MacBook, and continued running Snow Leopard. However, it will still be an obsolete 32-bit system running an older OS that everyone is dropping support for because its not 64-bit. Buying a more recent used Mac to run the current OS X would be more cost effective.

    10. Re:Buy a Mac by Anonymous Coward · · Score: 1

      I believe that's only true for Macs from around 6 or 7 years ago. IIRC, Macs from something like 2007 or 2008 and on works just fine on the latest. I'm using a 2009 MB Pro and it runs great on Mavericks (and probably will be fine on Yosemite)

    11. Re:Buy a Mac by LordLimecat · · Score: 1

      Whether its nicer is a matter of personal taste, but IMO you have to be loaded or have really poor financial decisionmaking to drop an extra grand on a piece of hardware just because the OS it comes with is "nicer".

    12. Re:Buy a Mac by Anonymous Coward · · Score: 0

      Doubly wrong. Get a Mac and throw Linux on it.

    13. Re:Buy a Mac by Mr_Wisenheimer · · Score: 1

      I guess it depends on what you consider "nice". The last time I bought a laptop, I was in school, and OS-X was not compatible with simple tasks that I wanted to do, like take notes while recording lectures. I haven't kept up with the latest, but I still don't think any OS-X device supports basic interfaces that MS has supported out of the box for the better part of two decades like handwriting conversion, active digitizers, touchscreens, handwriting-to-equation conversion, et cetera.

      Even if you could hack OS-X to support such basic features, I don't believe Apple makes any touch-screen or active-digitizer enabled ultrabooks or laptops/tablets which support such input.

      From my experience, NT has been far ahead of OSX since at least 2002. They're both stable kernels, but there is no question that in terms of operating system features and legacy support, there is a lot more money poured into Windows development than OS-X.

      Now granted, the average user probably does not care about these things. Most people these days are happy with a little toy tablet like a Galaxy or an iPad, but for the rest of us, we care about the features that OSX does not have.

      Not to say it is a bad operating system or inferior to Windows, just that it seems to be designed on a completely different philosophy (make the OS work well for the average consumer on a particular piece of hardware that Apple manufacturers) rather than the more general market (especially enterprise market) that Microsoft targets.

    14. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      you have to be loaded or have really poor financial decisionmaking to drop an extra grand on a piece of hardware

      You need $300 for a used "late 2009" Mac to run the current OS X version. Considering that I spent $1,200 on a brand new Black MacBook (yes, I paid the extra $200 premium to get it in black) in 2006 that lasted eight years (or $150 per year), it was a good investment. Apple computers are quite durable.

    15. Re: Buy a Mac by Blaskowicz · · Score: 1

      But with a 32bit CPU, SSD and nice RAM (3 or 4 GB?) if you install Windows or Linux you'd have a fully up-to-date system. A bit lacking in RAM, sure (Chrome will easily eat well over 3GB if you don't restrict your browsing, so a 64bit OS and machine are needed for that reason)

    16. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      there is a lot more money poured into Windows development than OS-X.

      Also a lot more money being poured to fix the problems with Windows in the enterprise environment. As a security remediation technician, I get paid to deal with all the problems that Windows causes when it can't get patched, the anti-virus doesn't get updated, and users install out-of-baseline software that opens the network to new vulnerabilities. Thanks to Microsoft, I have job security. I can't say the same with Apple.

    17. Re: Buy a Mac by Bogtha · · Score: 1

      Macs before 2009 can't run the current version of OS X.

      Yosemite, which is the version that Apple are just about to release, runs on plenty of Macs released in 2007. The same goes for the current version.

      --
      Bogtha Bogtha Bogtha
    18. Re: Buy a Mac by Guspaz · · Score: 1

      OS X Mavericks explicitly lists support for the 2007 iMac, the 2007 MacBook Pro, the 2008 or newer MacBook Air, and the 2008 or newer Mac Pro. All older than 2009.

    19. Re: Buy a Mac by __aaclcg7560 · · Score: 1

      I was looking at the used computer listings at Other World Computing. The used Macs they list for sale that supported Mavericks/Yosemite came out in 2009 or later. Doubling checking their listing against the Wikipedia list you provided, none of the 2007 Macs they have are compatible with Mavericks/Yosemite.

    20. Re:Buy a Mac by ericloewe · · Score: 1

      More popular OS gets more attention from exploit and virus coders. News at 11.

    21. Re: Buy a Mac by __aaclcg7560 · · Score: 1

      You still need Apple drivers to run Windows. My 2006 MacBook could run Windows XP back in the day. Not sure if it could Windows Vista or later. Why would I run Windows on the MacBook when I have PC with 3X the hardware specs?

    22. Re:Buy a Mac by ClaraBow · · Score: 1

      So not true! My 2008 MacBook Pro is fully 64bit and still runs the latest OS and will run the forthcoming OSX release.

    23. Re:Buy a Mac by __aaclcg7560 · · Score: 2

      Never mind that Apple computers and devices are surging in the enterprise enivornment because it has more secured OS unlike a more popular OS that provides me job security.

    24. Re:Buy a Mac by Anonymous Coward · · Score: 0

      Are you for real?

      You'd save a grand to not run the software you actually want to run?

    25. Re:Buy a Mac by MaWeiTao · · Score: 1

      My iMac is stuck at 10.7 despite being a 64-bit Intel machine. Some random component inside that machine, related to the BIOS if I remember correctly, is not 64-bit and so I'm locked out of future updates. It sucks, but then OSX and specifically browser performance has degraded with every update. I have a PC that's about the same age, maybe a bit older, running Windows 8.1 flawlessly.

    26. Re:Buy a Mac by Anonymous Coward · · Score: 0

      I prefer OS X if not only because it is based on some version of *unix and thus, at least somewhat, follows a standard that many others follow. If Mac OS X was bigger, like windows, and actually supported all hardware out there, i might actually consider buying it, but since it doesn't and Mac hardware is garbage, i will stick with Linux/Windoz. I hate Apple's decision to only support a subset of the hardware out there, like it's the best choice and we can't think for ourselves.

    27. Re:Buy a Mac by ericloewe · · Score: 1

      [Citation Needed]

      Up until recently, OS X severely lagged behind Windows in several security features. IIRC, it took Mavericks to bring it up to feature parity (or close). There is nothing about OS X that makes it inherently more secure than Windows.

      As for the linked article, moving to a "closed" OS is the cheap and lazy way to protect against some things. The same has long been done on Windows, by the more paranoid admins. It does not solve any underlying issues - if anything, incentives to actively seek out issues are reduced.

    28. Re:Buy a Mac by __aaclcg7560 · · Score: 2

      Top 10 Most Secure Operating Systems

      Mac OS X is number three. Windows 8 is number six.

    29. Re:Buy a Mac by jedidiah · · Score: 1

      ...then you use an older version of Linux.

      Your argument ad extremism doesn't alter the fact that Linux is more likely to be supported on old but still useful Macs. This even includes Intel based machines. I had one of those myself.

      It was an Apple orphan but Linux still supported it perfectly fine. Windows probably did too.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    30. Re:Buy a Mac by Mr_Wisenheimer · · Score: 1

      In high security environments (i.e. systems that handle sensitive or classified information) it is still mostly Windows machines, with servers running hardened *nix or Windows.

      Windows also has pretty adaptable and sophisticated tools that system administrators can use to force security policies for client machines whereas, to the best of my knowledge, similar OSX tools are completely absent or third-party add-ons.

      Several times groups have looked at how long security flaws exist before getting patched, and OSX has consistently lagged behind Redhat and Windows clients.

      The adoption of Apple Computers in the corporate environment seems to have more to do with it's penetration into the consumer market (i.e. home and academic use) in the US and other first world countries than anything to do with security. I haven't seen any evidence that it is being adopted by enterprise users, especially those that handle classified information, due to security. Rather, it tends to be banned from such environments because it is harder for network security officers to lock down and manage.

    31. Re:Buy a Mac by Mr_Wisenheimer · · Score: 1

      That's a corporate blog page that simply made a list with no actual explanation of what tests or methodology they used to generate the list.

      You seem to have done nothing but link the first site that confirms your bias without any deeper research.

      Right now, OSX is only running on around 1% of PC's worldwide, so doubtlessly it is "more secure" in the sense of obscurity, since exploits are less likely to be found and pursued.

      That does not mean that it is inherently more secure than Redhat or Windows, or that when hardened with good security policies, is more secure than Redhat or Windows, or that it is easier to make secure.

      Most of the security advantages that OSX had that were not originally in Windows NT operating systems (like elevating user privileges) have been incorporated into the 6.0 or later kernels, so perhaps it is true that OSX was more secure than the first release of XP, but that does not necessarily carry over to the newest Windows clients with the latest patches.

    32. Re: Buy a Mac by tepples · · Score: 1

      Which isn't very helpful if your Mac happens to be a Mac mini.

    33. Re:Buy a Mac by __aaclcg7560 · · Score: 2

      The adoption of Apple Computers in the corporate environment seems to have more to do with it's penetration into the consumer market (i.e. home and academic use) in the US and other first world countries than anything to do with security. I haven't seen any evidence that it is being adopted by enterprise users, especially those that handle classified information, due to security. Rather, it tends to be banned from such environments because it is harder for network security officers to lock down and manage.

      Many of the Silicon Valley companies I previously worked at are adopting Apple computers because its a mainstream operating system with a underlying BSD kernel. For programmers and engineers with a Linux/Unix background, a Mac laptop is a lot easier to use than a jury-rigged Windows laptop. Security at the corporate level has nothing to do with security at federal level.

    34. Re: Buy a Mac by Guspaz · · Score: 1

      It's not, but the statement was "Macs before 2009 can't run the current version of OS X".

      The reason the earlier Mac Mini isn't supported is apparently due to the lack of a 64-bit driver being available for the Intel GMA 950 used. It's probable that by the time a 64-bit driver was needed (the move to Mountain Lion) in 2012, those mac minis had been out long enough that they didn't consider it worth writing a new driver to get them supported.

      There are, however, workarounds to install Mountain Lion and Mavericks on those machines. Unfortunately, while it's possible to get Mountain Lion running relatively stably, Mavericks isn't very stable on them.

      Those older Mac Minis aren't entirely useless, though. They run Windows 7 and 8 just fine via BootCamp :)

    35. Re:Buy a Mac by ericloewe · · Score: 1

      Just because a random guy publishes a list with no explanation doesn't mean he's right.

      How about a reputable citation?

    36. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      I'll try to remember that when the Nessus scan kicks out a spreadsheet of 800+ Windows vulnerabilities that I need to remediate for this week.

    37. Re:Buy a Mac by Mr_Wisenheimer · · Score: 3, Interesting

      OS-X has penetrated into the market for highly sophisticated technical and scientific users forr easons which have nothing to do with security, but rather because such end users generally have their own choice of machines and often prefer OS-X for the reasons you listed.

      Of course, in my own experience, getting open-source UNIX scientific software to work correctly on OS-X is often just as difficult as getting it to work under Windows with a UNIX emulator and SSHing into or virtualizing a Linux machine is my preferred solution, at least for a desktop computer.

      More obscure programs not in standard Linux repositories tend to be equally painful to get set up on Cygwin, Linux, and OS-X, although at least commercial software like Matlab and Mathematica are much more easily set up on Windows or OS-X than Linux.

    38. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      If you don't like my citation, go find your own. I'm not your personal researcher.

    39. Re:Buy a Mac by exomondo · · Score: 1

      You can get mostly any linux distro to run on any computer since like a Pentium 2 (dependent on DE/WM).

      The operating system, yes. But nobody wants to just run an operating system, even just a simple modern web browser consumes more resources than those older systems have available.

    40. Re:Buy a Mac by ericloewe · · Score: 1

      You're the one making outrageous claims, so don't expect people to believe you unless you have proof to show.

    41. Re:Buy a Mac by exomondo · · Score: 1

      Yes clearly a reliable source that one, a real bastion of knowledge. Comparing "Linux" (which is just an operating system kernel) to OSX, Windows, Solaris, etc... As though all Linux-based operating systems are equal in security. So we are to believe Android is more secure than OSX too? After all that's Linux. Seriously what bunch of morons comes up with a list like that?

    42. Re:Buy a Mac by Anonymous Coward · · Score: 0

      You're missing the point. The reason to have the same required specs now as Vista is that there's nothing that's changed in the hardware that mandates a change. Touchscreens work perfectly fine as an option, USB3 is also optional and useful. Having a better filesystem would be great, but that's about the only thing I can think of that might necessitate an upgrade to the recommended specs. And I highly doubt that MS is going to adopt ZFS for its operating system. Even though they should.

      MS really needs a new model because there's not really anything special about 7, 8 or 10 that you couldn't do on Vista or XP. There's a bit of new hardware support and not much else. The things one needs in order to make productive use of a computer have mostly been implemented years ago at this point.

      Lastly, there's opportunity cost and energy expenditures that apply when you bump the system requirements. Having the OS take up less of those means that they're available for productive use on whatever projects you're doing.

    43. Re:Buy a Mac by LordLimecat · · Score: 1

      I bought a brand new HP Probook in 2011 with a Sandy bridge CPU for $450; you paid 2/3 of that for a 5 year old computer with a crappy processor. In what world is that reasonably sane?

    44. Re:Buy a Mac by LordLimecat · · Score: 1

      I have a 2011 HP Probook with Win7 that I like quite well. As a bonus it lets me upgrade RAM without paying an arm and a leg, get the latest SSD for ~$180, and easily bridge NICs without a bunch of hoops (dont actually know how hard it is to bridge in OSX, but I havent seen that option).

      Im not sure what yall are doing with your computers to create such problems when you use windows, but I can assure you that having done volunteer work on hundreds of laptops people manage to screw up Macbooks just as badly as Windows laptops, if not worse (because they think "indestructable" means you can use a macbook as a door wedge or some such).

    45. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      Slashdot exist to provide me amusement while I'm waiting at work for the tier three technician to explain why he pooch-screwed the server (again). I never take anything on Slashdot seriously. If I did, I'll post as an AC. ;)

    46. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      In what world is that reasonably sane?

      Because what I do day-to-day on the Mac doesn't require a better processor. OS X works so fantastically great that I don't have to think about the OS at all. I can spend more time on what I need to do. You don't have to think twice about a Mac.

    47. Re:Buy a Mac by Khyber · · Score: 1

      " Spend $130 to get the CPU fan replaced at the Apple Store (which was what it cost two years ago)"

      That you'll pay that much for a *FAN* that I can get for $0.50 on alibaba.com shows a lack of serious critical thinking in your choice of hardware.

      The labor on replacing the fan isn't even worth $10.

      And people wonder why I don't harbor much respect for Mac users.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    48. Re:Buy a Mac by Khyber · · Score: 1

      " Apple computers are quite durable."

      Yea, I was an Apple repair tech. Let me tell you just how wrong you are, starting with two out of three machines coming off the line faulty off the bat and needing to be refurbished.

      You aren't paying for the name, you're paying for the fuckups they have to constantly fix because they cheaped out on hardware.

      SIXTY SIX PERCENT FAILURE RATE OFF THE MANUFACTURING LINE.

      Then we got shipments of logic boards filled with SAND. Most of those logic boards were DOA.

      Son, you don't know what the fuck a 'durable' machine is. Your ass got *LUCKY* and there's no other way to put it.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    49. Re:Buy a Mac by Khyber · · Score: 1

      More secured OS? Which is why it's first to fall at any hackathon?

      Give me a break. Now you're starting to sound like a shill.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    50. Re:Buy a Mac by schnell · · Score: 1

      IMO you have to be loaded or have really poor financial decisionmaking to drop an extra grand on a piece of hardware just because the OS it comes with is "nicer".

      I guess it depends on how you define nice and what you do with the computer. My personal definition of "nicer" includes being reliable, not crashing often, and facilitating my work getting done quickly and without frustration. I get paid a pretty high hourly rate, so if my OS crashes and takes the filesystem with it, and I spend more than 6-8 hours with IT getting the system reimaged and restored, then presto - there's your $1000 right there. Just my anecdotal experience, but I have had the abovementioned experience with Windows PCs (Dell or HP laptops) several times in the past five years, and have not had that same experience with a Mac since 2001 (curse you MacOS 9 and your Extensions Manager).

      For other examples, I have enough OS X keyboard shortcuts, gestures and preferences options burned into muscle memory at this point that even spending that same several hours on relearning those things would offset my productivity by $1000 ... it's possible that relearning on a different OS would gain that productivity back over time if it were genuinely easier to use in repetitive use than OS X, but so far I just haven't found any other OS and/or WM where that's true. And while it sounds trivial, there are things like OS X being able to save any document from any application to PDF without using a plugin or other app where (for my personal workflow) the time saved easily outweighs the computer purchase price.

      Your mileage will of course vary, but for my $.02 the "niceness" of an OS can be worth a lot of money under certain circumstances, because time is more precious than money than me. For other people, money is more precious than time and their experience will logically be the opposite. So to each his or her own.

      --
      "95% of all Slashdot .sig quotes are incorrect or completely fabricated." -Benjamin Franklin
    51. Re:Buy a Mac by Khyber · · Score: 1

      So, IOW, your prior employers are moving to Mac because they lost the REAL programmers that can do this shit in a real programming language, like ASM.

      Gotcha.

      Meanwhile. I've got an OS that is feature-parity with OSX and fits on a floppy, with a bootup time FROM A FLOPPY faster than your 5,000x the size bloated OS.

      Son, if you only did *REAL* IT, you'd know better than to champion Apple *ANYTHING*

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    52. Re:Buy a Mac by Khyber · · Score: 1

      "Seriously what bunch of morons comes up with a list like that?"

      Apple users. 'Nuff said.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    53. Re: Buy a Mac by Khyber · · Score: 1

      "You still need Apple drivers to run Windows."

      That's right, ladies and gentlemen! You need SPECIAL DRIVERS in OSX to run BASIC HARDWARE ANY OTHER OS NATIVELY SUPPORTS OUT OF THE BOX, because it's a special version (with no extra features, it's just APPLE LOCKED BECAUSE APPLE OWNS YOU.)

      And this is why in a corporate network environment with several million users, we have exclusively blocked access to Apple anything. Closed-minded sheep are not the future.

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    54. Re:Buy a Mac by Anonymous Coward · · Score: 0

      Far from true.

      You can not run 2 year old Linux software on a new Distro, nor can you run new software on a 2 year old distro.

      Meanwhile, you can run any OSX software depending on your upgrade process. If you have a 2006 MacMini, you can run All OS X software since 10.0 , including PPC, but you can't run anything compiled for 10.7 or later If you have a 2013 Macmini, you can run everything compiled for OSX 10.4 to the current version.

      That's only one break.

      Meanwhile on Linux you can't even run software months old because the libraries go obsolete too fast. Try updating one thing, and you inevitably have to update every single piece of software on the system, even stuff that was "pulled in as a dependency" even though you don't use it.

    55. Re:Buy a Mac by __aaclcg7560 · · Score: 1

      So, IOW, your prior employers are moving to Mac because they lost the REAL programmers that can do this shit in a real programming language, like ASM.

      AFAIK, Cisco, eBay, Facebook, Google, Intuit and LinkedIn don't use ASM as one of their programming languages. Mac laptops are replacing PC laptops at these companies. I guess they don't have any REAL programmers on staff.

      Meanwhile. I've got an OS that is feature-parity with OSX and fits on a floppy, with a bootup time FROM A FLOPPY faster than your 5,000x the size bloated OS.

      Sorry, Grandpa, no one uses 8" floppy discs anymore.

      Son, if you only did *REAL* IT, you'd know better than to champion Apple *ANYTHING*

      Please define what *REAL* IT is supposed to be. I'm curious. Most Silicon Valley companies I worked for had 99% Windows and 1% Mac/Linux. Some of the newer startups I interviewed for have 50% Windows and 50% Mac/Linux.

    56. Re:Buy a Mac by Anonymous Coward · · Score: 0

      [Citation Needed]

      There is nothing about OS X that makes it inherently more secure than Windows.

      You're joking, right? Let us be serious. OS X was written by Apple (with large parts borrowed from FreeBSD). Windows was written by fucking Microsoft.

    57. Re:Buy a Mac by omfgnosis · · Score: 1

      Or you use it for work and the cost for a tool you feel comfortable with (not an extra grand, but yes a premium) outweighs the cost of fighting with your tools.

    58. Re:Buy a Mac by Anonymous Coward · · Score: 0

      There was a big dip at 10.7, which was the worst OS X version since the Intel transition. I cannot remember any other OS X release that seriously degraded performance, though. Every release up to 10.6 were continuous improvements, 10.8 was an improvement over 10.7, and 10.9 over 10.8. We'll see how 10.10 does.

    59. Re:Buy a Mac by LordLimecat · · Score: 1

      I guess it depends on how you define nice and what you do with the computer. My personal definition of "nicer" includes being reliable, not crashing often, and facilitating my work getting done quickly and without frustration

      Then at this point I can only assume that the problem is the end user, because I've worked with Win7 since the technical preview and work in an office where everyone but one person uses it, and Im quite productive on it. Im not 100% sure the last time I've had a BSOD on a machine under my control, but it would probably have been at least 4 years ago.

      For other examples, I have enough OS X keyboard shortcuts, gestures and preferences options burned into muscle memory at this point that even spending that same several hours on relearning those things would offset my productivity by $1000

      Thats because you took the time to get familiar on a system that is marketed at a premium; if you need to pay more for muscle memory at this point its pretty much your fault. Win7 has plenty of shortcuts as well that I use too, and thats one of the reasons I wont be taking the time to get comfortable on a Mac: Lost productivity, and paying a premium for the privilege.

      And while it sounds trivial, there are things like OS X being able to save any document from any application to PDF without using a plugin or other app where (for my personal workflow) the time saved easily outweighs the computer purchase price.

      Not using Cute PDF is worth 1000 to you? Ok. I had thought people decried bloat and including unnecessary things in the OS, but guess I was wrong.

      Everything you're saying confirms that its personal preference, and far be it for me to tell you that you shouldnt use the OS you like. I just think its an absurd waste of money when people spend ~2x as much for a Mac for some hypothetical boost in productivity or product life span-- because those depend far, far more on the person than the OS theyre using.

    60. Re:Buy a Mac by LordLimecat · · Score: 1

      This is why I use windows 7. I find the OSX interface to be infuriating, along with its lack of decent multimon (did they fix that yet?) and window scaling shortcuts.

      Surprise-- I actually dont like the dock at all, and actually think that the Win7 interface is the 2nd best interface out there (I think I would put CentOS 7s gnome implementation down as the best).

    61. Re:Buy a Mac by Anonymous Coward · · Score: 0

      "You aren't paying for the name, you're paying for the fuckups they have to constantly fix because they cheaped out on hardware."

      Translation: "Yes, Macs are reliable, and I'm really upset by that."

    62. Re: Buy a Mac by ccanucs · · Score: 1

      If you search everymac.com you can easily find out which macs can run which versions of MacOS.

    63. Re:Buy a Mac by omfgnosis · · Score: 1

      That's fine. You should use the tool you prefer! My preference is different. But this is one area that choice is good. The biggest challenge is interoperability, but even that has a pretty good story these days.

      along with its lack of decent multimon (did they fix that yet?)

      For certain values of fixed. It's heaps better than it used to be— each display is its own universe, fully configurable as a single-display was before —but it comes with one caveat: you can't span a window across two displays.

      window scaling shortcuts

      If you mean keyboard shortcuts for Fullscreen and Zoom, the former has always had a shortcut and the latter can be trivially assigned system-wide. If you mean something more involved (like Windows Snap, various window management techniques of that sort), there are tools available but they come from third parties with various levels of cost and quality.

      I actually dont like the dock at all

      There's not really a lot to like, it's pretty much a minimalist task list. That said, there are tools for enhancing it as well. I've chosen one (HyperDock) that gives it similar behavior to e.g. the Windows 7 Taskbar, with window thumbnails and simple management.

      --

      To be clear, I discussed a couple places where I've spent money to fill gaps that OS X can't fill on its own. I realize this is part of everyone's cost-benefit analysis when choosing a platform. I am not advocating choosing a deficient OS and throwing money at fixing it. I'm actually not advocating anything, other than choosing the platform that most fits what you want to do, particularly in a professional setting.

      There's a number of reasons, despite some small lack of features, that OS X works better for me. I'd be happy to share, but I don't want this to turn into a pissing contest like every inter-platform discussion tends to be. If you're genuinely curious, I'll oblige.

    64. Re:Buy a Mac by alexandre_ganso · · Score: 1

      My machine is seven years old. It runs the latest mac os.

      The machine I'm writing now is an Early 2009 Macbook. According to the "about my mac" menu, I'm running 10.9.5. So...?

    65. Re:Buy a Mac by godefroi · · Score: 1

      Hey, that's scientific, there. An opinion piece.

      --
      Karma: Poor (Mostly affected by lame karma-joke sigs)
    66. Re:Buy a Mac by david_thornley · · Score: 1

      Suppose you will be using a computer pretty much daily for three years. Then, an extra thousand dollars is one dollar per day of use. If you like the computer noticeably better, then it's almost certainly worth it.

      Moreover, Apple makes generally nice computers, even if you just install Windows on it. It isn't just the OS.

      --
      "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
    67. Re:Buy a Mac by Shirley+Marquez · · Score: 1

      And that 2009 Mac will probably only be able to run the current OS X version for a year, until OS X 10.10 comes out and support for it is dropped. The average lifetime these days for Macs to stay in OS support is five years, though some models get a little more and some a little less.

  5. Hardware isn't Progressing by Pikoro · · Score: 5, Insightful

    I think the reason the specs aren't increasing much is because the pace of hardware improvements isn't moving as fast as it used to. Nowadays, you pick up an i7 and 16Gb of RAM, your favorite video card, toss an SSD in there and you've basically hit the limit.

    All we're getting these days is more cores as the whole gigahertz wars ended 10 years ago.

    --
    "Freedom in the USA is not the ability to do what you want. It is the ability to stop others from doing what THEY want"
    1. Re:Hardware isn't Progressing by nucrash · · Score: 1

      Well, we are seeing some 4~5 GHz desktop systems now, but overall, you are pretty much spot on. There are some differences though. Now a GHz doesn't mean nearly as much because the newer and more complex instruction sets are actually able to accomplish more per tic.

      --
      Place something witty here
    2. Re:Hardware isn't Progressing by amiga3D · · Score: 5, Insightful

      The main reason MS is holding on to old hardware is many businesses still have older hardware. They dread, perhaps unreasonably, any loss to linux or other competitors on this older hardware. We've seen in the past that Micorsoft will do anything to keep Linux from getting a foothold.

    3. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      I think what you probably meant to say is that single-threaded performance hasn't improved much.

      However, according to this chart, that's not quite the case: -
      http://cpubenchmark.net/singleThread.html

    4. Re:Hardware isn't Progressing by ADRA · · Score: 2

      Or more relavantly, you're not utilizing any more performance out of your computer to improve your productivity (or enjoyment factor) and you are right now. Much of this is the shifting of complexity into online services. If you take away the internet, your computer becomes significantly worse than it was. Google Maps pretty much killed every desktop mapping software. Desktop mapping software could have been wasting those countless cycles running them, but instead Google does the heavy lifting for the benefit of allowing your PC to sit mostly idle. See countless other examples. Once you stop needing computing cycles locally, why would you upgrade your system (you being anyone/company/institution)?

      That said as an avid gamer, I still upgrade my video card every couple years to the best mid-range option I can justify because I do enjoy my toys, but its a luxury and serves little productivity boost. As a company, the only significant justifications for upgrades are TCO, retention, and reducing drag on business process.

      - TCO is obvious, cheaper is better.
      - Rentention is basically: If I upgrade this PC to "some better configuration", will my workforce be more likely to stay with the company. Its a concept that business planners basically never care about, and only begrudgingly accept when managers come to them crying about lost resources.
      - Business process drag is another sore spot which businesses often do care about, but can never justify cost wise (because it generally costs a small fortune to do). Getting better software / hardware services to better serve your changing business is great, but it also costs a lot of dollars. So much, that a VERY well presented business plan has to sell it. This is also why COBOL mainframes walk the earth to this day. Why upgrade when what we have now is 'good enough' and the upgrade costs at the very least several million dollars?

      --
      Bye!
    5. Re:Hardware isn't Progressing by rolfwind · · Score: 3, Interesting

      Well, you can't compare hz between differnt families of chips just like you can't compare RPM between a motorcycle and dump truck to definitely talk about power output.... but it definitely means a lot.

      If they could crank CPUs up to 100 Ghz or 1 teraherz, they would because it's easy gains. In F1 race cars they use plastic pistons just to be able to rev it over 18,000 rpm (more than a standard motorcycle).

      That's why overclocking still exists. Hz won't mean anything if they ever manage to pull of clockless chips. Considering how much circuitry/transistors are dedicated to timing in a modern CPU, that would be a huge gain. But AFAIK, it's still a pipedream.

    6. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Many businesses do have older hardware but do you expect Windows 10 to have drivers for that older hardware?

    7. Re:Hardware isn't Progressing by Nethemas+the+Great · · Score: 4, Insightful

      Minimum requirements are perceived by many as a measure of efficiency. If Microsoft were to increase the minimum specs, everyone would be whining about how bloated Windows is. The operating system should NOT be a major consumer of a system's resources. A system's resources should be maximally available to conserve battery power (on mobile platforms) and for running software in general. For the Linux crowd, being able to run on ancient crap is a badge of honor.

      Normally I'm not in the habit of praising Microsoft. However, the fact that they have been able to expand the capabilities of their OS as much as they have from where Vista was and still hold the line of system requirements is commendable. It certainly doesn't help drive new PC sales, but it's an impressive credit to their development teams.

      --
      Two of my imaginary friends reproduced once ... with negative results.
    8. Re:Hardware isn't Progressing by Charliemopps · · Score: 2

      I think the reason the specs aren't increasing much is because the pace of hardware improvements isn't moving as fast as it used to. Nowadays, you pick up an i7 and 16Gb of RAM, your favorite video card, toss an SSD in there and you've basically hit the limit.

      All we're getting these days is more cores as the whole gigahertz wars ended 10 years ago.

      Actually, the performance difference between an i3 and an i7 is negligible.
      http://www.tomshardware.com/re...

      You get 80% of the performance of a $570 i7 if you buy a $125 i3. For $250 you could get a dual processor i3 that was faster than an i7

    9. Re:Hardware isn't Progressing by ericloewe · · Score: 1

      That's why only high-end Xeons support multi-processor setups.

    10. Re:Hardware isn't Progressing by marcello_dl · · Score: 1

      Yes, they can't mess with the minimum requirements, else desktop linux becomes the only choice for that PC that you prefer not to get rid of yet.

      Besides, a 1ghz intel performs better than a dual core arm tablet with the same freq, in the real world use. I have seen better games on a 166mhz than a 1ghz phone but it's a software/developer skill problem.

      --
      ---- MISSING MISCELLANEOUS DATA SEGMENT --- [sigdash] trolololol
    11. Re:Hardware isn't Progressing by neoritter · · Score: 1

      This is what I was thinking. The OS is taking up less resources proportionally of an ever more powerful hardware base. Awesome! The only point is maybe nixing 32-bit support.

    12. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Yes. I expect the driver model to be substantially unchanged from Vista, with maybe some isolated exceptions. Therefore I expect Windows 10 to have drivers for anything that worked on 8, 7, or Vista.

      XP to Vista was the big driver chasm, particularly for sound cards and graphics cards. A bunch of stuff migrated from the kernel to userland.

    13. Re:Hardware isn't Progressing by saleenS281 · · Score: 3, Interesting

      I've been saying this for years. All the idiots decrying "PC's are dead! Tablets are replacing them!". No, tablets aren't replacing PCs. Most people just have a PC that's fast enough for their needs and don't need to buy a new one because it's "slow". As a gamer, and a "geek", I have a box that's probably pushing 5 years old, and outside of adding an SSD, there's been no need to upgrade anything. I could probably stand to grab a new video card (gtx460's in SLI), but outside of that, it's fast enough for everything I do.

    14. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Short of continuing support for their second highest market share OS that is.

    15. Re: Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Why can't they not upgrade?

    16. Re:Hardware isn't Progressing by shutdown+-p+now · · Score: 5, Insightful

      Normally I'm not in the habit of praising Microsoft. However, the fact that they have been able to expand the capabilities of their OS as much as they have from where Vista was and still hold the line of system requirements is commendable. It certainly doesn't help drive new PC sales, but it's an impressive credit to their development teams.

      If you think about it, it's actually the inevitable consequence of trying (successfully) to shoehorn Windows onto ARM tablets and phones. Now that both the kernel and the huge chunk of userspace are identical on all three, this means it had to be optimized a lot for both perf and size. But while those optimizations were a necessity for tablets and especially phones, the desktop also benefits, and the "freeze" of the minimum specs is the user-visible consequence.

      (in practice, Win7 actually ran better than Vista on those minimal specs, and Win8.1 runs better still - again, a direct consequence of moving further towards the "one OS" goal)

    17. Re:Hardware isn't Progressing by Chirs · · Score: 1

      Actually, the performance difference between an i3 and an i7 is negligible.

      That chart you pointed at is specifically for gaming. If you're doing parallel compiling, or running multiple VMs, or other easily parallelizable work the fact that an i7 generally has twice as many cores/threads can make a huge difference.

      At work we have a 24-core machine that we use for compiling. It makes a huge difference when you're basically building a custom linux distro.

    18. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Indeed, if they did require newer, better hardware wouldn't the lead to comment after comment of "I'm not upgrading, my hardware works fine and I don't need anything faster" ? Also this way hopefully they are improving the kernel even more; Windows 8 core really wasn't bad, it was the UI that was an abomination.

    19. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      bullshit. if microsoft cared about that, the min specs would be a single core p4 with 512mb ram, and in place upgrades from xp would be possible.

      the reason why the specs haven't increased is because they don't need to. an application or game's requirements may surely be higher than windows' own requirements, but windows itself.. it's a fucking operating system.. it doesn't need more, and microsoft has optimized the bloat to code ratio with windows 7, and thus the specs remain the same.

    20. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 1

      Your idea that we could same circuitry by eliminating timing is too simplistic. You need more circuitry for asynchronous logic, not less. You need to back propagate from every input whether it has been consumed or is waiting for some other input to arrive. That means you need two wires instead one and logic that delays execution until all inputs are ready and all outputs are ready. You have just doubled the amount of wires and devices if you try to make everything asynchronous. It is only reasonable to do at the interfaces between large blocks of logic. You can't make large blocks of logic without internal synchronization so what people do is create large blocks with their own clock domains and frequencies and asynchronous logic between them to hook them together. This is called Globally Asynchronous Locally Synchronous, GALS. Look it up. The main benefit of asynchronous would be power. Clock switches very fast regardless of if useful work is being performed. In complex logic relatively few signal are switching each clock cycle. Asynchronous circuits switch only when useful work is performed. You might find a niche for it in hearing aides. An asynchronous CPU wouldn't have a clock speed, obviously, but it wouldn't necessarily be faster than a synchronous CPU built using the same process technology.

    21. Re: Hardware isn't Progressing by CronoCloud · · Score: 2

      It's not that they "can't" most of the time, it's more they don't want to if what they have is working for their purposes. Why spend money when they feel they don't have to.

    22. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Openmp is very easy and should help make c and c++ faster if it is cpu intensive!

    23. Re:Hardware isn't Progressing by MaWeiTao · · Score: 1

      Not to be pedantic, but I'm almost positive plastic pistons are not used in F1. They wouldn't be able to withstand neither the heat nor the forces. They do incorporate special designs to allow the engines to operate high RPMs. The valves, for example, don't have springs, they're pneumatic. With springs they'd be subject to valve flutter.

      The days of 18k RPM are over. Maximum is about 15k RPM but the cars shift at 10k to 11k.

    24. Re:Hardware isn't Progressing by wagnerrp · · Score: 1

      In F1 race cars they use plastic pistons

      Well... aluminum and steel. This isn't the "Visible V10" model you glued together as a kid.

      just to be able to rev it over 18,000 rpm (more than a standard motorcycle).

      Engine RPM is limited by the strength of the valve spring, as the spring must close the valve in a timely manner during the engine cycle. Valveless 2-stroke engines, like those found on RC cars and aircraft can operate at very high RPM because they do not have valves. F1 engines bypass this issue by using pneumatic rather than mechanical springs. Nearly all racing bikes have adopted this technology as well, but then you said "standard motorcycle". Why are you comparing high strung racing engines with standard consumer engines?

    25. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      64-bit Windows requires more recent hardware than 32-bit does. We had an old workstation (2x dual core Xeon) which we were about to re-purpose as shared desktop. Tried to install Windows 8.1 64-bit and it crashed when booting the setup. Turns out 64-bit 8.1 requires support for CMPXCHG16b. We had to switch to 32-bit.

      Who knows what they require from 64-bit Windows 10.

    26. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      So, we're talking quantum computing right?

    27. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Yep... Linux and older hardware is often a better match.
      I keep a WindowZ machine for resume creation (Word) and
      for iTunes.

      As soon as I cycle out a machine I pull the disk triple the disk size
      and load a version of Linux. My favorite laptop is now +15 years old
      and if it was not hobbled with a PATA disk interface would be used
      more.

    28. Re:Hardware isn't Progressing by amiga3D · · Score: 1

      I noticed on OS X that my canon i960 no longer worked when I upgraded to 10.8 I searched for a 10.8 driver for the printer but none existed. I then simply installed the old 10.5 driver and....It worked! Perhpas some of the older drivers will work on Windows 10? I really know very little about how drivers work on Windows.

    29. Re: Hardware isn't Progressing by amiga3D · · Score: 2

      Because Microsoft shareholders need money?

    30. Re:Hardware isn't Progressing by amiga3D · · Score: 1

      I haven't found a solitary soul that prefers the UI in Win8 to earlier versions. The best I've heard is "it's not too bad." Thank God we still have Windows 7 Enterprise on the computers at work. I asked the IT guy if they were going to upgrade to 8 and he shuddered and said "NO" very emphatically.

    31. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      As well they should, Pretty much the only thing they offer that the competition doesn't is that library of windows compatible software and the large number of OEMs that ship Windows computers.

    32. Re:Hardware isn't Progressing by Barsteward · · Score: 1

      Expect or hope?

      --
      "The hands that help are better far than lips that pray." - Robert Ingersoll (1833-1899)
    33. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Nix 32-bit support? Definitely come January 19th, 2038.

    34. Re:Hardware isn't Progressing by dinfinity · · Score: 1

      I know it doesn't work like this here, but:
      This should be the top comment.

    35. Re:Hardware isn't Progressing by gnupun · · Score: 1

      You get 80% of the performance of a $570 i7 if you buy a $125 i3. For $250 you could get a dual processor i3 that was faster than an i7

      True, but Intel and AMD are creating artificial constraints that prevent you from running dual i3 cpus on a system. Today, to run a two-processor setup, you have buy an expensive workstation motherboard, expensive ECC DRAM, and lastly very expensive Xeon class CPUs that support multi processing. Such a system would easily exceed 2-3 times the price of a desktop i7 system.

    36. Re:Hardware isn't Progressing by Bengie · · Score: 1

      It's not a pipedream. We can already do async CPUs, but there are easier ways to increase performance. In other words, you get better returns via other methods for the time being.

    37. Re:Hardware isn't Progressing by Anonymous Coward · · Score: 0

      Think like a CIO or a CEO, not an end-user. Businesses are focusing more on Cloud capabilities than upgrading their client systems. We are reverting to the days of dummy terminals. The processing power is being improved at the server level, not on the client. From a business standpoint, if you can run the same applications efficiently with less overhead and do a better job of securing your data by implementing server-based computing instead of patching each application on each client and get by a few more years using the same client hardware, where is your money best spent? As a result, there have been significant advances in server capabilities, but client systems are not progressing at the same pace. Microsoft still gets paid, whether their software is on the server or on the client.

    38. Re:Hardware isn't Progressing by Shirley+Marquez · · Score: 1

      Desktop processors don't have the necessary logic for synchronization of more than one CPU. (The CPUs have to talk to each other so that the on-chip caches don't cause data inconsistency between them.) Server-class processors (Xeon and Opteron CPUs designed for multiple-socket motherboards) have it, and adding that extra circuitry increases the manufacturing cost. Intel and AMD are probably overcharging for that logic because they can, but it certainly does add to the complexity and cost of the chip.

    39. Re:Hardware isn't Progressing by jwhitener · · Score: 1

      And people with older hardware are probably the least likely to go out and buy a new OS.....

  6. I don't think we are giving anything up. by TsuruchiBrian · · Score: 5, Insightful

    Windows is an operating system. It's job is to allow other applications to be executed simultaneously. All of the resources windows consumes are resources denied to other applications. I'm not saying that we need to be stingy like in the bad old days when programmers where more concerned about saving clock cycles than writing scalable, maintainable, and reusable code. But now that we are passed all that, there is no sense in wasting cycles frivolously. Let the applications do that.

    1. Re:I don't think we are giving anything up. by Darth+Hubris · · Score: 2

      I agree. I think with any system, Windows, Mac, or Linux, the OS should be out the way to let me use 16 Gb for my raster/vector art, word processing, and/or movie editing software. If it looks pretty, even better. Although Windows 8.x and 10 look too damn flat for me. You need all that to run Firefox anyway.

      --
      The party's over ... the drink ... and the luck ... ran out
    2. Re:I don't think we are giving anything up. by HalAtWork · · Score: 2

      Exactly, I don't want an OS that's a resource hog. As for smartphones? They can't keep running at top speed for long before getting heat throttled, or the battery dying. It's apples and oranges. And they still have moments of slowdown and stuttering with all that power. I'd rather have a smooth experience where the OS stays out of the way.

    3. Re:I don't think we are giving anything up. by NerdFencer · · Score: 2

      For some areas in the minimum spec, that is certainly true (EX: RAM), but for compute resources, that is not necessarily the case. You could easily raise the hardware requirements by requiring more functionality out of the hardware instead increasing utilization. Some good examples of this would be DirectX 11 support on your GPU and SSE4 for x86 and NEON for ARM. Requiring DirectX 11 could conceivably reduce the memory required by the window manager by using tessellation for some details instead of storing static geometry. This in turn could allow for a prettier interface while keeping utilization numbers the same. Requiring SSE4/NEON to be available could make the OS smaller and faster. It could be smaller because optimized portions wouldn't need to support multiple code paths for legacy hardware and faster because of compiler optimizations that can be done to existing code using the newer instructions. Obviously it's not all that much, but we're all paying a price for the low hardware functionality requirements.

    4. Re:I don't think we are giving anything up. by CastrTroy · · Score: 1

      Exactly. I read the summary and immediately thought "damned if you do, damned if you don't". If they had done a bunch of fancy stuff that made the minimum specs need to be higher, then people would have complained that they were just trying to drive new computer sales. The leave the minimum specs the same, and people complain they are catering to old hardware. An operating system should take up a few resources as possible. The fact that there were able to add so much (stuff like virutal desktops (yes, i know Linux has had it for over a decade)) without raising the minimum requirements shows that they actually care about performance and are doing a good job.

      --

      Anthropic principle: We see the universe the way it is because if it were different we would not be here to see it.
    5. Re:I don't think we are giving anything up. by aaron4801 · · Score: 1

      Exactly this. It's not the job of the OS to be the complete suite of everything your computer can do. It's just the platform on which other functions operate. Most of those operations are optional based on the power of the computer. If anything, minimum system requirements are too *high* for Windows. Not because the OS needs to be able to run on ancient hardware, but because every MB of RAM and every clock cycle may be cheap, but no matter how many you have, it's still a limited resource. All else being equal, I'd rather them be allocated to what I'm actually doing with the system rather than being spent on managing a massive database of system settings that are usually irrelevant to what's on the screen at any given moment.

    6. Re:I don't think we are giving anything up. by Anonymous Coward · · Score: 0

      Since when did word processing use 16GB of RAM?

    7. Re:I don't think we are giving anything up. by omnichad · · Score: 2

      Why should they close their video editing and raster/vector art software to run the word processor? Photoshop and a video editor will gladly eat up 16GB of RAM for cache.

    8. Re:I don't think we are giving anything up. by Your.Master · · Score: 1

      All of the resources windows consumes are resources denied to other applications.

      It's really not that simple -- it's entirely possible to consume a small amount of resources to improve the overall resource allocation to other applications; or you could change certain space/time tradeoffs between memory and CPU if you fiddled with the requirements. Also, just because the requirements go up, doesn't mean Windows is consuming on them, it means Windows is relying on them. Those are different things.

    9. Re:I don't think we are giving anything up. by mrchaotica · · Score: 2

      The fact that there were able to add so much (stuff like virutal desktops (yes, i know Linux has had it for over a decade)) without raising the minimum requirements shows that they actually care about performance and are doing a good job.

      You've got to be kidding me. Virtual desktops require not much more than splitting the data structure that holds the list of windows into N pieces (for N desktops), an integer to keep track of which one you're on, and a couple of event handlers to switch between them. If that sort of thing is enough to force you to raise minimum requirements then you need to quit using bogosort to keep your window list in the right order!

      --

      "[Regarding the 'cloud,'] ownership was what made America different than Russia." -- Woz

    10. Re:I don't think we are giving anything up. by drinkypoo · · Score: 1

      I agree. I think with any system, Windows, Mac, or Linux, the OS should be out the way to let me use 16 Gb

      No problem. Even 32-bit systems will let you use 2GB per process.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    11. Re:I don't think we are giving anything up. by TsuruchiBrian · · Score: 1

      I think you are inferring a lot of things from this one statement that are not actually implied.

    12. Re:I don't think we are giving anything up. by jones_supa · · Score: 1

      Back in the day, a PowerMac 9300 with 64 MB RAM was a monster machine for Photoshop and Pro Tools.

    13. Re:I don't think we are giving anything up. by Blaskowicz · · Score: 1

      SSE2 is already required by Windows at least, as NX bit is required and CPU that support it have SSE2. It's built-in into every x86-64 processor too.
      After that, you have diminishing returns. For processes/threads scheduling, file management and whatever housekeeping, wide SIMD floating point seems worthless. Tesselation? A window manager will use rectangles, made of two triangles.
      In some limited cases like thumbnail management, maybe advanced SIMD or hardware can be used. Using a special version of a library or binary would be worth it.

    14. Re:I don't think we are giving anything up. by aliquis · · Score: 1

      Windows could also be written so that it used DX 10 or 12 if available, gulped up RAM if there was any and so on.

    15. Re:I don't think we are giving anything up. by TsuruchiBrian · · Score: 1

      Obviously it's not all that much, but we're all paying a price for the low hardware functionality requirements.

      We are, but if the requirements were higher, then we'd all be paying the price for high hardware requirements. These costs would include being forced to upgrade hardware more frequently, as opposed to now when you can just decide that your old junker just isn't quite repsponsive enough for your tastes.

      We pay the price of this compromise regardless of what actual compromise is made. People who buy a new computer every year are going to have different priorities than people who's computers are older.

    16. Re:I don't think we are giving anything up. by strikethree · · Score: 1

      Yeah, but... 32 bit? Oy. 32 bit was an awesome upgrade from 16 bit but it was still probable that we were going to hit limits quickly... which we did. 64 bit is a nice bit of breathing room. 128 bit should be the final change as with 128 bits, you can have more memory in the machine than there are atoms on this planet.

      --
      "Someone needs to talk to the tree of liberty about its ghoulish drinking problem." by ohnocitizen
    17. Re:I don't think we are giving anything up. by TsuruchiBrian · · Score: 1

      64 wasn't just a little bit of breathing room. 64 bit is probably enough address space until the end of the century.

    18. Re: I don't think we are giving anything up. by Anonymous Coward · · Score: 0

      Famous last words lol

    19. Re: I don't think we are giving anything up. by TsuruchiBrian · · Score: 1

      It's not as if 64 bit is only double the space of 32 bit. It's 4 billion times as much. We are getting into the territory where we are passed millions and billions, etc, and I have to look up what a number that big is called.

    20. Re:I don't think we are giving anything up. by Shirley+Marquez · · Score: 1

      But most people were editing smaller images back then. We didn't have 24MP and 36MP digital cameras yet, nor did we have cameras with more than 8 bit color depth. A 24MP image takes up 72 megabytes in standard 24 bit color and 144MB if it has high dynamic range color; a computer with a total of 64MB is not going to be able to edit that image efficiently.

  7. what we are missing? by Anonymous Coward · · Score: 1

    Microsoft bucks the bloat trend and you cry about what you are missing?

    You want higher specs, go get them. But mom and dad shouldn't need them to use windows.

  8. Lost opportunity? I doubt it by Cabriel · · Score: 5, Insightful

    Since when is having a light-weight OS a bad thing? Haven't people been harping on MS enough for having bloated OSes?

    Sure, make allowances for multiple-core and multiple CPUs on the not-so-low end, but making the minimum requirement a single CPU was definitely smart on their end.

    1. Re:Lost opportunity? I doubt it by Ghostworks · · Score: 4, Insightful

      I'm curious what kind of cutting edge file management, load balancing, and slide-show-presenting needs are such a challenge that the OS needs to be above 1 GB. It doesn't take that much effort to support people who just want to scroll through thumbnails of their vacation photos. If you have an interesting program -- a 3D video game, a compiler, a simulator -- it will have its own minimum system requirements. And like those programs that have lower requirements, the OS generally scales up (to a point) in capability with better specs.

    2. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 1

      The submitter is probably in the business of selling hardware, and he is bitter that this new operating system will not trigger sales like the transparency effects in Vista did at the time. It's a lost opportunity for him.

    3. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 0

      Probably referring to a lost opportunity for linux fanboys.

    4. Re:Lost opportunity? I doubt it by gstoddart · · Score: 0, Troll

      Sure, make allowances for multiple-core and multiple CPUs on the not-so-low end, but making the minimum requirement a single CPU was definitely smart on their end.

      You say smart, I say lazy and/or dishonest.

      Because those specs weren't usable on Vista, definitely wouldn't have been usable on Win 7, likely aren't usable on Win 8, and probably won't be usable on Win 10.

      I dare you to spend a week on a machine with 1GB of RAM running Windows, and then tell us they're sane minimums. My guess is you'll go crazy before the week runs out.

      Sure, it'll load, and you can eventually get a program to launch. But don't expect anything which isn't constantly thrashing and driving you crazy.

      My wife's work laptop until recently had 4GB of RAM and Windows 7 on it -- and it was pretty damned slow and awful.

      I can only imagine that 1GB of RAM means you want to shove a knitting needle into the face of Steve Ballmer.

      --
      Lost at C:>. Found at C.
    5. Re:Lost opportunity? I doubt it by Dutchmaan · · Score: 1

      Since when is having a light-weight OS a bad thing? Haven't people been harping on MS enough for having bloated OSes?

      Sure, make allowances for multiple-core and multiple CPUs on the not-so-low end, but making the minimum requirement a single CPU was definitely smart on their end.

      Having a light weight OS isn't a bad thing, but just as bloat is bad, so is keeping it small for the sake of keeping it small. If we're sacrificing a feature rich OS for no other reason than to support hardware from 10+ years ago, then something needs to change. Computers are dirt cheap these days, so there's very little excuse to not upgrade if it's so much of an issue for you that you're demanding MS design it's OS around your 10 year old computer.

    6. Re:Lost opportunity? I doubt it by BluenoseJake · · Score: 5, Insightful

      Windows 7 is faster than Vista on the same hardware. It was written to run on Netbooks, which Vista could not have run on. Win 8/8.1 is faster still. It's you who are being dishonest or lazy by claiming otherwise, there is lots of evidence to bear this out, you just refuse to find it or test for yourself.

    7. Re:Lost opportunity? I doubt it by Nethemas+the+Great · · Score: 1

      Actually, you will find many Windows deployments via virtual machines configured to those kinds of specs. They run well for the purposes they were created. Also, your order of "true" system requirements is off. Vista was the largest resource hog between it and Windows 7 and 8 with 8 using the fewest resources. The OS has continued to back off on resource requirements. This cannot necessarily be said for the applications running on them, however, Microsoft isn't writing specs for those applications, it's writing them for the OS.

      --
      Two of my imaginary friends reproduced once ... with negative results.
    8. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 2, Insightful

      Since when is having a light-weight OS a bad thing? Haven't people been harping on MS enough for having bloated OSes?

      In case you haven't noticed, people will harp on MS for everything even if it doesn't make sense. I've heard justifications for an OS being too bloated to work on older hardware, but this is way too funny for an article complaining because the OS isn't bloated enough. Ill send this joker a couple java apps with never ending spin-locks so that it can chew up a couple cores of his processor to make him happy.

    9. Re:Lost opportunity? I doubt it by gstoddart · · Score: 0

      It's you who are being dishonest or lazy by claiming otherwise, there is lots of evidence to bear this out, you just refuse to find it or test for yourself.

      Bullshit.

      Sorry, but my wife has a Win 7 Pro laptop from work.

      It recently had to be upgraded from 4GB to 12GB because at 4GB it was a complete and utter dog of a machine.

      It was slow, unresponsive, and using so much VM that it was thrashing from the first application you opened.

      In my experience, a 4GB machine is using almost 2GB of RAM by the time it boots with nothing running on it.

      I've got a Win 7 VM open right now. It's got no programs running other than what starts with the OS. It's using 1.77GB of RAM. That's essentially just Windows.

      I can't imagine trying to run it on a machine with 1GB of RAM, and I'm betting you're not using a machine like that, and that if you did you'd be pounding your head against the table in frustration.

      So, having directly seen Win 7 sucking up resources like mad on a machine with 4GB, I find it implausible that with 1GB it's anything but a steaming turd. I've never seen Windows 8, so it's possible they've done some pretty cool things and trimmed it down.

      But I doubt it.

      --
      Lost at C:>. Found at C.
    10. Re:Lost opportunity? I doubt it by ericloewe · · Score: 1

      7 runs far better than Vista in limited RAM. Specifically, 7 avoids keeping copies of VRAM contents in main RAM, whenever possible, freeing up room for other stuff.
      8 had some more unspecified changes made (specifically due to Windows Phone and Windows RT) to the kernel to help contain memory usage further.

      Congratulations for presenting "proof" that doesn't prove anything. User-perceived sluggish behavior is mostly due to slow hard drives not loading stuff quickly enough. 4GB of RAM is more than enough for anything casual (except newer games - but it's silly to run those on a laptop) and the majority of productivity software.

    11. Re:Lost opportunity? I doubt it by afidel · · Score: 2

      I spent several years running Windows 7 on a machine with 1GB of ram, it ran ok. I was definitely happy when I got a bump to 4GB when we decided to do that to extend our laptop refresh cycle from 3 to 5 years, but it did drive me insane to run with 1GB. Honestly from a day to day perspective the SSD in the replacement made a much bigger difference than the ram bump did, if I had to make a choice between bumping ram or changing out a HDD for an SSD with a given budget I'd go with less ram.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    12. Re:Lost opportunity? I doubt it by tompaulco · · Score: 2

      This is the way I see it as well. We are talking about the Operating System here. This is not a 3D Renderer, a CAD Program, a game, or even a spreadsheet or document editor. It merely facilitates the running of actual programs. With each successive release, the footprint should be getting smaller as the engineers figure out how to do the job that the OS needs to do in a smaller space with fewer resources and keeping out of the way of the actual programs that are being used to get work done.

      --
      If you are not allowed to question your government then the government has answered your question.
    13. Re:Lost opportunity? I doubt it by TsuruchiBrian · · Score: 1

      Exactly what rich features are missing?

    14. Re:Lost opportunity? I doubt it by shutdown+-p+now · · Score: 4, Informative

      You do realize that Windows uses free RAM for filesystem cache since Vista, right (just like Linux has been doing for many years before)? The amount of RAM "used", as reported in Task Manager, is basically meaningless.

    15. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 0

      My thoughts exactly. If anything the system specs should be lower as time goes on! I don't need or want the weather with a 3D globe running 24/7 taking up processing cycles. My current windows folder is about 25GB, with about 60 subdirectories. I can't imagine all this is actually necessary to the core OS. I'd pay extra for a current Windows OS install with absolute minimal installation and zero bloatware and unneeded "features". (and that is supported and Update works correctly.) I personally think such a thing would be a huge hit with gamers and virtualization solutions.

    16. Re:Lost opportunity? I doubt it by St.Creed · · Score: 1

      It's probably due to a horrible installation-image from her workplace. I'm using Windows 7 with 4GB, since 2 years ago, and I never had disktrashing. I regularly have Visual Studio, one or two databases (oracle, MSSQL), MS Word and numerous browser sessions open at the same time without running out of memory or slowing down my laptop noticeably.

      --
      Therefore, by the (faulty) logic you're using, you're just a cow with a keyboard - osu-neko (2604)
    17. Re:Lost opportunity? I doubt it by Keyboard+Rage · · Score: 1

      Depends on which version of Windows, of course. I'll happily lend you my 16 year old Windows 98 box, which is pretty much damn stable and will even let you watch DVDs smoothly despite supposedly being too low spec (no hardware acceleration) to actually run those (guess that 320Mb RAM does serve a purpose). Win XP on a P4 with 1Gb with a crapload of software installed works pretty swiftly too, even when I run Photoshop and Illustrator at once. Of course, on both those boxes, the Windows installation was kept free of bloatware, junk like Flash, and the Windows installations themselves were customized to disable as much unneeded crap as possible.

    18. Re:Lost opportunity? I doubt it by redmid17 · · Score: 3, Insightful

      Well I will just say, like the others, that you do not know what you're talking about. I installed win 7 on a few PIII netbooks with 768 MB RAM, with the typically office image. Worked fine. I've used it on Dell D410s and D430s with 1 GB of RAM. Did absolutely everything I needed and wanted it to do.

    19. Re:Lost opportunity? I doubt it by jones_supa · · Score: 1

      It's not meaningless. The "committed" value does not include filesystem cache.

    20. Re:Lost opportunity? I doubt it by shutdown+-p+now · · Score: 1

      Sure, but it also includes virtual memory that is paged out (for example, a page that was touched once long ago, and not used since), so it's still not a useful metric in a sense that GP means.

    21. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 0

      Wanna switch, my netbook for your workstation...

    22. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 0

      lxde or xfce is faster then unity...

    23. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 0

      I'm curious what kind of cutting edge file management, load balancing, and slide-show-presenting needs are such a challenge that the OS needs to be above 1 GB. It doesn't take that much effort to support people who just want to scroll through thumbnails of their vacation photos. If you have an interesting program -- a 3D video game, a compiler, a simulator -- it will have its own minimum system requirements. And like those programs that have lower requirements, the OS generally scales up (to a point) in capability with better specs.

      Because people who buy a $300 computer from Best Buy aren't that bright and expect the "OS" to play DVDs, youtube in HD, facebook and flash games and all that stuff too.

      1GB is a reasonable minimum for a system with a modern effects laden video. It's not the minimum to boot the kernel, its the minimum to be able to run your basic all included programs.

    24. Re:Lost opportunity? I doubt it by exomondo · · Score: 1

      You've probably got a bunch of crapware running in the background or aren't taking into consideration that the committed amount of RAM also included paged virtual memory. Here are a few links that show the memory usage:

      XP, Vista and 7 baselines
      Usage with 512MB RAM
      7 SP1 Compared to 8

    25. Re:Lost opportunity? I doubt it by Khyber · · Score: 1

      "definitely wouldn't have been usable on Win 7"

      Excuse me? Tell that to a P4 1.8GHz single-core system with under 1GB RAM.

      Runs just fucking fine, TYVM.

      Do you not know how to optimize a system, child?

      --
      Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
    26. Re:Lost opportunity? I doubt it by Bite+The+Pillow · · Score: 1

      Copying a large file results in zero free bytes and more swapping than otherwise. Because of the caching you mention.

      Tell me that's efficient?

      Other related symptoms suggest it is not so irrelevant. Spend time with resource monitor open and be amazed.

    27. Re:Lost opportunity? I doubt it by Anonymous Coward · · Score: 0

      Although Windows 7 says it requires 1GB, it actually boots and runs with 768MB of RAM (excl video), at least when inside a virtual machine. The 1GB requirement is probably to leave some room to actually run apps. I keep it at 768MB because I usually run only a couple of lightweight specialized apps on it, and the mother ship (a MacBook Air) only has 4GB physical memory.

    28. Re:Lost opportunity? I doubt it by Retron · · Score: 1

      Bingo. I work in a school where we rolled out the x64 version of Windows last year and even with the likes of SCCM and the other enterprise bits and pieces in the background, the commit charge on a freshly built machine is around 1.2GB.

      We have plenty of laptops and desktops with only 2GB RAM and they run just fine - bearing in mind most people use their machines for email, interactive whiteboard use, YouTube (which is insanely popular with teachers, it seems), light Office work and general web browsing. There are some other programs used, virtual textbooks and the like, but they really don't take much RAM.

      If a 4GB machine is a "complete dog of a machine", something is badly wrong with the way Windows is set up. Either that, or the person using the machine is running several heavyweight programs at once, or something like 60 tabs in their web browser...

    29. Re:Lost opportunity? I doubt it by GbrDead · · Score: 1

      More like since NT 4.0 (at least).

    30. Re:Lost opportunity? I doubt it by Mr+Z · · Score: 1

      My work laptop has 4GB of RAM on it and Windows 7 and it runs just fine. The only thing that slows it down is when the corporate-mandated management scripts run and start pegging the hard drive with virus scans, audits and the like. More RAM wouldn't help that. Switching to an SSD did.

      According to Resource Monitor, I'm using about 3GB, with 850MB of that used as cache. A bit over 1GB of that is Firefox.

      So, yeah, I could see 1GB really sucking when used with a modern web browser and many tabs open (like I do). 4GB, though, hasn't really held me back much.

      Apparently, at least part of Vista's memory woes stemmed from the poorly tuned "SuperCache" feature, that would aggressively try to pre-cache data in RAM. Its appetite was apparently too large. It apparently also didn't manage its disk buffers very well. (This is all third or fourth hand knowledge and so could be shaky. I've never run Vista myself. If someone has more details, pipe up!)

  9. What have they held up? by nine-times · · Score: 5, Interesting

    Before we go any further, I think it'd be good to provide an example of what feature you believe Microsoft has failed to implement in order to keep the requirements low. I can't think of what that would be. Because failing the need to meet some specific requirement, I don't know why system requirements should need to keep going up, especially when you consider that we use our desktop/laptop computers for the same things as we did 10 years ago. Web browsing, word processing, spreadsheets. For games, you can support weaker/older systems and just scale the graphics down.

    So unless there's a specific feature that would suck up resources, I'd actually kind of expect that an OS system requirements might go down. As code continues to be optimized, you'd get better performance on the same hardware. Of course, there's a limit to that. But why complain that the OS isn't an ever-bloating resource hog?

    1. Re:What have they held up? by Anonymous Coward · · Score: 0

      The feature is called 'Microsoft Security Essentials'.

  10. Minimum Specs != A Good Time by mlw4428 · · Score: 2

    ThemMinimum specs for the OS doesn't hold anything back. 64-bit builds exist and "fancy" features of the UI can become disabled if certain hardware isn't available. Furthermore I'd say it points to some level of efficiency in that the OS can run on a low end system. Arguments can be made either way about whether the sheer slowness would be totally a fault of Windows or of the software you're running.

  11. Minimum specs mean nothing by Anonymous Coward · · Score: 0

    What people want is a lightweight OS that uses the minimum amount of resources to operate. And you want software bloat?

    1. Re:Minimum specs mean nothing by wisnoskij · · Score: 1

      That CAN operate on a minimal amount of resources. It is also important that Windows can and does ramp up resource use when it is available to increase response time.

      --
      Troll is not a replacement for I disagree.
    2. Re:Minimum specs mean nothing by bobbied · · Score: 1

      And you want software bloat?

      Actually, no. I want Linux because if you build everything to your actual hardware it will run circles around Windows for the same applications.

      BTW, Yes, I've measured this using real custom applications written in C++. I saw about a 10 fold increase in performance when moving to Linux from Windows 7, then gained another increase by building my own kernel, shared libs and support applications targeted to my specific hardware. Your mileage may vary with your application, it's language, shared libs and the tool chain you used to build it, but in general a Linux platform will be faster on the same hardware.

      However, Windows has it's place.... Running IE, Office, and most PC based games.... Oh, and the "Server" variants are good at sharing files, being domain controllers for other windows boxes and other such things, if you can afford the license costs... Other than that (and even FOR that sometimes) I'd prefer Linux.

      So give me what I want, then let ME decide what bloat I install after that..

      --
      "File to fit, pound to insert, paint to match" - Aircraft Maintenance 101
    3. Re:Minimum specs mean nothing by tompaulco · · Score: 0

      However, Windows has it's place.... Running IE, Office, and most PC based games.... Oh, and the "Server" variants are good at sharing files, being domain controllers for other windows boxes and other such things, if you can afford the license costs... Other than that (and even FOR that sometimes) I'd prefer Linux.

      I'm waiting for the day when Wine can run Windows games in emulation faster than Windows can run them natively.

      --
      If you are not allowed to question your government then the government has answered your question.
    4. Re:Minimum specs mean nothing by jones_supa · · Score: 1

      Wine is not an emulator. The application code runs on bare CPU just like they do on Windows. However, if Wine implements faster API code than Windows, then we see performance improvement when we branch to those functions. I have heard that some games already run faster with Wine than under Windows.

    5. Re:Minimum specs mean nothing by Blaskowicz · · Score: 1

      Your flawed custom C++ application may run better on linux, but in the real world my linux desktop uses more CPU cycles than a Windows desktop and that's a trade off I make. Worse drivers, Xorg CPU usage, Pulseaudio CPU usage, and then some little bugs, warts or cruft or hope for better drivers/programs mean I have to upgrade distro about once a year or every couple years (by which it's overdue). Windows version can be upgraded every 5 or 6 years.

    6. Re:Minimum specs mean nothing by bobbied · · Score: 1

      Ah, so you don't know how to pick a distro, build it from scratch for your hardware (which is what I'm claiming makes the most difference) and tune your system then? I guess you don't. Also, who in their right mind runs the GUI? Unless you are running desktop aps (Web Browser, Office, etc) don't bother with it on Linux.

      If you *really* want processing performance, Linux is usually where you should turn. If you are running a desktop app, you don't need performance, just stick with Windows. But I'm repeating myself.

      --
      "File to fit, pound to insert, paint to match" - Aircraft Maintenance 101
    7. Re:Minimum specs mean nothing by Blaskowicz · · Score: 1

      I am not going to browse slashdot with wget, use a curses music player and watch movies/shows with mplayer and libcaca just to please you.

    8. Re:Minimum specs mean nothing by bobbied · · Score: 1

      If that's what you want to do, you *should* use windows.... Remember what I said.... IF you want PROCESSING speed, use LINUX. If you want a GUI, use something else... The application I'm running has no GUI component, so I don't need or want X. A web server needs no GUI component so I'd not load X... Get it yet?

      --
      "File to fit, pound to insert, paint to match" - Aircraft Maintenance 101
  12. The OS should just get out of the way by Anonymous Coward · · Score: 0

    The OS should not be driving the resources required. That should be a function of the programs you run. Yes, I know Windows is more than the OS, but even the interface to the OS should not be sucking resources. Let me decide what I need.

  13. It's fast enough for office use by Spliffster · · Score: 4, Insightful

    I am working for a company with 6000+ desktops. I do not understand why our client engineering is rolling out faster hardware every year. 95% of all office workers need MS office, a browser and email. Most of the home users just need a browser these days. Those core i7 are just idling around heating office space.

    I have now started rolling out 200 dollar desktop hardware (zotac). Which could really become a problem for microsoft. The windows licence price tag looks really expensive with these hardware prices.

    Office problems are solved, we do not need faster hardware. And microsoft is manly making money from, *drumbeat*, office workers.

    Best
    -S

    1. Re:It's fast enough for office use by Anonymous Coward · · Score: 0

      I am working for a company with 6000+ desktops. I do not understand why our client engineering is rolling out faster hardware every year. 95% of all office workers need MS office, a browser and email. Most of the home users just need a browser these days. Those core i7 are just idling around heating office space.

      I have now started rolling out 200 dollar desktop hardware (zotac). Which could really become a problem for microsoft. The windows licence price tag looks really expensive with these hardware prices.

      Office problems are solved, we do not need faster hardware. And microsoft is manly making money from, *drumbeat*, office workers.

      Best -S

      "most users need" is very often a fallacy based on personal assumptions (anecdotes are not data). One of the things I use home computer for is editing GoPro HD video, and that is a camera that have sold in very significant numbers and footage is unusable without editing (as it would be endless). But editing it's HD video is so slow on my fairly ok desktop that I can't wait for the new X99 platform to stabilize to buy a new PC. This is just one of many examples of "niche" use that put together end up with significant numbers. From what I can read from statistics and surveys it seems a big chunk of the real "just surfing" users have moved to tablets and are no longer in the PC market.

    2. Re:It's fast enough for office use by ericloewe · · Score: 1

      Those Core i7s are using exactly as much power idling as a Core i3, most likely.

    3. Re:It's fast enough for office use by Anonymous Coward · · Score: 0

      Quite simply, because the hardware falls out of the vendor's support window (3 years). IT departments want support from vendors, so they replace equipment like clockwork.

    4. Re:It's fast enough for office use by Anonymous Coward · · Score: 0

      I am working for a company with 6000+ desktops.

      As an intern?

       

      Those core i7 are just idling around heating office space.

      If you think back to your A+ you'll recall CPU throttling. If not have a google.

    5. Re:It's fast enough for office use by dj245 · · Score: 1

      I am working for a company with 6000+ desktops. I do not understand why our client engineering is rolling out faster hardware every year. 95% of all office workers need MS office, a browser and email. Most of the home users just need a browser these days. Those core i7 are just idling around heating office space.

      I have now started rolling out 200 dollar desktop hardware (zotac). Which could really become a problem for microsoft. The windows licence price tag looks really expensive with these hardware prices.

      Office problems are solved, we do not need faster hardware. And microsoft is manly making money from, *drumbeat*, office workers.

      Best -S

      I surely hope you are not also one of those awful IT people that keep purchasing spinning disks for user computers. If you do the math for what an employee is worth, and think about how many minutes they are waiting for their computers to boot/shutdown/open a program, having high-end hardware is often a no-brainer. $2000 in hardware cost is dwarfed pretty quickly by a $100k salary employee twiddling their thumbs for 5 minutes every day waiting on their computer.

      --
      Even those who arrange and design shrubberies are under considerable economic stress at this period in history.
    6. Re:It's fast enough for office use by Anonymous Coward · · Score: 0

      Some of us need quite a bit more power - you know, those of us who do real work with significant amounts of data or software dev, and don't just copy/paste from other powerpoints.

      But your "savings" of $150-200 per seat were wasted many times over since:
      1) DoD outages - one day for one worker and the saving is wiped. The outages are near monthly
      2) the failure rate is horrendous - the terminals are underpowered and overheat driving one screen
      3) triggered network & wiring upgrades in all buildings- much more expensive
      4) space limits - the kind of collation, formatting, pretty-printing actions that were best done locally are now provisioned on more expensive systems in more expensive locations (data centres)

      So thanks a bunch, looking forward to when the savings don't materialise and profits/bonuses are cut.

    7. Re:It's fast enough for office use by LinuxIsGarbage · · Score: 1

      "most users need" is very often a fallacy based on personal assumptions (anecdotes are not data). One of the things I use home computer for is editing GoPro HD video, and that is a camera that have sold in very significant numbers and footage is unusable without editing (as it would be endless). But editing it's HD video is so slow on my fairly ok desktop that I can't wait for the new X99 platform to stabilize to buy a new PC. This is just one of many examples of "niche" use that put together end up with significant numbers. From what I can read from statistics and surveys it seems a big chunk of the real "just surfing" users have moved to tablets and are no longer in the PC market.

      How much editing are you looking to do? If you're just looking to cut and splice, Avidemux works well as it can do quick lossless edits like that, as well as lossless conversion of container types. http://fixounet.free.fr/avidem... A little unstable, and a bit of a learning curve, but it works, and it's quick (if you don't re-encode the video stream).

      I found editing HD video on my 7 year old Laptop using Sony Vegas to be a passable experience. I have to basically set all the preview settings to "ultra-crap mode", but I can get my previews, arrange the video, then let it render over night.

    8. Re:It's fast enough for office use by Spliffster · · Score: 1

      Actually our central IT buys core i7 with 1GB ram and HDDs. What we do (after the fact is) adding an SSD and 4GB ram for my departement. Also we have been heavily pushing for 1GB ethernet to all offices.

      After that we started buying clients with slower cpus but with SSD, more ram and combined with the faster network the overall performance is much better for an office user. And the average price per client is now usd 400 instead of usd 1200. Our researchers get faster computers where needed.

      Best
      -S

    9. Re:It's fast enough for office use by Anonymous Coward · · Score: 0

      "most users need" is very often a fallacy based on personal assumptions (anecdotes are not data). One of the things I use home computer for is editing GoPro HD video, and that is a camera that have sold in very significant numbers and footage is unusable without editing (as it would be endless). But editing it's HD video is so slow on my fairly ok desktop that I can't wait for the new X99 platform to stabilize to buy a new PC. This is just one of many examples of "niche" use that put together end up with significant numbers. From what I can read from statistics and surveys it seems a big chunk of the real "just surfing" users have moved to tablets and are no longer in the PC market.

      How much editing are you looking to do? If you're just looking to cut and splice, Avidemux works well as it can do quick lossless edits like that, as well as lossless conversion of container types. http://fixounet.free.fr/avidem... A little unstable, and a bit of a learning curve, but it works, and it's quick (if you don't re-encode the video stream).

      I found editing HD video on my 7 year old Laptop using Sony Vegas to be a passable experience. I have to basically set all the preview settings to "ultra-crap mode", but I can get my previews, arrange the video, then let it render over night.

      My footage is in 1920x1080 x 60FPS. Reason for this mode is ability to digitally zoom/use only a section of the footage and to do slow motion. And that it generally is recommended as the mode with best results for what I usually film, which is underwater. My new i7 laptop with a dedicated (but laptop) video card could not keep up at all even with settings at lowest. Editing I do in addition to cut and splice: zoom/cutout, slow motion, color correction (important, I use filters on the GoPro but still need to correct), overlays/picture-in-picture, text and music, etc.

    10. Re:It's fast enough for office use by Anonymous Coward · · Score: 0

      Those core i7 are just idling around heating office space

      not really. with cpu throttling and power saving schemes present in modern processors (dating back 8-10 years or so) means that "idling" and underutilized systems use much less power than, say, an old northwoods p4 that ran at full speed all the time.. so the computing power of an i7 is there when you need it... but when underutilized or idle, isn't going to use significantly more power than a less-capable chip. in many cases even, a higher performance processor can use less power overall to perform a task than a lesser chip (that often uses the same amount of power at full speed as the faster one) because it runs at full speed (and power consumption) for less time to complete the task

  14. no lol by Anonymous Coward · · Score: 0

    A OS is suppose to take a little as possible so apps have resources to do stuff. If the OS needs all that what is left for the rest of the system? That shooting for good performance on low spec systems inspires good code which usually scales. If you want pretty use plugins or CPU runtime branching as not everyone just plays solitaire and rather use them cycles for work

  15. compatibility by Anonymous Coward · · Score: 1

    I can't believe this dickhole is actually complaining about more compatibility...

  16. Sucks to be you, minimum hardware specs by __aaclcg7560 · · Score: 0

    No one should be using Windows with minimum hardware. A lot of people bitched and moaned about Windows Visita when it first came out. A better CPU and more memory made a huge difference for Vista. If you want to run minimum hardware specs, install Linux, pick a desktop manager (I prefer Blackbox), and install your favorite non-IE web browser.

    1. Re:Sucks to be you, minimum hardware specs by Anonymous Coward · · Score: 0

      So what happens to new computer sales when Microsoft adjusts the minimum configuration upward? Ditto OS upgrade purchases?
      My experience sort of suggests that a rational minimum for Windows 7 was at least 2 64-bit processors each running at least 2.5Ghz and with 8Gb of RAM.
      If that becomes the minimum configurations, what happens to the low-end market for PCs, laptops, tablets, etc?

    2. Re:Sucks to be you, minimum hardware specs by __aaclcg7560 · · Score: 1

      My Windows 8.1 machine has a 3.0GHz AMD quad-core processor and 4Gb of RAM. When I rebuild my seven-year-old system next year, it will probably have a 4.0GHz Intel quad-core processor with 16Gb+ of RAM. I left minimun hardware specs years ago.

    3. Re:Sucks to be you, minimum hardware specs by Anne+Thwacks · · Score: 2
      No one should be using Windows with hardware.

      FTFY

      --
      Sent from my ASR33 using ASCII
    4. Re:Sucks to be you, minimum hardware specs by jones_supa · · Score: 1

      GHz is a meaningless number these days. We do much more work per clock cycle.

    5. Re:Sucks to be you, minimum hardware specs by tepples · · Score: 1

      "No one should be using Windows with hardware." FTFY

      So what operating system should someone use to play video games, if not Windows? Windows has a far larger library than OS X or X11/Linux.

  17. Windows XP by BradMajors · · Score: 1

    You didn't mention Windows XP.

    A reason why so many computers are still running Windows XP is that they can't be upgraded. Microsoft added the requirement that the CPU must support NX which many of the old CPUs running Windows XP do not support.

    1. Re:Windows XP by slaker · · Score: 1

      NX support was actually added between Windows 8 and 8.1, but you're right that there have been minor adjustments to hardware requirements over time. Since NX has to be supported by both CPU and motherboard, it's actually quite a hole. A lot of my company's Core2 systems wouldn't be compatible with Windows 8 or 10 because the standard motherboard is an older one.

      --
      -- I wanna decide who lives and who dies - Crow T. Robot, MST3K
    2. Re:Windows XP by afidel · · Score: 2

      Microsoft added the requirement that the CPU must support NX which many of the old CPUs running Windows XP do not support.

      Which processors? AFAIK every Intel processor since Prescott (launched 2004, 10 years ago!) has had XD/NX, even the first generation Atom had NX.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    3. Re:Windows XP by BradMajors · · Score: 1

      Windows XP was launched in 2001 (13 years ago!)

    4. Re:Windows XP by Blaskowicz · · Score: 1

      Not every Prescott CPU supports NX bit, let's say it was not yet enabled.
      You have Pentium 4 Prescott with 32bit support, then 32bit + NX, then 64bit - which always includes NX.
      A really huge amount of machines had the first ones such as Pentium 4 530, Pentium 4 540 and thus no support for NX bit. Often little Dell or Compaq thinks with Intel chipset that just won't die and may be nice to use even now.

      Funnily, a Celeron Prescott is more likely to support NX and even 64bit, they seem to have the later revisions of the chip.
      Athlon/Athlon XP do not support NX bit at all and arguably still usable even today, if the motherboard didn't die.

    5. Re:Windows XP by vandamme · · Score: 1

      They can be upgraded to Linux!

  18. It's the operating system being efficient. by Rakarra · · Score: 5, Insightful

    You're not really "giving up" anything. You don't turn on the computer to play Operating System. You do it to run applications. So Windows requires a low overhead? Well that's great, an operating system SHOULD have a low overhead because it's supposed to get out of the way, not use resources. Your computer is a zero-sum game, memory and CPU that is taken by the OS is usually unavailable to your apps, the things that are actually important (barring, of course, apps that don't multi-thread and can only use part of the CPU, etc).

    I suppose we have this fantasy of rotating windows, whiz-bang effects, SFX on the window borders on the desktop.. what do you really get from that? Anything beyond saying "oh that's cool" when you see a demo on the store shelf or a flashy yet impractical interface on a TV show? I know what I got from that -- an annoyance with Gnome 3, GPU memory reserved by the f*%^ing interface, and a lot of time spent figuring out how to turn that nonsense off (thank God Gnome's extensions make that easier to do that now than it was a few years ago!).

    Maybe a simpler interface is better. Maybe an interface that doesn't try to do too much visually results in a more USABLE experience. More bells and whistles are not better.

    1. Re:It's the operating system being efficient. by Anonymous Coward · · Score: 0

      You don't turn on the computer to play Operating System.

      ... he said in the home of the Linux nerds.

    2. Re:It's the operating system being efficient. by Anonymous Coward · · Score: 0

      The new kids do not have the slightest idea about what is efficiency.

    3. Re:It's the operating system being efficient. by Rakarra · · Score: 1

      just think how well you could hack the gibson if you had full 3d representation of the file system

      I tried that once. It was SGI's Fsn ("Fusion") which I installed on one of the SGI workstations in college. It was a real product, featured prominently as the computer interface controlling computers and security in Jurassic Park. What a surprise, the "cool" factor wore off quickly and you started to get irritated at the time the system took to pan around between folders when trying to select something, or the time taken to "zoom in" when you wanted to open something. It was all flash, and eventually you want the flashiness to get out of the way and just be faster and more responsive.

  19. YOU'RE AN IDIOT by Anonymous Coward · · Score: 1, Insightful

    What was added when specs were raised?

    WHAT, SPECIFICALLY was added?

    What do we need higher specs for? WHAT do you want added, that needs higher specs?

    You're just a fucking idiot.

    1. Re:YOU'RE AN IDIOT by gnupun · · Score: 1

      WHAT, SPECIFICALLY was added?

      Who knows? But with each progressive version of iOS, os x or windows, the time taken to complete the same task INCREASES for unknown reasons (except to make hardware and software vendors more money). Note that the task has not been visibly improved or changed, but somehow its performance is a lot lower on older hardware.

      If windows were to be rewritten in hand-coded assembly, and all fluff features were removed, who knows, the overall system performance might increase 3x.

    2. Re:YOU'RE AN IDIOT by MaWeiTao · · Score: 1

      I noticed performance improvements upgrading from Vista to Windows 8. I can't say the same about OSX or iOS.

    3. Re:YOU'RE AN IDIOT by lgw · · Score: 1

      The days where "hand-coded assembly" was actually faster than optimized C/C++ are long gone. Modern CPU pipelining and out-of-order execution simply isn't something you can optimize for in your head any more.

      Plus, don't forget that most of the Windows kernel was written back in the day when every instruction cycle mattered, and MS took that very seriously (and they certainly hired top talent in the Gates days).

      But you're probably thinking of the GUI shell, not the OS.

      --
      Socialism: a lie told by totalitarians and believed by fools.
    4. Re:YOU'RE AN IDIOT by gnupun · · Score: 1

      The days where "hand-coded assembly" was actually faster than optimized C/C++ are long gone. Modern CPU pipelining and out-of-order execution simply isn't something you can optimize for in your head any more.

      Plus, don't forget that most of the Windows kernel was written back in the day when every instruction cycle mattered, and MS took that very seriously (and they certainly hired top talent in the Gates days).

      Win95 had a lot of asm stuff, but NT (and 2k and xp) did not have much asm clever code because it contained mostly portable C. When NT was released, it was more stable and architecturally better than win95. But win95 was faster on the then current hardware because it had a lot more asm code than NT. When the hardware got faster, NT's slowness became less apparent.

      Hand-coded assembly will always beat compiled code, but it costs 10-20x to create and maintain that stuff. That's why OSes are written in C (and also the fact that C is portable among multiple processors). Even in modern OSes like windows 10, linux or freebsd, you'll find many performance critical routines written in asm.

    5. Re:YOU'RE AN IDIOT by lgw · · Score: 1

      Hand-coded assembly will always beat compiled code,

      That's just wrong on modern processors, unless you count instructions so new the compiler team hasn't caught up with them yet (or, obviously, a platform too new for the compiler to have platform-specific optimization). Simple, in-order execution (like the first Atom)? Fine, you might tie the optimizer. But something like Core? The fastest way to do any simple operation depends on what the previous several operations were, in a very complex way.

      For example, what's the best way to multiply a number by 8? Well, when are you going to reference the result? When's the most recent instruction that would tie up the silicon used for shifting? When's the next instruction that needs that same silicon? Maybe 3 adds is faster than a shift, maybe not. Heck, just multiplying is just as fast if it takes you long enough to use the result (everything's one clock, even division, if you wait long enough to touch the output).

      Modern human-driven optimization is about minimizing conditional branching and maximizing locality of reference (often competing goals), which you can do in C as easily as ASM. Lots of old tricks like 256-byte lookup tables to shortcut bytewise computation are (usually) bad ideas on modern chips.

      --
      Socialism: a lie told by totalitarians and believed by fools.
  20. faster start menu? by BrianSoCal · · Score: 1

    Seriously what else do you need the OS to do that it cant do on those specs? The OS's job is just to manage the system to allow your other programs (with higher reqs) to do your magical whizbang things.

    Did you want your start menu to pop up at 64-bit, 16gb ram speeds?

    1. Re:faster start menu? by Megol · · Score: 1

      Yes! Menu lag shouldn't be allowed!

  21. Desktop plateau? by Anonymous Coward · · Score: 0

    If you need more power, you know who you are: hardcore gamers, number crunchers, etc.

    Businesses are using these machines to interface with web sites which are database front-ends. You could do that with even lower specifications if the bells and whistles were turned off. The most hardware intensive things most home users do is watch videos. Some poorly designed web sites are forcing the machine to hold lots of image data in memory, so we need lots of RAM these days; but that's about it. Some truly horrible web sites are taking more cycles than hi-res video! It just goes to show you how much damage a poorly trained script jockey can do. I don't see any reason to change Windows reqs for those dumbasses. They need to fix their shit.

    Anyway, the min req. has plateaued for most of us. There's nothing to stop you from over-speccing to run some hot new game or crunch numbers. You don't need those specs just to run a desktop though. At least, you shouldn't...

  22. Apple has no problem leaving old hardware behind by QuietLagoon · · Score: 1
    My Mac is no longer supported (hasn't been for a couple of releases) by OS-X because the CPU doesn't do 64-bits. It's not even 10 years old yet, and it isn't supported by OS-X.

    .
    It was the first Apple computer I bought. It will be the last Apple computer I ever buy.

  23. Or the more apt reason by ADRA · · Score: 3, Insightful

    There's no reason why an OS needs to be any larger than it is. Let the market add value to a cornerstone product. There's no reason that the Linux kernel should ever take up a gig of ram because, hey lets throw more boiler plate into it.

    Microsoft has one job with Windows, and that's to make the best application shell possible for almost every possible desktop need. I think they've done a pretty good job at it, though they've fucked their UI core so badly time and time again, it feels like they're just re-arranging chairs to justify the upgrade cost.

    --
    Bye!
    1. Re:Or the more apt reason by Anonymous Coward · · Score: 0

      There's no reason why an OS needs to be any larger than it is.

      That is why every OS I have ever used was exactly the size it were at the time I installed it.

  24. Uh? by afidel · · Score: 2

    Have you not seen the HP Steam 7 or the Lumia 620? Both run Windows 8 and both have specs at or below the minimum for the desktop OS. There are also plenty of businesses that have pushed their PC refresh cycle out to 5-7 years so if you want them to upgrade you have to keep the minimum at what a typical business would have bought 5+ years ago.

    --
    There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    1. Re:Uh? by Anonymous Coward · · Score: 0

      The stated specs for Windows 8 are artificially inflated to match those of Windows 7. A major reason for doing this is so that people could directly update from 7 to 8 and see a significant performance boost. The same will be true for 10 (aka: 8 without the incompetent micromanaging)

      Actual minimum specs for 8 (and probably 10) are much closer to the optimal specs for XP than to the functional specs for Vista.

  25. Vista requirements are already stupid high. by Anonymous Coward · · Score: 2, Insightful

    I think it is sad we live in a world where people still aren't shocked by the Vista requirements and want them to be higher. WTF is wrong with the lot of you?

  26. *sigh* by Anonymous Coward · · Score: 1

    **Oh these minimum system specifications are high this must be a really good OS!**
     
      No it doesn't work that way... That would mean cars with lower fuel millage are better because they require more fuel, and therefore are doing so much more than your prius pha!

  27. Requirmnts by Anonymous Coward · · Score: 0

    You have to remember that windows 10 is going to be unified across multiple platforms. Tablet, phone, laptop and desktop. Some of the low end phones may only meet the minimum requirements. Also not all phones/tablets will have DX10 or a video card that supports it. The higher the minimum requirements for the OS the more that it takes away from the over all system so that it can function.

    This is the idea behind using composites in tranportation manufacturing. Lower the weight of the vehicle so that the engine isn't mainly being used to push around the heavy weight of the vehicle.

  28. Missing the point by prisoner-of-enigma · · Score: 4, Insightful

    I think this minimum spec idea misses the point. We're talking about an operating system, not an application. The OS should provide a platform (and, to a certain extent, services) upon which users will run the applications that actually get things done. The OS shouldn't have huge minimum specs because it's supposed to be relatively unobtrusive. When we start trying to load the OS down with all kinds of things that ought to be done with apps, we end up with a bloated mess, a one-size-fits-none concept that inconveniences everyone equally. I'd much rather they kept the specs low and pared some of the fluff from the OS instead.

    --
    In the end they will lay their freedom at our feet and say to us, Make us your slaves, but feed us. - Fyodor Dostoyevsky
    1. Re:Missing the point by Anonymous Coward · · Score: 0

      Operating System has been redefined for more than 10 years, grandpa. It doesn't mean just the interrupt handler, driver layer, & basic I/O API anymore. It includes a graphical shell, various background tasks, memory & cache management, virtualization, etc etc.

      The linux kernel by your definition is a bloated mess and we should all be using FreeRTOS or minix.

    2. Re:Missing the point by MPBoulton · · Score: 1

      The people that would benefit are people like our (well my parents) who wouldn't dream of installing something that doesn't come with Windows unless I suggested it. Additional software that allows them to do things that weren't commonplace 10 years ago (e.g.video chat) may well need better specs on a 32 bit Windows machine, but wouldn't be bundled. Software for many lay people also needs to look attractive for its time - this adds bloat to the software but is what 90% of MS Windows customers want. Doing that with the same specs mean either developing a horrible interface (Metro anyone?) or cutting back somewhere else.

  29. Hell no. by Anonymous Coward · · Score: 0

    Higher minimum requirements just means lower performance and often questionable benefits. Vista was targeted for a lot of hate because it traded performance for aesthetics. Do you really think anyone would thank microsoft for doing that again?

    The great thing about windows keeping the same requirements even as hardware rockets in performance is that windows just runs faster. A lot faster. It also leaves a lot more performance (and memory) spare for running actual programs - which is after all what windows is for. Anyway, what would you expect to get by increasing hardware requirements? Shinier windows? Nicer screensavers? Save it, I want a quick boot and high performance programs/games.

    But killing backwards-compatible software bloat, that's actually worthy of discussion.

  30. 64-bit by Anonymous Coward · · Score: 0

    They have increased the requirements on 64-bit edition over the time. Like Windows 8.1 requires that your CPU supports CMPXCHG16b, an instruction which was not included in early x86-64 CPUs.

  31. The Revolution went mobile and cloud by bigpat · · Score: 1

    What we have gained is smaller and smaller computing devices with more and more energy efficiency which allows us to go mobile and to also reduce costs on cloud infrastructure. Maybe it forced a step backwards in terms of application software compared to high powered desktops... but being able to put what would have been a fully spec'd computer less than a decade ago in your pocket and have it run for a day on batteries is something to find amazing and should not be lamented.

    I'd say if we are looking at making the desktop more relevant again, then it has to be a worthwhile enough experience to overcome the trade off to be sitting at a desk. High resolution monitors, multi-monitor applications, touch screen high resolution monitors laid flat on a conference table. (not head-mounted displays because those should be hooked to mobile devices to avoid cords), these seem like opportunities for "desktop" or workstation class or fixed computing applications where the display or inputs won't just fit in your pocket or on your glasses. Otherwise mobile and cloud computing are where it is at.

    1. Re:The Revolution went mobile and cloud by tepples · · Score: 1

      Until tablet operating systems implement window management more sophisticated than the MS-DOS-era "all maximized all the time" model, anything where you're writing one document while referring to another document is a desktop OS workload.

    2. Re:The Revolution went mobile and cloud by slaker · · Score: 1

      Some Android devices and Windows RT support resizable windows. Everyone wants to hate on Windows RT, but it's actually pretty nice for productivity. It just sucks at doing things that are fun.

      --
      -- I wanna decide who lives and who dies - Crow T. Robot, MST3K
    3. Re:The Revolution went mobile and cloud by tepples · · Score: 1

      Last time I checked, the Android CDD forbade devices from allowing the user to resize an application's window. If any Android device that your company makes or sells provides resizable windows, then no device that your company makes or sells will get Google Play. And let me know when there are any sort of programming tools to develop Windows RT apps on a Windows RT tablet with a keyboard that compare to AIDE, which allows developing Android apps on an Android tablet with a keyboard. Though you might dismiss it as impractical, the lack of any sort of on-device programming tools speaks to the Windows RT platform's lockdown philosophy. Or has something appeared on the Windows Store since I last checked?

    4. Re:The Revolution went mobile and cloud by Anonymous Coward · · Score: 0

      I just tried multi-window on my samsung s4. you're either confused or using a slashdot post as credible source.

    5. Re:The Revolution went mobile and cloud by tepples · · Score: 1

      I'm using the Android CDD, published by Google, as a credible source for which devices Google allows to have Google Play. One of the restrictions is that the screen size presented to an application MUST NOT change after installation, except for swapping the width and height. I myself haven't had a chance to use multi-window on Samsung devices because the Android devices owned by members of my family either are non-Samsung or were made before Samsung introduced multi-window. How does it work? Does it shrink the app and make its text smaller?

  32. Are you even listening to yourself? by JustNiz · · Score: 4, Insightful

    Just to run the OS requires 1GB of ram? ...and I'm meant to be impressed with how "small" this is?

    1. Re:Are you even listening to yourself? by jittles · · Score: 1

      Just to run the OS requires 1GB of ram? ...and I'm meant to be impressed with how "small" this is?

      No. To run the OS and do anything meaningful with it, you need at least 1GB of RAM. If they listed minimum requirements of 1GB and that was strictly for the OS, you would not be able to do anything useful with the computer if you had the minimum specs.

  33. It's a good thing MS is calling this Windows 10 by Anonymous Coward · · Score: 1

    Because the version number matches MojoKid's IQ.

    Not having to raise the minimum requirements is a good thing, you dolt.

  34. Only problem is the 32 bit part by pushing-robot · · Score: 2

    Keeping software requirements low is a good thing, and there isn't really any justification for making a basic desktop OS require good hardware if all people want to do is the same stuff they were doing ten years ago. If they wanted to weed out underpowered PCs, they should mandate an improved version of the Windows Experience Index be advertised alongside PCs with simple numbers for office and gaming performance, and maybe energy efficiency.

    On the other hand, it's long past time to put 32 bit out to pasture, at least on the desktop. Remember, this OS will probably still be supported in the mid-2020s. I'm not going to want to maintain a 32 bit legacy codebase when PCs are coming with 256GB of ram standard.

    --
    How can I believe you when you tell me what I don't want to hear?
    1. Re:Only problem is the 32 bit part by afidel · · Score: 2

      Eh, one of the biggest reasons they're keeping 32bit around is there are business customers that need the SysWOW-16 subsystem for stupid WISE installers that use 16bit code (ugh), also for low end tablets the remaining flash memory for 32bit is a bit more palatable.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
  35. Laughable submission by dreamchaser · · Score: 3, Informative

    The reason the specs have not changed is because CPUs and systems in general have been capable of doing most common tasks for at least 10 years. Are the use cases for extreme power? Yes. The submitter, however, makes it sound like it's a bad thing to be able to run on a wide range of hardware, including older slower machines. Are the minimum spec machines going to be able to run Crysis? Nope. Will they run Outlook, Work, and a browser? Yep. This is a non-story.

    1. Re:Laughable submission by Anonymous Coward · · Score: 0

      Yes, It laughably backfired. This was supposed to the next Microsoft can do no right news story, so the submitter tried to spin a good thing as a bad thing.
      For once, I'm proud of slashdot commenters for not falling for the BS.

    2. Re:Laughable submission by gstoddart · · Score: 2, Interesting

      I completely agree most people haven't needed a faster CPU in years, unless they're in the hard-core gamer category or doing serious computational work.

      Memory, on the other hand, is something you've steadily needed more of over time.

      Me, I'm betting with 1GB of RAM on a modern Windows version, and you'll already be using swap space before it's even done booting.

      And then it's going to just be slow from there.

      With "Outlook, Work, and a browser", it's going to be thrashing like mad.

      Really, "able to run on a wide range of hardware, including older slower machines" means, yes, you can, it doesn't mean you'll like it or that it's a good idea.

      Hell, our household machine with 4GB of RAM and XP Pro doesn't feel like it's got enough memory.

      --
      Lost at C:>. Found at C.
    3. Re:Laughable submission by dkman · · Score: 1

      It depends on your definition of Minimum Requirements. Will it install and start, sure. Will it preform at a usable level, probably for the unwashed masses, though it may be a little slow at times.

      Personally, for me, it's not worth looking at if it doesn't have at least 4GB of RAM. The OS likely chews on 1GB, a Browser likely 100-200 MB, Skype 130 MB, Office 50+ MB, SSMS 130 MB, VS 120 MB, etc. The point is that if you actually want to run anything those minimum specs are going to suck. They only account for getting the OS started, not actually having a system that's usable with any software. I think that is the problem.

      I also think it's fairly ridiculous that software uses so much memory to do some of these things, but that's another story.

      If the spec said that it required a 1.2 GHz CPU and 2GB RAM, but wouldn't stop you from installing and running it on 1 GHZ CPU with 1GB RAM it might make the intention clearer.

      --
      I refuse to sign
    4. Re:Laughable submission by dreamchaser · · Score: 1

      Oh I could not agree more. For me those specs would not work. The same goes for 'minimum' vs. 'recommended' specs on games. Sometimes, though, people on /, forget we are a very small minority of users.

  36. I don't think we are giving anything up. by Anonymous Coward · · Score: 1

    I'm not saying that we need to be stingy like in the bad old days when programmers where more concerned about saving clock cycles than writing scalable, maintainable, and reusable code. But now that we are passed all that, there is no sense in wasting cycles frivolously. Let the applications do that.

    Clearly you fail to understand maintainable, reusable source code can be and has been written with an eye to efficiency (clock cycles, memory). You 1MB minimum helloworld types need a kick in the posterior and then a drill to the skull.

  37. Embedded systems, low power PC's. by ltrand · · Score: 1

    Sure the average is higher, but you can still buy new systems that are that small. Its good I can stuff them in a time (except drive space) VM's and do virtual desktops. Keeping it efficient gives us more to do. Now, if you wanted to have tune points that enable or disable features according to hardware you could make that case. But I do like that Win10 preview was the easiest OS install I've ever done.

  38. More Power Arh Arh Arh by Anonymous Coward · · Score: 1

    Why the heck would an OS need to be dual core? This is dumb. The Vista specs are plenty powerful, it takes horribly bloated and bad coding to require more than that. For example Apple which doesn't support hardware that is 4 years old even though they've added nothing even remotely demanding enough to require cutting edge hardware.

    Until we get a 3D virtual UI that has to interpret brain waves while driving your car for you, the Vista specs are plenty for competent coders.

  39. The old hardware isn't the problem. Software is. by mr_mischief · · Score: 1

    The complaints have always been that MS caters too much to old software and that it continually requires more powerful hardware just to run the OS.

    They are starting to buck this hardware trend at the 1 GiB barrier (for the OS!). They finally dropped support for some old, buggy 16-bit DOS and Windows programs that third party developers wrote by bypassing any documented API, too. Most of the software ever written for Windows still runs on Windows, though.

    If you want to see what you're asking for, take a look at the 8 desktop vs. 8 RT fiasco when MS told people it was all Windows but it didn't run the same software. Don't ask for that.

  40. Windows should go 64-bit exclusively by Prien715 · · Score: 1

    My first 64 bit chip was the Athlon64 back in 2003 -- over a decade ago. If you're a developer in a compiled language, you presently either must (a) make a 32 bit version and ship it for both or (b) make separate versions and make yourself a support/testing nightmare. No surprise -- most developers opt for (a).
     
    ...but in a way, that makes using x64 Windows moot. Since there's no software for it (other than the OS itself a web browser or two), why switch? From extra registers, to more available memory, to the no-execute bit -- there's many good reasons to be using 64 bit software.

    The real reason, of course, is that many business run ancient 16-bit applications that won't run under a 64-bit OS. This could be fixed with an emulator, but MS, unlike Apple, doesn't have a history of making backwards incompatible moves tha ultimately improve its platform.

    --
    -- Political fascism requires a Fuhrer.
    1. Re:Windows should go 64-bit exclusively by omnichad · · Score: 1

      No, it doesn't make x64 moot. Each program can have a 4GB address space of its own. That alone is worth the price of admission.

  41. Re:Apple has no problem leaving old hardware behin by Anonymous Coward · · Score: 0

    Me too. My iMac is perfectly fine for what I need it to do which is to look nice in the living room, browse the net, and show photos. I don't appreciate the lack of support whatsoever. That thing cost me nearly $2000. Google even dropped Chrome support for it. I don't understand what's wrong with it. It works well.

  42. Here is why by deadweight · · Score: 1

    I decided to explore the world of Apple on the cheap. I got a used Mac for low $$ to see what we could do with it. It went in the dumpster in short order because it could NOT be upgraded enough to even work on a modern web site.

  43. Until recently Linux kernel supported 80386 by davidwr · · Score: 2

    It was less than 2 years ago that the Linux kernel dropped official support for the 80386 chip in the "current" kernel. It's successor, the 80486, has been around since 1989.

    Several versions of the Linux kernel that still support the 386 are still officially supported. See http://www.kernel.org/ for details.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
    1. Re:Until recently Linux kernel supported 80386 by mister_playboy · · Score: 1

      Pre-Pentium IV hardware is useless for desktop usage today when considering the requirement of the modern web. Additionally, very old hardware is often weaker than you might expect on Linux because the graphics drivers are hacked together. Pre-open source Intel drivers really blow on Linux.

      Every pre-Core destkop should be retired at this point. Early Core computer can be found for literally free on Craigslist.

      --
      Do what thou wilt shall be the whole of the Law ::: Love is the law, love under will
  44. Increase specs = Less PC's to buy an upgrade by waldozer · · Score: 1

    Why limit your pool of potential customers, if you don't have to.

  45. Minimum is not the same as Acceptable by pz · · Score: 1

    Has the OP ever tried to run Windows on a minimum-spec'd system? Even XP on a system with those specs frequently goes into pauses long enough to make the operator (me) ask, "did it crash, or what?"

    To paraphrase what others have posted, the operating system is the means, not the end. It should be small and lightweight. And it should bloody well not require beefier hardware than necessary. I've found that even generously spec'd systems still bog down under Windows as unknown processes kick off to do who knows what sort of housekeeping.

    Fast and resource non-intensive should be an uncompromiseable goal of an OS.

    --

    Put my fist through my alarm clock with its ding-dong death inside my ear. - The Blackjacks.
  46. Et tu, Linux? by Lawrence_Bird · · Score: 2

    Slackware Linux doesn't require an extremely powerful system to run (though having one is quite nice :). It will run on systems as far back as the 486. Below is a list of minimum system requirements needed to install and run Slackware.

            486 processor
            64MB RAM (1GB+ suggested)
            About 5GB+ of hard disk space for a full install
            CD or DVD drive (if not bootable, then a bootable USB flash stick or PXE server/network card)

    Debian:

      A Pentium 4, 1GHz system is the minimum recommended for a desktop system.

    Table 3.2. Recommended Minimum System Requirements
    Install Type RAM (minimal) RAM (recommended) Hard Drive
    No desktop 64 megabytes 256 megabytes 1 gigabyte
    With Desktop 128 megabytes 512 megabytes 5 gigabytes

    Ubuntu Desktop Edition

            700 MHz processor (about Intel Celeron or better)
            512 MiB RAM (system memory)
            5 GB of hard-drive space (or USB stick, memory card or external drive but see LiveCD for an alternative approach)
            VGA capable of 1024x768 screen resolution
            Either a CD/DVD drive or a USB port for the installer media

            Internet access is helpful

    Linux Mint 16

    System requirements:

            x86 processor (Linux Mint 64-bit requires a 64-bit processor. Linux Mint 32-bit works on both 32-bit and 64-bit processors).
            512 MB RAM (1GB recommended for a comfortable usage).
            5 GB of disk space
            Graphics card capable of 800×600 resolution
            CD/DVD drive or USB port

    1. Re:Et tu, Linux? by Keyboard+Rage · · Score: 1

      FreeBSD can do with even less: "Both FreeBSD/i386 and FreeBSD/pc98 require a 486 or better processor, at least 24 MB of RAM, and at least 150 MB of free hard drive space for the most minimal installation."

  47. Re:Apple has no problem leaving old hardware behin by __aaclcg7560 · · Score: 1

    It was the first Apple computer I bought. It will be the last Apple computer I ever buy.

    That's a stupid attitude. I have first-generation Black MacBook (2006) with a 32-bit CPU that the Apple Store repaired in 2012 for a broken CPU fan. Most PCs are obsolete the day after the warrantry expires, and no manufactuer would repair an out-of-warrantry PC. The fan went out again on my MacBook this summer. Since the CPU is 32-bit, and Google is no longer supporting the 32-bit version of Chrome, it's time for me to get a newer Mac.

  48. Re:Apple has no problem leaving old hardware behin by Anonymous Coward · · Score: 0

    Interesting, why the last Apple computer?
    Are you switching to PC's and Windows?

    I always assumed Apple massively optimised their OS for the hardware and for fluid responsiveness.
    And that's one of the reasons why it has the lowest power usage and the highest battery life compared to all other laptops - even surprisingly a massively stripped-down OS like ChromeOS and chromebooks.

  49. Because they want to run Windows ON smartphones... by rahvin112 · · Score: 1

    As the years roll by, you can't help wondering what we're actually giving up in exchange for holding the minimum system spec at a single-core 1GHz, 32-bit chip with just 1GB of RAM. The average smartphone is more powerful than this these days.

    Considering Microsoft's goal is to unite all their operating systems and have the same system running on all platforms this means they WANT to run windows on smartphones. So keeping the systems requirements less than the average smartphone would be their intent if they want that initiative to succeed. DUH.

  50. Same OS on desktop and laptop by tepples · · Score: 2

    On the other hand, it's long past time to put 32 bit out to pasture, at least on the desktop.

    After the RT debacle, Microsoft wants to ship the same operating system on the desktop and the laptop. And there are still plenty of laptops that come with less than 4 GB of RAM, such as the ASUS Transformer Book.

    I'm not going to want to maintain a 32 bit legacy codebase when PCs are coming with 256GB of ram standard.

    Just be glad Microsoft isn't Nintendo, which still has to maintain a runtime environment for its 8-bit codebase on its current consoles.

    1. Re:Same OS on desktop and laptop by 0123456 · · Score: 1

      And there are still plenty of laptops that come with less than 4 GB of RAM, such as the ASUS Transformer Book.

      Which has nothing to do with running 64-bit software. There are plenty of reasons to run 64-bit with less than 4GB of RAM, particularly on x86, where you get twice as many registers.

      Microsoft should have scrapped 32-bit Windows long ago. It's just another example of how out of date they are.

  51. Because add on vendors need to eat by gelfling · · Score: 2

    It's like the homebuilt PC market (which still sort of exists), such as Cube where the 'basic' model is little more than a motherboard into which you have buy all the extras that make it work, like RAM or non volitile SSD. It's like the new batch of $99 tablets purported to do 'everything' except of course for anything. It's like ordering a new Levovo Yoga and you discover that getting enough SSD to make it practical doubles the price.

    The funny thing is that apps are so bloated and so awful that even getting the most hardware you can afford is really only the difference between doesn't work at all and runs so poorly you think it doesn't work at all. My office laptop is a Toshiba R840 with 8GB RAM and a quad core CPU, a 500GB rotating drive and between the Java shit, management apps, endpoint agents, background tasks and 'automatic' updates it's a piece of shit that spends all day thrashing its brains out.

    MS is simply being lazy because if they told you what you really need you'd be forced to get a bigger machine than most people want to pay for. And after all they didn't say HOW it would run, only that would start (maybe).

  52. To migrate people off XP... by Anonymous Coward · · Score: 0

    Because it is more expensive to support 6 versions of Windows than it would be to get people to migrate their old computers from 2000/XP/Vista/7/8 to 10. Not that it will happen, but that would ultimately save money.

  53. What would it look like? by Anonymous Coward · · Score: 1

    It would look like a video game instead of an OS

  54. Because people still run systems with low specs. by Anonymous Coward · · Score: 0

    Because both Intel and AMD still sell 32-bit, and single-core chips. And because manufacturers sell brand new products with these chips.

    Because while Steam's hardware survey may show the vast majority of people use DirectX 10 hardware, that survey is limited to people who install a GAME CLIENT. Many low-end home and business users will still have old integrated graphics - which are fine for non-game uses!

    Because Microsoft wants to keep the low-end market, because it keeps people on Windows. As evidenced by their recent move to make Windows *FREE* on low-end systems.

  55. For fucks sake by Anonymous Coward · · Score: 0

    When vista came out there were a million "Need to spend $1000 to run vista" jokes floating around this place.
    Now, years later, even though computers have moved on significantly, microsoft has released specs on a lightweight OS that has not bloated even an inch and you guys are like "well, this seems like a missed opportunity".

    Gimme a fucking break.

    1. Re:For fucks sake by omnichad · · Score: 1

      In other words, yesterday's bloat is today's lightweight OS.

  56. Lost ur mind by WaffleMonster · · Score: 1

    I don't know you tell me what difference would mandating two cores or DX10 make? What is there to be gained?

  57. Jeeze by fustakrakich · · Score: 1

    Why they just make a "new" version and and "old" version? Oh yeah, it might cost an extra penny..

    --
    “He’s not deformed, he’s just drunk!”
  58. Are you kidding me? by Anonymous Coward · · Score: 0

    How much better might the final product be if Microsoft put less effort into validating ancient hardware and kicked those specs upwards, just a notch or two?

    It would look like OS X. It would delay their nearly realized plan of "convergence". It would alienate their largest paying customers (business and government).

    I can only assume that MojoKid is a gamer with little grasp on reality.

  59. tell my 2008 Mac . latest for $35 by raymorris · · Score: 5, Insightful

    Somebody forgot to tell my Mac that, because more than six years after purchase it's still running the latest OS. I just ran an update this morning, in fact. I think we spent $35 on an upgrade once.

    1. Re:tell my 2008 Mac . latest for $35 by Anonymous Coward · · Score: 0

      Any Core 2 Duo can't run Lion or Mavericks, well unless you go to youtube and see the pricks at apple are just blocking it for no real reason.

      Typical apple bullshit between point versions. I had enough software compatibility issues that I gave up on OS X altogether. Adobe software has ran better on Windows for more than a decade anyway.

    2. Re:tell my 2008 Mac . latest for $35 by MaWeiTao · · Score: 1

      You must have gotten your Mac right on the cusp where they went fully 64-bit. Or maybe it's a Mac Pro? I got my iMac at about the same time and I'm stuck 2 versions behind now.

    3. Re:tell my 2008 Mac . latest for $35 by Anonymous Coward · · Score: 0

      Tell that to my 2007 mac. Testing Yosemite on it right now.

      Someone has been sniffing the varathane again.

    4. Re:tell my 2008 Mac . latest for $35 by Anonymous Coward · · Score: 0

      I've found that OSX is equally sluggish on both old and new hardware alike too.

    5. Re:tell my 2008 Mac . latest for $35 by Anonymous Coward · · Score: 0

      Your good fortune may soon end. My 2008 MacBook Pro runs the latest OS X, but my 2007 Mac mini is now forever stuck at 10.7, meaning it won't run Apple's latest software development tools -- which is somewhat annoying since I bought that machine specifically to use for development. OK, so those two gigabytes of RAM were also starting to feel a bit cramped, but still, my equally old Lenovo T61 runs the latest Windows and Linux releases just fine.
      I like Apple's products, but I do think they tend to abandon them too quickly. The company is profitable enough that they could afford to treat their customers a bit better.

    6. Re:tell my 2008 Mac . latest for $35 by Bengie · · Score: 1

      MAC's vary in price a lot, but most medium to high end MACs cost about 100%-200% than it costs to build the computer yourself. You've paid for 50 years of OS upgrades through your absurdly expensive hardware.

    7. Re:tell my 2008 Mac . latest for $35 by Anonymous Coward · · Score: 0

      How about late 2007 MacBook? It's can only run OSX that's a couple of releases old. But it can run the latest Windows and Ubuntu.

  60. Actually, there were small changes by Anonymous Coward · · Score: 0

    If you wanted to move all the way to Win 8.1 64-bit your CPU had to support PAE, NX, and SSE2. Otherwise you're limited to 32-bit.

  61. Minimal config != usable config by janoc · · Score: 1

    Honestly, the minimal required configuration is more to appease the marketing department and industrial partners than any sort of practically useful information.

    Anyone who has attempted to use Windows Vista/7/8.x on anything with less than 4GB of RAM knows that it is completely unusable. It might run in 1GB, but there is nothing left for any applications. Even 4GB is barely enough for some basic work. For any serious use one needs at least 8GB or more and a modern CPU - likely an i3 or i5 at least.

    The other reason is likely pressure from Intel, because they want to keep selling their Atom CPUs. Which are both slow (when clock speed is concerned) and most of them are 32bit only due to various issues (some CPUs not supporting 64bits, mobos/BIOS/drivers not working/not available for 64bits, etc). The moment Windows was 64bit-only, Atom would be dead. It is the same story as downgrading the requirements for Vista so that it could be used on the machines running the integrated Intel graphics back in the day. It was practically unusable, but allowed Intel to claim it is compatible ...

    1. Re:Minimal config != usable config by Shirley+Marquez · · Score: 1

      Current Atoms (Bay Trail) are 64 bit capable. Many of the laptops using them run the 64 bit version of Windows, because they have to in order to use their full 4GB of RAM. Bay Trail tablets are mostly running the 32 bit version because they only have 1 or 2GB RAM; they could use 64 bit Windows but the memory and disk space requirements for the 32 bit version are a bit lower so they use that.

  62. Re:Apple has no problem leaving old hardware behin by Carewolf · · Score: 4, Insightful

    My Mac is no longer supported (hasn't been for a couple of releases) by OS-X because the CPU doesn't do 64-bits. It's not even 10 years old yet, and it isn't supported by OS-X.

    .

    It was the first Apple computer I bought. It will be the last Apple computer I ever buy.

    Apple is a hardware seller. They make money on leaving old hardware behind in their software. Microsoft does not make money on making hardware obsolete, on the contrary, as long as it doesn't take them too long to support something, they make MORE money on supporting old hardware.

  63. Re:Apple has no problem leaving old hardware behin by Anonymous Coward · · Score: 0

    Interesting. I don't encourage you to buy shiny new computer every couple of years, but 10 years is a pretty good run for any computer.
    maybe my next computer will be a MAC.
    Or this was just a covert endorsement hidden under the cover of (O I hate .... it so much) for the fear of your karma points ?

  64. It's the operating system being efficient. by Anonymous Coward · · Score: 0

    just think how well you could hack the gibson if you had full 3d representation of the file system. Along with logo'd icons scrolling past for each packet your network was sending / recieving. Thats what IT needs and by proxy what M$ needs.. a special effects department for OS's.

  65. Two problems by roc97007 · · Score: 2

    I see two problems with upping the system requirements for a new version of the OS.

    1) (and probably most important) The "low end" may operate on slim margins, but it does sell licenses and increase penetration. I don't think Microsoft can afford to ignore this market.

    2) The OS is not an application! It runs applications. For the OS to be light weight with respect to system resources is a GOOD thing, as it allows more resources to be available for applications. I'd much rather have my apps run faster than see the desktop do flashy stuff or the OS run a bunch of heavy weight services just in case I might need them someday.

    --
    Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
    1. Re:Two problems by strikethree · · Score: 1

      Yes, but if Microsoft says that the operating system only (only? really? I used to work on computers that had 4 kilobytes or RAM... but whatever) needs 863 megabytes of RAM then you can bet there will be a LOT of manufacturers out there that will find a way to get less than a gigabyte of RAM into their machines with millions of not very tech savvy customers buying them and getting upset at how crappy their experience is.

      In other words, it is in Microsoft's best interest to set requirements ABOVE what the operating system itself requires.

      --
      "Someone needs to talk to the tree of liberty about its ghoulish drinking problem." by ohnocitizen
    2. Re:Two problems by roc97007 · · Score: 1

      Yes, but if Microsoft says that the operating system only (only? really? I used to work on computers that had 4 kilobytes or RAM... but whatever) needs 863 megabytes of RAM then you can bet there will be a LOT of manufacturers out there that will find a way to get less than a gigabyte of RAM into their machines with millions of not very tech savvy customers buying them and getting upset at how crappy their experience is.

      In other words, it is in Microsoft's best interest to set requirements ABOVE what the operating system itself requires.

      ...and if Microsoft sets system requirements to 1.6 Gbytes, manufacturers will put only 2 GB of ram in the machine. And if Microsoft sets system requirements to 15.5 Gbytes, manufacturers will only put 16 Gbytes in their machines.

      Besides, it's Microsoft. We know the experience is going to suck. We only stick with it for compatibility reasons.

      --
      Oliver's law of assumed responsibility: If you're seen fixing it, you will be blamed for breaking it.
  66. Re:Hmmm .... by ericloewe · · Score: 1

    Upgrade to 7 or 8 and enjoy a little better performance. Not magically better, but better.

  67. What they're gaining: software upgrade sales by Animats · · Score: 1

    No business is going to "upgrade" their desktop machines for Windows 10. Their business applications won't run any better. If Microsoft wants to sell this as an upgrade, it has to run on the installed base of hardware.

    Realistically, business mostly wants to run Windows 7.

    1. Re:What they're gaining: software upgrade sales by Anonymous Coward · · Score: 0

      The majority of our PC replacement program this year will be tablets similar to the Surface Pro 2 / Lenovo 10. - a single managed enterprise device is becoming much more viable now that tablets are becoming better specced. We're trying to hold off 8.1 however for tablets it's pretty much required - Windows 10 looks to be a very good replacement for both 7 & 8.1, and would simplify the effort to manage our desktop environment.

  68. Let me get this straight... by Chris+Mattern · · Score: 1

    ...you feel that they're not bloating the OS enough?

  69. Let me get this straight by Yunzil · · Score: 3, Insightful

    Someone on Slashdot is actually complaining that Windows runs well on older hardware? We're through the looking glass here, people.

  70. Came here to say... by Anonymous Coward · · Score: 0

    I installed Windows Technical Preview on a Gateway TA6 convertible tablet, previously running Windows XP Tablet Edition on a T7600 C2D, 2GB DDR-6400 RAM, and I would like to say it's smooth, but it's really not. To be fair, the 945GM probably holds it back. Still, the unsupported FinePoint digitizer and Wifi that only works every other time it's turned on are big showstoppers. Would that Microsoft would spend some internal resources supporting machines like this that *should* run any recent Windows version well, but which have been entirely forgotten by their manufacturers. I suspect the Intel 3945ABG adaptor for Wifi is deliberately obsoleted, at any rate. The FinePoint company appears to have been bought, with no plan to support devices already in users' hands.

    1. Re:Came here to say... by jones_supa · · Score: 1

      I just installed the Technical Preview on an LG LW25 laptop (T2400, 2GB, 945GM, 3945ABG) and it runs very smoothly. However carried from 8.x is a problem where this WiFi card causes audio buffer underruns.

  71. Edit a standard-def proxy by tepples · · Score: 1

    About your GoPro video: Can't you edit the video in standard definition, export the edit decision list, and then re-render in high definition?

    1. Re:Edit a standard-def proxy by Anonymous Coward · · Score: 0

      About your GoPro video: Can't you edit the video in standard definition, export the edit decision list, and then re-render in high definition?

      I guess you could, would require fairly time consuming converting of clips before editing, and risk of not being accurate in edits like color correction and fine tuning. And just the final render at the end is already a frustrating waste of time (because you do it far more than once...). But out of curiosity what kind of tool would you recommend for something like you propose? I currently use Sony Vega Pro 13.

    2. Re:Edit a standard-def proxy by tepples · · Score: 1

      Someone got proxy video editing working in Premiere. It's probably even easier in anything that can output an AviSynth .avs file.

  72. What features? by tepples · · Score: 1

    Could you describe some of the features that could be made richer by requiring more hardware for the operating system itself?

  73. New OS? Fooled you again. by Anonymous Coward · · Score: 1

    It has all the minimum requirements of Vista because it _is_ Vista SP3. For the last few editions, they have changed the UI but under the hood it's just Vista in new clothes. And we keep throwing them money every time.

  74. Someone else's server by tepples · · Score: 1

    If you take away the internet, your computer becomes significantly worse than it was.

    There's plenty I can do with my PC while it is disconnected from the Internet. Because I have no Internet connection while commuting to and from work on public transit, I typically carry about three hours of programming work on my laptop that can be done without connection to the Internet. Or I might download a bunch of pages from Cracked and open them in Firefox tabs to read on the bus. Or I might download an entire page of Slashdot comments, compose replies while offline, and post them the next time I connect. (I did just that for most of this very comment.)

    Once you stop needing computing cycles locally, why would you upgrade your system (you being anyone/company/institution)?

    In the era of computing on someone else's server, desktop CPUs remain important for at least three reasons. First, desktop and server PCs use CPUs of the same or similar microarchitecture. Better CPUs means each server can handle more load. Second, not everybody wants to blow their entire 5 GB/mo cap on bouncing things off someone else's server. Third, using someone else's server means you're subject to the privacy (or lack thereof) policy of the server operator and whatever other anti-user "dark patterns" are implemented in the non-free software running on that server.

  75. they need all the users they can get by johnrpenner · · Score: 1

    they need all the users they can get — they cant afford to shut out any percent of their upgrader base, or windows 10 slow uptake rates will get users with lesser machines to further jump ship to the linux and mac folds.

    2cents from toronto

  76. In practice, ARM is associated with... by tepples · · Score: 1

    Or, you know, simply use ARM

    Apart from RISC OS way back when, most operating systems designed for ARM CPUs have either A. cryptographic lockout to shut out software not approved by the hardware maker, or B. an inflexible "all maximized all the time" window management policy, or C. both. These are not inherent in the ARM architecture but so closely associated with it that people go x86 just to avoid them.

    1. Re:In practice, ARM is associated with... by Anonymous Coward · · Score: 0

      Would that include ARM Linux, which has been around for donkeys years?

  77. Legacy systems and software by Mr_Wisenheimer · · Score: 1

    Win32 still runs 16 bit applications and still runs on 32 bit processors. Since there were 32 bit CPU's designed to be Vista compatible, it makes sense to keep around the 32 bit version of Windows 10 so long as the operating system can still reasonably be run on those computers and CPUs.

    Servers are a different matter entirely. Most of the new developments in Windows Server (like virtualization) require more than 4GB of RAM to run effectively. For legacy environments, an upgrade to Server 2008 will keep old servers running for several decades.

    By contrast, my old tablet PC from 2005, which shipped "Vista compatible" with XP Tablet PC edition works very well (as well as can be expected) with Windows 7. It works very well as a test-system for doing things such as data logging and as a OneNote entry device at home (my other Tablet PC has a smaller, touch-sensitive LCD which makes it more ideal for mobile computing than sitting at my desk writing out equations).

  78. It's for DaaS / VDI by grilled-cheese · · Score: 1

    Another component to consider is that bumping the specs for the OS can have a significant impact on DaaS/VDI offerings. Just increasing the RAM requirements by 1-2GB can be significant when you're running 50-250 guest OS on a single piece of hardware. Microsoft has a vested interest in keeping those specs as low as possible to make greater consolidation happen at a lower price point.

  79. Do you work for microsoft? by Anonymous Coward · · Score: 0

    Microsoft would love to assure that everyone everywhere bought a bleeding edge brand new computer every month. Seriously - if they could assure it then they would.

    You must be young. 95% of everything that windows Vista, 7,8, and 8.1 did was done well by XP on a decent Pentium III. Go look at the minimum hardware required there.

    Improvement in software, when it is actual improvement and not bloatware, means that you can do more with the same hardware. Instead of taking to floppy disks to hold the program, it would take just one. Optimized code. Efficient and clean.

    Windows idea of improvement is going from a box of floppies to a CD rom to a DVD rom - to do the same job as the two floppies.
    They charge more too.

    Before you convince them to remove themselves even more from the marketplace by even more substantially watering down the value proposition of their product, you have to understand the fundamentals of computer science.

  80. Some apps don't exist for X11/Linux by tepples · · Score: 1

    Sometimes the industry-standard apps aren't even officially ported to X11/Linux. For example, every new hire in graphic design who habitually uses Photoshop or Illustrator for Windows would likely have to be retrained in GIMP or Inkscape. How practical would that be?

    1. Re:Some apps don't exist for X11/Linux by Anonymous Coward · · Score: 0

      Wow, I should get a call centre or typical office job! I love using Photoshop and Illustrator!

    2. Re:Some apps don't exist for X11/Linux by tepples · · Score: 1

      Since when are specialized call center apps and 100% compatible Microsoft Office file editors and Exchange clients ported to X11/Linux?

    3. Re:Some apps don't exist for X11/Linux by KlomDark · · Score: 1

      You must have missed this: Photoshop is coming to Linux

    4. Re:Some apps don't exist for X11/Linux by exomondo · · Score: 1

      You must have missed this: Photoshop is coming to Linux

      You seem to have missed the tail end of that: Adobe is bringing the king of all photo editing software, Photoshop, to Linux-based Chrome OS , not on to every Linux system and also it is a streaming, cloud-hosted version so "Photoshop is coming to Linux" is a bit disingenuous.

  81. hardware has hit a wall so leave it as is by thetoadwarrior · · Score: 2

    In case you haven't noticed processors aren't getting any faster and haven't been for ages. Why would you want Windows using even more of the processor rather than letting applications use the rest?

    And because of that there are still a bunch of low-end PCs being sold and people simply not upgrading because really there's no point. Microsoft upping the requirements would just cut down their market. There are too many options for them to bully people like they used to do.

    1. Re:hardware has hit a wall so leave it as is by jones_supa · · Score: 1

      And because of that there are still a bunch of low-end PCs being sold

      This is the real reason. For example new chips like the AMD E1-6010 and Celeron N2830 are even slower than an Core 2 Duo.

    2. Re:hardware has hit a wall so leave it as is by ihtoit · · Score: 1

      Pretty much this. I think it was Intel who started the fashion for cramming more cores onto a die to save power (by slowing them down as well so a dual 1.6 would report to some apps as a single 3.0 or thereabouts), they also found it to be a great moneymaker, as now you could market the Core Duo and say "Hey, this thing is TWICE AS GOOD as a single core Pentium 3.0!". The juries are still out on this one, as for some apps (thread heavy ones) dual core is fantastic, for others (process heavy like video rendering) single core is better but the faster the better. Source: own experience with a dual 1.6 next to a 2.66 P4 - in nearly every "real world usage" benchmark the P4 pisses all over the dual core, the only thing the dual core excels in is database processing, which the P4 really struggles with. My son has a quad core, each core clocks at 3.2GHz and he's still refusing to lend a core (that doesn't get used) for me to use for rendering.

      --
      Political debates have me rolling my eyes so much I think I got optical whiplash. I should sue. - Foamy The Squirrel
    3. Re:hardware has hit a wall so leave it as is by WuphonsReach · · Score: 1

      Single-core performance has mostly stalled, yes. It used to double in power every 3 years, but since mid-2000s, that pace has slowed dramatically.

      I'd estimate about 10-15% improvement per year these days. A modern 2.5GHz Intel i5/i7 is probably 50-75% faster then a 2.5GHz Intel Core/Core2 from 2007. Plus memory speed has gone from DDR2-533/800 to DDR3-1600 (or 2400-3200), which also makes for a 10-30% boost.

      Over a 5-year time span, it's definitely noticeable. And a 7-year old machine (even with dual-core, a SSD + fresh install of Win7 + 8GB RAM) does feel a bit sluggish compared to a more recent machine. My AMD FX-8350 is much more enjoyable / responsive then my Intel Core2 Duo from 2007. And the older machine runs Win7, 8GB and a SSD.

      Now, we're long past the days of needing to upgrade every 3 years just to do the bare minimums, but you can't run a machine forever. Keeping a machine for five years is pretty common, and you can stretch that to 7-10 years if the hardware holds up. Multi-core, plenty of RAM, and SSDs help greatly in that regards. Most of the PC retirements from when multi-core became common are likely to be hardware related.

      --
      Wolde you bothe eate your cake, and have your cake?
  82. Microsoft's business model is legacy support by Mr_Wisenheimer · · Score: 5, Informative

    Many 16 bit applications from the 1980's will run fine on Windows 10 32 bit edition.

    Microsoft, more than any other company, has spent money ensuring that old software runs smoothly on newer operating systems. It is not perfect, and it has a lot of downsides, but it is also whey the corporate world and government has embraced MS as the desktop operating system of choice.

    They are not going to get rid of Windows 32 on the desktop until there are almost no desktops out there that will run it. 2014 was the first year that Intel fully embraced x64 bit architecture for all of its chips. Most computers more than 10 years old are x32. There are a ton of netbooks and netbook tablets manufactured up until 2013, many that shipped with the EOL OS XP that need to be upgraded to Windows 10.

    1. Re:Microsoft's business model is legacy support by SocialEngineer · · Score: 1

      This. I still use an ancient version of CuteFTP, which I purchased over half my life ago IIRC (I'm 31), on Windows 7 now. Zero problems.

      --
      "Better to be vulgar than non-existent" -Bev Henson
    2. Re:Microsoft's business model is legacy support by unixisc · · Score: 1

      The solution to this sounds simple:

      • - Make Windows 10 a pure 64-bit OS - no 32-bit anything
      • - For any 32-bit apps that have to run, have VirtualPC with XP-Mode, and let anybody who wants to run those 32-bit apps go into XP mode. Make that an installable module from the Windows DVD itself
      • - For any 16-bit apps that have to run, have VirtualPC with a WfW3.11 mode run, and support those 32-bit apps. Hey, let's even toss in an MS-DOS VM, while we are at it

      There is no reason to keep supporting 32-bit for all the old 32-bit CPU laptops. For starters, even if Windows 10 is 32-bit, it won't run on laptops with 256MB of RAM, which was the minimum needed for XP, when that was around. People have just now left XP for 7, but I wonder how many of them just migrated to a completely new PC w/ OS, as opposed to upgrading their OS alone? I myself had an Adobe Acrobat version break when I upgraded, and also lost support of my old printer. I had to install VirtualPC and go into XP mode to run those.

      Since we already have a disruptive migration from XP to 7, why burden 10 with 32-bitness from the past?

    3. Re:Microsoft's business model is legacy support by Mr_Wisenheimer · · Score: 2

      Just because YOU think that there is "no reason" to support the hardware does not mean that there actually is "no reason".

      I have an old laptop that came with XP. It is 32 bit with 2GB of RAM. It works fine on Windows 7 which I upgraded for free. If it were still on XP, I would probably upgrade to 10 if it were free or cheap now that XP is kaput.

      There are a ton of computers that are perfectly serviceable for what they are used for that have 32 bit processors. A lot of them are still running XP. These computers still need support. Since Microsoft doesn't profit from forcing you to retire your old computer, there is no reason to drop support for their customers who have serviceable units with 32 bit processors.

    4. Re:Microsoft's business model is legacy support by Jane+Q.+Public · · Score: 1

      It is not perfect, and it has a lot of downsides, but it is also whey the corporate world and government has embraced MS as the desktop operating system of choice.

      To what government are you referring? The U.S. government has made strong moves toward Open Source, and the military barely glances at Windows anymore (with a few notable exceptions).

      Many other governments (and I do mean MANY) won't touch Windows at all. They feel (in my opinion rightly): if it ain't Open, it ain't suitable for public agencies.

    5. Re:Microsoft's business model is legacy support by Mr_Wisenheimer · · Score: 1

      Almost every military-issued computer I have ever seen runs Windows. Until fairly recently, just about the only smartphones approved for classified communication were running Windows CE. Last year, the DOD spent over half a billion dollars on licenses for Windows 8, Sharepoint, and Office 2013.

      I would be willing to wager a huge amount of money that the US government is far and away Microsoft's largest customer. Almost every standard-imaged US government workstation and laptop have ever seen runs Windows.

    6. Re: Microsoft's business model is legacy support by Anonymous Coward · · Score: 0

      Segregating 32bit away from 64bit via virtual machines breaks IPC. No thanks, I need to rely on that a fair amount at work.

    7. Re:Microsoft's business model is legacy support by Jane+Q.+Public · · Score: 1

      I'm not saying they're not, but at the same time I've read that the Pentagon has rejected Windows for certain "critical" operations.

      It must be kept in mind that for the U.S. government, Windows is not "closed". But for other governments -- even most other governments -- it is a different story.

      They don't know the internals and don't trust them. In the same way that the U.S. has (finally... it took a hell of a long time) started looking at Chinese ICs as a threat.

      Personally (not having the direct inside view our government has), I wouldn't use Windows for ANYTHING critical. And I feel very sorry for any troops of ours who have to.

    8. Re:Microsoft's business model is legacy support by Mr_Wisenheimer · · Score: 1

      With DOD computers, the problem is the opposite of being too insecure. Windows computers and the networks they connect to are incredibly locked down and slow. Most users either cannot install software or their computers are automatically reimaged the next time they boot. You cannot log on to even a laptop without a smatcard that gets permanently locked if you enter the wrong key more than twice. Plugging an unauthorized device into the network triggers a lockdown and an investigation, even if the network itself is not used for classified information.

      Windows is designed to be very secure and have its security policies easily managed but most corporate IT departments don't implement the best security measures because of the huge headache that creates.

    9. Re:Microsoft's business model is legacy support by Jane+Q.+Public · · Score: 1

      Windows is designed to be very secure and have its security policies easily managed but most corporate IT departments don't implement the best security measures because of the huge headache that creates.

      That's the most hilarious thing I've read in days.

      ALL major operating systems offer the very same protections. This is a matter of IT and how they set it up, not the software at all.

      You're trying to school someone who has been doing this for 30 years. You're not just wrong, but laughably wrong.

  83. Lighting the display by tepples · · Score: 1

    My first-generation Nexus 7 tablet spends more milliwatts on lighting the display than on processing. In such a case, it's best to complete the processing as soon as possible so that you don't have to keep the display lit as long.

    1. Re:Lighting the display by K.+S.+Kyosuke · · Score: 1

      Your reasoning is qualitatively correct, but quantitatively, whether this helps depends of the actual figures involved. Anyway, modern higher-end ARMs have heterogeneous cores for precisely this reason.

      --
      Ezekiel 23:20
  84. WfW in VM by tepples · · Score: 2

    If 16-bit applications are the real problem, then perhaps Microsoft should make a Windows 3.11 for Workgroups image for Microsoft Virtual PC available to all licensed users of 64-bit Windows 10 Pro the way Windows 7 Pro came with the "XP Mode" virtual machine. But I imagine the only "16-bit applications" that most home users will be running are emulated games for the Sega Genesis and Super Nintendo Entertainment System video game consoles.

    1. Re:WfW in VM by riis138 · · Score: 1

      I have seen some very old apps working in healthcare I.T., especially in the microbiology lab. A virtual machine for legacy apps would be a major boon for those of us in the trenches supporting software from the Clinton administration.

      --
      Somewhere, something incredible is waiting to be known. -Carl Sagan
    2. Re:WfW in VM by Mr_Wisenheimer · · Score: 5, Insightful

      16 bit applications were just an example. DOS is pretty much free as is Microsoft's visualization environment if you run 64-bit windows. There still are quite a few legacy 16 bit DOS applications out there, btw. You pay millions of dollars to code a solution back in the 1980's or 1990's and upgrading the software is not always the best option. Heck, there is still a lot of legacy code out there from before the introduction of the MS-DOS PC in the early 80's.

      The point is, MS cares a lot about compatibility. A lot of times, "run in XP mode" is good enough to get most problems fixed and 64 bit windows supports compatibility modes going all the way back to the first 32 bit OS, which is Windows 95.

      While a program written for Windows 10 probably won't run on Windows 95, a business program written for Windows 95 probably will run on Windows 10, and corporations care a lot about that compatibility.

    3. Re:WfW in VM by jonbryce · · Score: 1

      But would you be able to directly address the pins on a parallel port from a virtual machine?

    4. Re:WfW in VM by beelsebob · · Score: 1

      More than that - this software only exists because Microsoft continues to support it. If Microsoft simply dropped support, then they would end up in a situation where people actually made sure their code was maintained, and ran on modern systems correctly without hacks.

    5. Re:WfW in VM by solidraven · · Score: 1

      VMs are fine, until you need to interface with hardware like lab equipment that is...

    6. Re:WfW in VM by Anonymous Coward · · Score: 0

      Yep, you can.

    7. Re:WfW in VM by jo_ham · · Score: 3, Interesting

      We have electrochemistry kit that is chugging along on a PC running Dos 6.2 and Win 3.11.

      Getting your data off requires a floppy disk as an intermediate step. I have no idea what we'll do if that machine ever craps out - it would be a shame to have to retire the potentiostat because the computers that it was designed to talk to have effectively ascended to godhood in the meantime.

      It's certainly not the only piece of analytical kit that is tied to legacy hardware. We have a couple of FTIR machines that look like props from Fallout: New Vegas but work just fine and I'm pretty sure the EPR computer is running Win95.

    8. Re:WfW in VM by toejam13 · · Score: 1

      An easier solution would be to include a Pentium compatible processor emulator for NTVDM. That's what Microsoft did for NT4 and NT5 for the DEC Alpha platform. I'm actually surprised they haven't done the same for x86-64 editions of NT.

      I found that a surprising number of older Win32 programs came with Win16 installers. That's where I ran into troubles when I upgraded to XP 64-bit edition. Having a WfW virtual machine really wouldn't have helped.

      These days, I'd argue that the majority of 16-bit programs home users have are old games. The vast majority are going to be DOS based, since gaming under Windows back in the 16-bit era wasn't very popular. DOSBox already provides a great solution, and is superior to NTVDM in most ways.

      Over on the corporate and industrial side, you're still looking at more DOS based programs than Win16 programs. There is still a lot of industrial control and custom inventory software running on DOS. Might be nice to run that within a VM if you're running an all IPv6 house (let the VM do NAT6) or on new hardware that doesn't have a DOS drivers. But most of those people are probably going to hit eBay for used equipment that can still run DOS as opposed to new gear.

      For the few Win16 programs still kicking around, a NTVDM under x86-64 that supports Win16 would be nice. Much easier than messing with a full VM. But there is probably so little demand, MS would rather leave it to third parties at this point.

    9. Re:WfW in VM by unixisc · · Score: 2

      Like you said, if they can achieve that in XP mode, why would they need to burden 10 with 32-bit modes? Make it a pure 64-bit OS no matter how much RAM - or keep it at 4GB minimum - and then run anything that's 32-bits in XP mode

    10. Re:WfW in VM by Anonymous Coward · · Score: 0

      Backwards compatibility has always been Microsoft's biggest selling point since the early days of DOS.
      MS-DOS it's self was similar in operation to it's predecessor CP/M which made it easy to port a lot of CP/M programs to DOS.
      This is why PC compatibles became so popular in the late 80s even though far superior machines such as the Amiga,Macintosh, and Atari ST existed.

    11. Re:WfW in VM by Anonymous Coward · · Score: 0

      By saying CP/M was the predecessor I do not mean literally as it was made by a different company Digital research but in that it was the defacto OS for small business machines before MS-DOS became popular.

    12. Re:WfW in VM by Mr_Wisenheimer · · Score: 1

      Because they still have to support legacy hardware. 2014 was the first year that Intel fully switched its x86 chips to 64 bit. Some manufacturers might still be shipping atom-powered PC's with 32 bit processors. There are a ton of netbooks from a few years back with 32 bit atom chips that shipped with the deprecated XP OS. Any computer ten years or older with an Intel chip is almost certainly 32-bit and laptop and desktops kept shipping with 32 bit CPU's long after 2005.

      Dropping the 32-bit version of the NT desktop OS now would leave a ton of computers unable to run the newest operating systems. Unlike Apple, Microsoft doesn't make money by forcing you to buy new hardware. Until most 32 systems are retired or until Windows simply cannot run well on 32 bit systems, it makes no sense for Microsoft to drop support, especially with Windows XP being EOL and Windows 10 being capable of running on many if not most of the still-useful 32bit XP systems.

    13. Re:WfW in VM by LinuxIsGarbage · · Score: 3, Informative

      We have electrochemistry kit that is chugging along on a PC running Dos 6.2 and Win 3.11.

      Getting your data off requires a floppy disk as an intermediate step. I have no idea what we'll do if that machine ever craps out - it would be a shame to have to retire the potentiostat because the computers that it was designed to talk to have effectively ascended to godhood in the meantime.

      It's certainly not the only piece of analytical kit that is tied to legacy hardware. We have a couple of FTIR machines that look like props from Fallout: New Vegas but work just fine and I'm pretty sure the EPR computer is running Win95.

      I shudder at the thought of using a floppy. I like the software FastLynx Kind of like Interlink, but it can easily drag and drop files from DOS to a Win95/98/ME/NT4/2K/XP/Vista/7/8 (32 or 64 bit) using Serial or parallel null modem cables. Cheap $2 USB-serial adapter can be had on eBay. To get faster Parallel transfers requires a real LPT port on your modern PC, not a USB adapter. You can get the bundle from them that includes the software, and cables.

      If you have a PC with a broken floppy drive, it can even send the software using MODE and CTTY commands.

      It also comes for licenses of Windows versions of Interlnk and Intersvr. The way I had it set up, I created an up to 2GB FAT16 Truecrypt image on my modern "Server" PC (you can use some other image software as well). This gets mapped to a drive on the legacy client machine so now you have a massive disk drive expansion. When the drive is mapped, FastLynx has exclusive use of it, and you can't access files on the host OS it until you disconnect from the legacy PC. Alternatively you can map the drives on the DOS PC onto your modern PC.

    14. Re:WfW in VM by N1AK · · Score: 1

      Until most 32 systems are retired or until Windows simply cannot run well on 32 bit systems, it makes no sense for Microsoft to drop support

      There's a difference between dropping support and not supporting it on a new OS version. I doubt the cost of maintaining Win 8.1 32 bit for an extra couple of years, but making Win 10 64 bit only would be more work for them. If there are people still running Win XP on 32 bit devices after Win 7 and Win 8.1 then how many of them are plausibly going to want to buy Win 10 anyway.

    15. Re: WfW in VM by Anonymous Coward · · Score: 0

      Many recent (Windows 8 era) ultraportables are 32bit only because Connected Standby wasn't available for 64bit. I'm not sure if they've fixed that yet.

    16. Re:WfW in VM by Mr_Wisenheimer · · Score: 0

      One of the biggest (and most legitimate) criticisms of Windows, especially when Vista was released, was that older systems could not run an up-to-date OS effectively, something that is not so much of a problem with Linux.

      Since Vista, MS has worked to make Windows more scalable. Reversing course to lock out a huge number of 32 bit computers from running an up to date OS would be a huge step backwards.

    17. Re:WfW in VM by Blaskowicz · · Score: 1

      XP mode is end-of-lined since April 2014 and thus it's deprecated, unsupported, considered a security risk.

    18. Re:WfW in VM by Anonymous Coward · · Score: 0

      Appreciated your point with lab stuff. (br>

      Manage an environmental testing lab. My IS contractor was in, and asked me what my plans are with XP being no longer supported. I pointed out that a number of my GCMS systems were running Win2000 as the most current op sys that would run the software and PC capable of using the interface board. Why unplug an instrument that is running fine? We needed to get to Y2K stuff due to date issues (EPA compliance) or we'd still have 3.11 around too.

    19. Re: WfW in VM by KevReedUK · · Score: 1

      XP Mode via VM is now deprecated, due to WinXP being EoL.

      Windows XP Compatibility Mode, in the properties of an executable, remains (along with even older examples going back at least as far as Win2k) both viable and supported.

      --
      Just my $0.03 (At current exchange rates, my £0.02 is worth more than your $0.02)
    20. Re: WfW in VM by unixisc · · Score: 1

      What does XP mode have to do w/ XP itself? The former is a VM that runs on Windows 7. (For some bizarre reason, MS stopped continuing w/ it in Windows 8.x, going w/ HyperV instead)

  85. The Desktop is dying by jellomizer · · Score: 1

    There isn't really that much investments in Desktop usage to get more OS Power out of it.
    Mobile OS's are having to deal with new gestures and brand new sensors all the time.
    Ever sense we started offloading the work to the video card the OS doesn't need that much power.

    --
    If something is so important that you feel the need to post it on the internet... It probably isn't that important.
    1. Re:The Desktop is dying by amiga3D · · Score: 1

      I use a smartphone a lot more than I ever thought I would. It's plenty powerful and the small screen is far more useful than I thought it would be. Having said that, I never use it when I'm home where my tower is. There's no comparison at all in power and usability. The keyboard is king. Everything else is just for when you can't use the keyboard. And my 27 inch monitor is glorious after peering into a 4 inch spot.

  86. Does the two-floppy OS have Unicode? by tepples · · Score: 2

    Modern graphical operating systems are expected to do much more, such as render multilingual text at arbitrary sizes. Can you even fit scalable fonts for Latin, Greek, Cyrillic, Arabic, Bengali, Tamil, Thai, Khmer, Chinese, and Korean into two floppies?

  87. Re:Every new employee by techno-vampire · · Score: 2

    You can use X11/Linux, but then you'll have to keep paying the retraining cost for every new employee you hire...

    FUD, pure and simple. Most modern Linux DEs look and act very similar to Windows because they're designed to do the same thing. Your typical office worker doesn't need to know more about using Linux than he does about using Windows, meaning that all they need to know is which icon to click on to do what. And, most of the office software for Linux isn't constantly changing the UI, so that once it's learned, it doesn't have to be re-learned every time there's a minor upgrade. And, as far as peripherals go, stay away from the bleeding edge, and the odd are that It Just Works.

    --
    Good, inexpensive web hosting
  88. Re:Apple has no problem leaving old hardware behin by omnichad · · Score: 1

    That blame really lies with Google for dropping support. Keep the old OS. It's stable enough anyway. You could probably get a binary of Chromium that still supports your version (but without higher OS X - specific graphics speedups).

  89. Why should minimum specs be raised? by PopeRatzo · · Score: 2

    I'm not sure exactly what we're giving up by maintaining minimum specs. Is there some rule by which raising the minimum specs improves performance on more powerful machines? Or that lower minimum specs means the OS won't run as well on the latest hardware?

    I can run Ubuntu on an old 486. Does that mean it can't scale up to my i7, or that it's somehow less powerful than if they set a higher minimum?

    Or is this a reaction to the fact that on the rare occasions that Mac OS has major update they always raise the minimum specs? Maybe the fact that Microsoft doesn't sell the system AND the OS together means they don't have an incentive to get us to dump our hardware when it gets to be four years old.

    --
    You are welcome on my lawn.
  90. Windows XB by tepples · · Score: 1

    At least that would be consistent with unifying the Xbox operating system with phone, tablet, and desktop operating systems.

  91. Wait, you actually WANT your windows to run heavy? by nichogenius · · Score: 2

    Just because hardware has advanced to a point where we could justify increasing the minimum specs for Windows, doesn't mean we should. I mean sports cars are constantly being re-engineered to maximize power (acceleration/speed) and minimize weight (even more acceleration and speed). Why would consumers want a computer that REQUIRES multiple cores just to power the OS? That's called software bloating and it isn't necessary or appreciated by consumers when their computer is rendered unusable a year into its lifetime. No, minimize the OS. This gives you maximum headroom for the applications that you REALLY care about that actually NEED the cpu/gpu/ram cycles. In addition to it running better across the board, it also allows it to run on the light end devices such as the phone in your pocket. When it comes to software, lighter is better... especially when you are dealing with the dang Operating System.

  92. More Bloating? by Anonymous Coward · · Score: 0

    Let me get this right. You want MS to bloat the OS some more and require more hardware?

  93. It means more memory for great applications. by BitwizeGHC · · Score: 1

    An OS needn't, and shouldn't, be more complex than is necessary to get the job done. By keeping Windows at a constant level of resource-intensiveness, Microsoft has made more room on modern hardware for even more advanced high-end applications -- and has made it feasible to refresh old PCs with the latest Windows. (Really important; the typical corporate drone's PC is profoundly rinky-dink.) This is stuff we used to cheer Linux for doing while Microsoft operating systems inflated with each generation. Now we bemoan Microsoft for keeping the size of Windows down while Linux bloats up the way we made fun of Windows for doing. (Have you seen GNOME 3?)

    Microsoft deserves full credit for keeping their system size and complexity down over the past few revs.

    --
    N4st0r, trixx0r h0bb1tz0rz! Th3y st0l3 0ur pr3c10uzz!
    1. Re:It means more memory for great applications. by norite · · Score: 1

      "Microsoft deserves full credit for keeping their system size and complexity down over the past few revs"
      Um, have you seen the size of a win8 install? It weighs in at around 17Gb

      By contrast I can still fit a newly released version of a Linux Distro onto a single CD, DVD or memory stick

      --
      -- Fuck Beta
    2. Re: It means more memory for great applications. by BitwizeGHC · · Score: 1

      Ah, but think how much bigger Windows *could* have been, if it had followed its historical growth curve!

      --
      N4st0r, trixx0r h0bb1tz0rz! Th3y st0l3 0ur pr3c10uzz!
  94. Re:Every new employee by Anonymous Coward · · Score: 2, Insightful

    It's not the OS, but the applications. There is a lot of business software that only exists for Windows and sometimes a very specific version of Windows at that.

  95. The clock speed is still king . . . by Mr_Wisenheimer · · Score: 1

    . . . it just is not as easy to compare anymore.

    Some of the fastest chips actually have the lowest "reference" clock speed because they are designed to dynamically overclock and shift loads between cores to maintain good thermal efficiency. Also, it's hard to compare the clock speed of a single core Pentium design to the newer Intel core designs because Intel's newer chips are a lot faster at lower clock speeds.

    So, the comparison has become more complicated, but if you compare the maximum factory authorized speed of one Intel chip to another, you will find as a general rule that clock speed is still king in single-threaded performance (for instance, an i7 that uses turbo boost to reach 3.2 Ghz is going to be slower than an i5 which reaches a max of 3.8 Ghz). On the other hand, a Pentium IV clocked at 3.8 Ghz is going to be remarkably slower, even in single-threaded applications, than an i7 with a base clock of 2.26 Ghz, because you are comparing apples to oranges.

  96. What's the harm ... by Anonymous Coward · · Score: 0

    ... if Windows (or whatever) supports lighter weight hardware without significant* impact to heavy users?

    *I detect gamers here. TFS brings up one example: Compatibility with a graphics standard critical to the gaming community. Gawd forbid that there should be one line of code in there that supports users other than the basement-dwelling community. It's the same for Linux and X11. Scrape the GUI capability right down to the minimum needed for 3D rendering needed by the games. Screw all the other users (native network-aware displays for example) and then cry "Muh games!"

    Fuck off. Go buy a console.

  97. Best work? by zieroh · · Score: 1

    From TFS:

    ignoring the fact that the company did its most cutting-edge work when it was willing to kill off its previous products in fairly short order.

    When was that, exactly?

    --
    People who say "sheeple" have about as much sophistication as an AOL user, and in fact are probably actually AOL users.
  98. Re:Apple has no problem leaving old hardware behin by narcc · · Score: 1

    They repaired it, sure, but charged you $130 bucks.

    Think about that: $130 to replace a CPU fan.

    If a local shop charged a customer that much for that job, I'd recommend that people avoid them.

  99. Technically it is supported by Immerial · · Score: 1

    It may not be supported by the latest OS 10.9.x but it is still supported by Lion 10.7.x and Lion is still getting OS updates from Apple. So you are still supported. Eventually that will change once they release Yosemite in the next few months. Apple generally doesn't support more than a couple versions back... basically to cover their 3yr. Apple Care extended warranty. That combined with their OS versions gives you around 5 years minimum of support. While not ideal... it's not too bad.

    I also think the hardware support will lengthen as most don't need much more power to email, browse, watch videos, etc. OS versions will probably support older and older hardware, unless some new feature comes along that needs more processing power (better language processing?). My Mac Mini (Early 2009) it will be supported with Yosemite 10.10... which means even if that's the latest it can support... it will end up with minimum of ~8years of support. I think that is pretty good.

  100. What's wrong with a little restraint? by Anonymous Coward · · Score: 0

    Why does everything need to look fancy just because we have the hardware for it? I thought by now everything would be running with no latency, but instead I have to wait for some designer's ~vision~ to appear before I can do anything. It doesn't take THAT much time but it's still annoying.

  101. Re:Every new employee by jonbryce · · Score: 1

    My office could have X11/Linux on the desktop, given that the only application that we run on the desktop is Windows Remote Desktop.

  102. Windows STILL way to big by Zo0ok · · Score: 1

    Microsoft is putting pride in one-size-fits-all... that is, the same system on Smartphones, Tablets, Cheap Netbooks, Desktops, Workstations, Webservers and Datacenter servers. The different editions are not that different.

    A Windows server does not get much lighter than 30-40 GB of disk drive and 1GB of RAM. For companies with virtual machines, 10s, 100s or 1000s of them, significant amount of resources are wasted here. There are of course SAN-technologies to de-duplicate blocks, but this is both advanced and expensive. Many Windows servers dont do more job (create more value) as a web-server, light database-server, printer server, or an AD/directory server than a RaspberryPi with Raspbian can easily do. Storage requirements for Raspian is 1-2% of Windows Server!

    Tablet buyers who buy an iOS/Android tablet with 64GB of storage more or less gets 64GB for their media. While an owner of a 64GB Windows tablet finds that not much more than 32GB is actually available to be used.

    Even if Microsoft manage to keep their requirements at the same level for the years to come, they will still be much heavier than the competition, and in many cases it matters.

    1. Re:Windows STILL way to big by Shirley+Marquez · · Score: 1

      The storage picture on the latest crop of tablets is a lot better. Windows 8.1 can boot directly from the recovery partition, eliminating the need for a second (and larger) uncompressed copy of it in the file system. There are now Windows 8.1 tablets with a measly 16GB flash and you still have some space available to use.

  103. Re:Hmmm .... by blackomegax · · Score: 1

    Meh I had my parents laptop (1.3ghz Pentium M, 512mb ram, 40gb hdd) running vista ~fantastically~ with some really wild optimizations. I threw 8 on it for lulz and it ran fine with no tweaks, and better with tweaks.

  104. Stop by Falos · · Score: 1

    > The average smartphone is more powerful
    [citation needed]

  105. I can't believe your comparing a desktop CPU .... by 4444444 · · Score: 1

    a single-core 1GHz, 32-bit chip with just 1GB of RAM. The average smartphone is more powerful than this these days.

    Your comparing a Desktop CPU to a smart phone CPU?
    Really?
     

    --

    http://Lenny.com
    4 great justice!
  106. The fallacy by Anonymous Coward · · Score: 0

    Is that software somehow becomes better when you raise the minimum requirements. It doesn't

  107. Re:1GB by DocSavage64109 · · Score: 2

    I work at a non-profit and have installed win 7 on machines with as little as 512MB ram. As long as you don't run any antivirus, they are usable and a 1GB machine is just fine for internet browsing and office apps. Now if you want to install an antivirus, you are talking 1.5GB minimum for a responsive system. I'd bet your wife's laptop had a bunch of always running corporate junkware on it and it may also have full disk encryption to deal with.

  108. Re:Hmmm .... by Firethorn · · Score: 1

    Her laptop runs Vista, and it's so slow as to be almost unusable.

    There's a reason you have minimum specifications(IE it'll run), recommended minimums(it'll run satisfactorily if you're not a power user), and recommended specifications(it'll run good unless you're a power user).

    From what I've read, they really did some incredible optimizations going from Vista to 7 and even further with 8. That's why the minimum hasn't changed much.

    --
    I don't read AC A human right
  109. Buy a Mac by Anonymous Coward · · Score: 0

    I own a Core 2 Duo MacBook Pro from late 2007 with 4 GB of RAM, as of right now it still runs the latest version of Mac OS X (10.9). That is a 7 year life span, and still going. I know it is easy to bash Apple, but in this case your post is factually incorrect.

  110. C++ gets things out the door now by tepples · · Score: 1

    If Windows and applications were rewritten in assembly language, they wouldn't be released on time. And they'd need to be completely rewritten for the 64-bit version instead of being recompiled. C++ gets things out the door now.

  111. People I've seen don't upgrade Windows by tepples · · Score: 1

    Microsoft does not make money on making hardware obsolete, on the contrary, as long as it doesn't take them too long to support something, they make MORE money on supporting old hardware.

    Unless they use only the version of Windows that shipped with the computer and don't buy a new version for use on the same computer. In my experience, people stick with outdated Windows until it's time to replace the hardware.

    1. Re:People I've seen don't upgrade Windows by Carewolf · · Score: 1

      Microsoft does not make money on making hardware obsolete, on the contrary, as long as it doesn't take them too long to support something, they make MORE money on supporting old hardware.

      Unless they use only the version of Windows that shipped with the computer and don't buy a new version for use on the same computer. In my experience, people stick with outdated Windows until it's time to replace the hardware.

      True, but I would give Microsoft the benefit of the doubt that they know how many on average upgrade, and can calculate whether it is worth to support or not. Since most cases where iOS or Mac doesn't support older hardware is increased defaults for fancy graphical effects, and can't imagine it is too hard for Microsoft tone down new unnecessary graphical effects, especially since fancy graphical effects has never really been their thing (and the extremely wide difference in even modern PC hardware means they still have to support some pretty shitty integrated Intel GPUs).

  112. Just kill 32 bit and I'll be happy by twnth · · Score: 1

    Just kill off the 32 bit version of the o/s and I'll be happy. Seriously, stop it with the 1990's technology, already.

    Ya, ya, ya... legacy apps and hardware (drivers). You've got till 2020 when win7 dies to upgrade. Fair-thee-warned.

  113. Re:Apple has no problem leaving old hardware behin by Blaskowicz · · Score: 1

    Microsoft supports its operating systems for 11 years, but that support may get extended (it could likely happen to 7 as with Windows XP)
    For hardware repairs, DIY or ask an independant computer shop.

  114. Pointers cause cache misses by tepples · · Score: 1
  115. No they won't by dutchwhizzman · · Score: 1

    They will run in a VM that is hosted on a hypervisor in windows 10. 16 bit apps have been treated "special" since I believe windows 2000, where they got their own process and if you had to kill one 16 bit application, they all went with that. I'm no windows expert, but I believe that since either Windows Vista or possibly Windows 7 they got hypervisored and there was no longer a separate process but an actual VM running for them.

    --
    I was promised a flying car. Where is my flying car?
    1. Re:No they won't by Retron · · Score: 2

      They just run under NTVDM, which is a bastardised version of SoftPC, as was the case since Windows NT 3.1. Ever wondered why a command /c ver returns MS-DOS version 5.0.500 under any x86 version of NT? That's why - it was the latest version of MS-DOS that was around when the version of SoftPC they licensed was written.

      Have a look inside NTVDM in Notepad (or a hex editor) and you'll see:

      "SoftPC-AT Version 3 (C)Copyright Insignia Solutions Inc. 1987-1992"

      Fun fact: the x64 and ARM versions of Windows still come bundled with a copy of MS-DOS 8, complete with Windows Millennium copyright message. It's in DISKCOPY.DLL. They also come with icons for Lotus 1-2-3 and other obsolete programs, in MORICONS.DLL (which was from Windows 3.1, 22 years ago).

      Windows is full of legacy stuff if you look.

  116. Re:Hmmm .... by Blaskowicz · · Score: 1

    Or upgrade to 2GB and SSD (there might be solutions like 2.5" IDE to mSATA adapter) ; clean up dust and even thermal paste as needed.
    It would possibly make Vista quite bearable. Around 2016 or 2017, upgrade to Windows 10.1 or whatever it's called by then.

  117. Evolution and Happiness by DarthVain · · Score: 1

    I was rolled out with an "Enhanced" desktop a few years back. It wasn't really all that enhanced than the normal desktop that all office types got. I (and a subgroup of others), do a lot more technical work, and use specialized software. However the folks in charge of the specs (and bean counters probably) didn't either know that the enhance spec was barely better then the base, or figured it was good enough. A bunch of us rebelled, and worked with the vendor to create a new more appropriate spec.

    That said. Much of the work that used to be highly impacted by graphics cards, such as GIS, CAD, and a host of others, aren't so much anymore. It is mostly CPU dependent now. Most modern CPU of middling power are sufficient for most tasks. From my own experience the two biggest improvements are multiple monitor (also used to be video card dependent, now pretty much anything can), and RAM for large tasks which is dirt cheap anyway. The monitor allows someone that say needs to see tables on one screen, and graphics on another, or application on one, and DB on other much easier to get things done. I recall trying to use 4 really small windows on a tiny screen rather than flipping through them all the time. RAM simply allows someone who is processing a lot of data to use maybe one process rather than have to create 5 processes out of fear of running out of memory and having to repeat it all.

    So while the base is good for most, there are a semi-large subset that do need something a bit better. However that bit that needs to be better has evolved over the years, and is frankly not as different as it used to be (at least in things I am exposed to). The few changes that make the most impact, are so cheap that not to do them borders on insane, as you won't pay the difference of say a 75$ annual lease payment for an employee you pay 70,000$ to simply make them happier as their job might be a little less irritating? You can still technically do stuff on a base spec, it just takes longer, might be more work, and be more frustrating. Though sometimes it does have its perks.... When I first started as an entry level, they gave me a a base box (IBM PL300 or something if my memory serves)... There was a time where I was pretty much just doing large data processing of GIS data. I would put it into smaller more manageable chunks, and automate them together in a batch. Occasionally I would miscalculate and run out of memory and have a fail, and would have to redo a few but it worked pretty well more less. However, while it was processing the computer was using everything it had, and wouldn't respond to anything else... I got into the habit of bringing a book to work. There were many days where I would do nothing but processing, and I would have the feet on the desk reading a book for the entire day(s). I had my manager come in and question me, where I would point to the spinney hourglass (or whatever it was) and say "processing". So in that way it made me happy. Though from a business standpoint, they were not really utilizing me nearly as much as they could. Of course as entry level they weren't exactly paying me all that much anyway so they probably didn't care all that much anyway. :)

  118. Citation needed by tepples · · Score: 1

    I'd like to see some evidence that the performance gain due to more registers outweighs the performance loss due to fewer pointers per cache in the majority of cases. Is there a study?

    1. Re:Citation needed by ultranova · · Score: 1

      I'd like to see some evidence that the performance gain due to more registers outweighs the performance loss due to fewer pointers per cache in the majority of cases.

      In the majority of cases, the program is IO bound. In the cases where it isn't, it's likely GPU bound. If it happens to be CPU bound, it finishes too soon for it to matter. And in the tiny number of cases of a CPU-bound, long running program, why guess when you can simply compile both versions, run them and terminate the one that gets left in the dust? If that's not worth doing, the issue is not worth worrying about in the first place.

      Also, it seems to me that if you're doing a lot of pointer dereferencing, you're going to get so many cache misses this issue gets lost in the noise.

      --

      Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

    2. Re:Citation needed by Ottibus · · Score: 1

      I'd like to see some evidence that the performance gain due to more registers outweighs the performance loss due to fewer pointers per cache in the majority of cases.

      I'd like to see some evidence for your claim that pointer-intensive 64-bit programs run more slowly than pointer-intensive 32-bit programs.

    3. Re:Citation needed by Forever+Wondering · · Score: 3, Interesting

      Overall, 64 bit has a 20% [or better] performance increase for most workloads. There are other factors other than just size of pointers.

      Size of pointers is not the major factor in cache flush since most of the cache is taken up by data items and not pointers. These data items are more or less invariant across compilation mode.

      64 bit compilers only use 64 bit fetch for non-pointers if you actually request them (e.g. long long). MS is the odd ball and defines a "long" to be 32 bits even in 64 bit mode [contrary to the compilation models used by everyone else]. "int" suffices for most data. Where it doesn't, one will [have to] code "long long" and that is invariant across 32/64, except that the 32 bit code will be slower [generating 2-3 instructions for each 64 bit one].

      With x86_64, the first 6 arguments to a function are passed in registers and not on the stack (i.e. no wasteful push/pops for argument passing on entry/exit).

      For a function that has a lot of automatic [stack] variables, in 32 bit, any non-trivial loop could spend a lot of time dumping a register to its stack frame solely for the purpose of making room for another variable that needs the register. This is register pressure and is considerably higher in 32 bit mode.

      Once an address has been loaded in a register, access relative to that base register is identical speedwise between 64 and 32 bit.

      64 bit has RIP-relative addressing which allows data to be addressed as small offset from the RIP [instruction pointer/program counter] register. Since it's relative to the RIP, two consecutive instructions that address the same data location will have slightly different offsets within each instruction.

      You want a study? Try a google search on "performance 32 bit vs 64 bit".

      Or, the easy reader version:
      http://www.phoronix.com/scan.p...

      --
      Like a good neighbor, fsck is there ...
    4. Re:Citation needed by tepples · · Score: 1

      Thanks for the breakdown.

  119. So... what hardware company do you have stock in? by Anonymous Coward · · Score: 0

    seriously?? who is fucking writing this? someone heavily invested in computer hardware manufacturers? This isn't a show of a lost opportunity but rather a step in the right direction. The coding for operating systems like windows has been bloated buggy and incredibly inefficient. If you have a new operating system that can operate fast or faster on the same minimum system requirements... this shows that they are now programming more efficiently. I think the only people that would have an issue with this are people who are more interested in the hardware economy and less interested in the performance and efficiency of their computer when running a specific operating system

  120. Re:Every new employee by K.+S.+Kyosuke · · Score: 1

    Those things probably ought to be streamed from proper servers.

    --
    Ezekiel 23:20
  121. Get an Arduino MCU by tepples · · Score: 1

    Do machines that meet Windows's system requirements even come with parallel ports anymore? I'm told the USB parallel port adapters don't really work other than for printers. I thought bit banging was done on Arduino microcontroller products nowadays.

    1. Re:Get an Arduino MCU by jonbryce · · Score: 1

      You can get PCIe / Parallel Port expansion boards.

    2. Re:Get an Arduino MCU by Blaskowicz · · Score: 1

      Plenty motherboards with the latest sockets or soldered CPU have a parallel port.

    3. Re:Get an Arduino MCU by tepples · · Score: 1

      Not with the recent trend toward laptops and all-in-ones. I looked in Staples and didn't see a single stand-alone desktop PC.

    4. Re:Get an Arduino MCU by jonbryce · · Score: 1

      Well you can get computers that can take parallel ports, and run Windows 8.1. Maybe not at Staples, but they do exist. I'm using one at the moment, which I got from John Lewis. I upgraded it to Windows 7, but it did have Windows 8 when it came out of the box.

  122. Re:The old hardware isn't the problem. Software is by Anonymous Coward · · Score: 0

    Sostware maybe slow, but hardware is not coming out fast enough either ...

  123. 2008 Mac Pro (cheese grater), 2X quad 2.8 Ghz 16GB by raymorris · · Score: 2

    It's a 2008 Mac Pro. My employer offered to replace it with a new machine a few months ago, in fact they almost insisted on an "upgrade".
    This 2008 model has two quad core Xeons running at 2.8 Ghz and 16 GB of RAM, and the latest OS (10.9.4), so there's not really much to upgrade. Since they needed to use the money as budgeted, for new computers, I accepted a laptop, a MacBook Pro Retina with 2.7 Ghz Core i7 and 16 GB RAM - the same amount of memory as the 2008 model, but plenty.

  124. Star Trek Model by Firethorn · · Score: 1

    Until tablet operating systems implement window management more sophisticated than the MS-DOS-era "all maximized all the time" model,

    This made me think of Star Trek and their 'PADDS', where you'd see leadership running around with several of them on their desks.

    Is there any reason that we couldn't put enough storage into a phone-type device to hold all of a person's important documents, then utilize relatively cheap tablets in a distributed computing mode using short range networking sort of like bluetooth?

    The way I'm picturing it each device has enough processing power to display video on it's own screen, and enough synchronized cache that a user can use at least 6-10 documents without having to constantly fetch them from the central device. Ideally you'd only look at the screen of the central device in an emergency, and I'd make it rather thicker than modern cell phones for longer battery life. If you're doing something that's actually computationally expensive, as long as it can be paralleled all the devices pitch in what they can.

    Or you wait until you get home and it syncs to your home server to re-compile the latest linux kernal and all it's associated packages. ;)

    --
    I don't read AC A human right
  125. ARM Linux on what hardware? by tepples · · Score: 1

    As I understand it, a device running ARM Linux is an appliance such as a router, which has no GUI, or Android, which has the all maximized all the time policy, or a smart TV, which has a similar policy, or Chrome OS, which is mostly intended to view web pages served from someone else's server. Because this article is about Windows 10, I'm sort of referring to ARM-based devices that can fulfill the same use cases as a Windows PC. Which ARM Linux laptops am I missing that are produced for sale to the public? Or are you referring to rooting an Android or ARM Chromebook?

    1. Re: ARM Linux on what hardware? by Anonymous Coward · · Score: 0

      You can install ubuntu on an odroid. I have been using it on an Odroid U2 for a year now. 4 cpus @ 1.5 GHz, 2GB of RAM. Sure, it's not as fast as a PC, but it takes much less power to run...

    2. Re: ARM Linux on what hardware? by Anonymous Coward · · Score: 0

      Linux for the arm architecture.
      I run debian. Arch worked well last I checked too.

      Nobody vending arm systems with linux, but it's a reboot away.

    3. Re: ARM Linux on what hardware? by tepples · · Score: 1

      Nobody vending arm systems with linux, but it's a reboot away.

      Let me rephrase: Which makes and models of ARM device should someone consider using to reboot into Debian, Arch, or another distribution of Linux for the ARM architecture?

    4. Re: ARM Linux on what hardware? by tepples · · Score: 1

      You can install ubuntu on an odroid. I have been using it on an Odroid U2

      Quoted for visibility. Thanks for the recommendation. Now back to K. S. Kyosuke's original comment, with this tip inserted:

      Or, you know, simply use ARM [machines like Odroid U2]...it's been around for decades by now.

      I don't see how applications designed for Windows desktop can be ported to run on ARM hardware. Windows Phone doesn't have a desktop. Instead, it runs only full-screen apps from the Windows Store. Windows RT runs exactly three desktop apps, all published by Microsoft: File Explorer, Internet Explorer, and Office. All other publishers are cryptographically locked out from recompiling their desktop apps for ARM, and it can't even run apps that used to run on older Windows CE netbooks with an ARM CPU. Does Wine even have an ARM version that supports Windows CE apps?

  126. Software should actually shrink by Art3x · · Score: 1

    In my experience as a programmer, the more you work on software the smaller it should become, while the doing the same thing or even doing more. It's a paradox of software and also one of writing in general. Blaise Pascal once wrote in a letter, "I made this very long, because I did not have the leisure to make it shorter."

    Not that I would expect a tech blogger to understand this, because most of them don't know much about tech or writing.

  127. Windows Terminal Server CAL pricing by tepples · · Score: 1

    True, you could just deploy Xubuntu and use Remmina. But how much does it cost you per seat for Windows Terminal Server CALs? I've read that they're about as expensive as just running Windows on the client.

  128. Re:Apple has no problem leaving old hardware behin by __aaclcg7560 · · Score: 1

    Think about that: $130 to replace a CPU fan.

    Since my eight-year-old MacBook has a 32-bit CPU, I didn't rush out to get it fix. The money would be better spent on a used Mac with a 64-bit CPU.

    If a local shop charged a customer that much for that job, I'd recommend that people avoid them.

    Actually, the Apple technician broke the cable between the keyboard/mouse top and motherboard. Despite being a six-year-old laptop at the time, Apple had a replacement in stock and didn't charge me for it. That practically made my MacBook as brand new as the day I got it.

  129. Are all codecs hardware accelerated? by tepples · · Score: 1

    Obviously, it's the point of hardware accelerators to prevent common tasks such as playing video from draining the battery. What exactly does this alone prove?

    Are all codecs hardware accelerated? For example, do any royalty-free codecs (Theora, VP8, and VP9) play back with hardware acceleration, or is it just H.264?

    1. Re:Are all codecs hardware accelerated? by K.+S.+Kyosuke · · Score: 1

      VP8 already does, in anything based on Snapdragon 800 (and higher, presumably). Apparently, it even has hardware VP8 encoding, for what it's worth

      --
      Ezekiel 23:20
  130. Re:Every new employee by tepples · · Score: 1

    You won't save much money on Windows licenses by streaming applications from a server if you have to make it up by buying more Terminal Server CALs.

  131. Corner cases by tepples · · Score: 1

    If Wine implements something faster than Windows, it might be because it doesn't implement an implementation-defined, unspecified, or undefined corner case the same way Windows does. And if an application relies on that corner case, it won't run correctly. This reliance can be inadvertent, but it's often intentional in the case of digital restrictions management and anti-cheat measures for games.

    1. Re:Corner cases by jones_supa · · Score: 1

      That is true.

  132. Understand what 'minimum' means by kenh · · Score: 1

    So Windows 10 has the same hardware requirements as Windows Vista, Windows 7, and Windows 8/8.1 - so what?

    Most people arguing for increased minimum specs are arguing for a system that would perform reasonably with an unspecified workload in addition to the load the OS puts on the system (for example, running MS Office 2013 applications)... Would dropping, for example, support for 32-bit x86 only hardware add or diminish the market share Windows 10 enjoys?

    BTW why isn't anyone complaining about Ubuntu Linux which has similar minimum requirements and has for years?

    --
    Ken
  133. The minimum specs HAVE changed! by Anonymous Coward · · Score: 1

    Yes, the oversimplified summary of the minimum specs hasn't changed, and that generally supports the thesis.

    BUT...

    Windows 7 had the same minimum specs as Windows Vista
    Windows 8 dropped support for CPUs without NX
    Windows 8.1 dropped support for a certain group of chips made by AMD, due to some missing instruction. Yes, that means that some users are stranded at Windows 8 and will never be able to install 8.1 until they buy new hardware. Frankly, I believe this is why Windows 8.1 was released as a "new version" instead of the service pack it much more closely resembled. New versions can strand users of old versions, service packs can't.

    And maybe Windows 10 will further raise the minimum specs without changing the oversimplified summary. Who knows?

  134. Re:Every new employee by exomondo · · Score: 1

    Most modern Linux DEs look and act very similar to Windows because they're designed to do the same thing.

    Like which ones? Linux MINT looks like Windows 3.1 with some odd start menu that looks completely inconsistent. Surely you've seen the uproar when Microsoft took the start menu away, people don't like even the most simple changes to the way things work.

    Your typical office worker doesn't need to know more about using Linux than he does about using Windows, meaning that all they need to know is which icon to click on to do what.

    Then why was there such an uproar about Windows 8's "metro" (or whatever it's called now) UI? All it had was a grid of icons so - as you say - all they need to know is which icon to click on to do what.

  135. Re:Every new employee by exomondo · · Score: 1

    Why? Having a mainframe and a dependence on a network connection to that mainframe is a bad thing, not a good thing.

  136. just installed it this morning. on a 2007 vista hp by dizzy8578 · · Score: 1

    I spent the last three days doing a recovery on an old mediacenter hp desktop with a core 2. I lost count but it was at least 200 updates plus two service packs. It ran like a dog on 4g ram. I had to chase driver updates and remove massive crapware.

    This morning I installed the technical release on it and updated it and had basic apps installed before my coffee got cold.

    The damn thing runs great. I am sure there are apps that will bring it to its knees but as a web browser, casual office use machine it could bring a lot of second hand stuff back from the dump.

    Every single piece of hardware got a working driver. Event viewer showed no bizarre repeated log entries and the system no longer arbitrarily decided my wireless network was suddenly a public net.

    I know it won't last but fully set up system only used 13.2 g of space. We shall see how that plays out...

    --
    *"Cogito Ergo Liberalis"*
  137. Because they're requirements, not recommendations by Anonymous Coward · · Score: 0

    Software requirements are always lower than that recommended by the software manufacturer in order to run their software at full capacity.

    System requirements are an identification of specifications for a machine that will have all but the required features disabled.

  138. Most sold machines are MS Windows logo partners by VTBlue · · Score: 1

    The post summary is forgetting the fact that most machines sold to businesses and in retail are Windows certified which has a far higher spec requirement than minimum. Additionally, low minimum specs is what you want because it forces engineers to build efficient code rather than be adhere to Gates' Law.

  139. Re:Every new employee by techno-vampire · · Score: 1

    Why was there such an uproar over Metro? Alas, I never used it so I can't say. It's possible that it wasn't easy to customize, which was one of the things that drove me away from Gnome 3. Right now, I'm using Xfce 4.10, and have it set up somewhat like Win98 SE, except that it has four desktops and I can reach the main menu by right-clicking on the desktop because that's how I like it. The important thing is that there's no One True Desktop for Linux and any company considering migrating to it can do a little bit of pre-rollout experimenting to find what works best for their workforce.

    --
    Good, inexpensive web hosting
  140. Re:Every new employee by exomondo · · Score: 2

    Why was there such an uproar over Metro?

    Because it was different, you were presented with a simple grid of icons to launch your applications and then your applications worked exactly as they had before, very simple ... but different. The truth is the idea that "all they need to know is which icon to click on to do what", is nice in theory but doesn't fly in reality.

  141. Steam HW Survey is irrelevant by Anonymous Coward · · Score: 0

    The summary says:

    What if DX10 — a feature set that virtually every video card today supports, according to Valve's Steam Hardware Survey, became the minimum standard, at least on the x86 side of the equation?

    But the survey says:

    8.72% are DX10, 17.19% are DX11

    The real problem is that it's only a survey of gaming machines... which are far more likely to have upgraded video cards.

    Think about all those offices full of cube farms with PCs that don't need 3D at all. Those are also more likely to buy MS Office, so why would they break compatibility with the majority of their user base?

  142. NO! NO! NO!? WHAT? 32bit AGAIN? by AbRASiON · · Score: 1

    I've ranted about this since Windows Vista bloody shipped! You can't be serious. They NEED to drop 32bit support. It's time to go. It's 2014! Even the most basic CPU has been 64bit for well over 7 years - the only exception is some shitty intel atom chips (that Intel damn well should never have released)

    It's time to embrace 64bit entirely, move to the future and let 32bit die out, the extra work for developers, support people, driver writers and what have you? No, just no Microsoft, come on.
    Astounded how dopey this move is.

  143. A simple no. by Anonymous Coward · · Score: 0

    Windows simply scales it's feature set down to be able to run on the given hardware. If you wanted to use all the features then I'm sure the minimum requirement would be higher.

  144. Re:Every new employee by K.+S.+Kyosuke · · Score: 1

    Well, the banking and healthcare apps mentioned at the top are probably going to require a connection anyway. But of course, small businesses are a different league.

    --
    Ezekiel 23:20
  145. Re:Every new employee by exomondo · · Score: 1

    A network connection sure, but requiring a network connection that mainframe is an unnecessary and pointless restriction in an effort to hamstring the wrong operating system into your setup when you can just run the right operating system for your applications instead.

  146. It is simple survival, by k31 · · Score: 1

    Windows XP was basically the pinnacle of operating systems. Having no where to go but down, Microsoft did go down, with Vista which most people hate. Luckily, tablets became popular and Apple made the App store a viable thing, so Microsoft now had stuff to copy and create a superficial reason to "upgrade".

    Only by crippling Windows XP, by refusing to support it for later versions of support systems, such as DirectX and Aero, were the new distributions made relatively better, but as fundamental platforms, Windows XP already did it all.

    It is a similar thing to the PS3 to PS4 transition. The PS3 was more than good enough to run any game, and only the awkward 8-core setup made it slightly more difficult. ... we're reached a n era of technology where things are only goign sideways or down, or chvign superficial changes ,

    rather than going up in any way.

    The whole thing needs a re-think, but I've been reading articles and books saying that for at least 15 years now, so I don't think it will come by complaining....

  147. Microsoft up'd the requirements as recently as 8.1 by Anonymous Coward · · Score: 1

    "To install a 64-bit OS on a 64-bit PC, your processor needs to support CMPXCHG16b, PrefetchW, and LAHF/SAHF." That was a requirement added as recently as Windows 8.1 that rules out some early AMD 64-bit processors that would otherwise have met the minimum system requirements for the 64-bit build (although they can still run the 32-bit version). So it's not like the minimum requirements haven't moved at all, 64-bit Windows 8.1 required newer hardware than Vista through 8.0, just not necessarily faster hardware.

    Most likely Windows 10 requires those same extra instructions in the CPU that Windows 8.1 needed or it won't install, it might even have added some additional requirements for CPU features that aren't reflected in the minimum system requirements list.

  148. Re:2008 Mac Pro (cheese grater), 2X quad 2.8 Ghz 1 by MMC+Monster · · Score: 1

    I have an aluminum macbook. They only made them in late 2008.

    It's running the latest version of OS X. But it's almost certainly going to be dropped by the next version.

    Not bad. Frankly, I'm annoyed that the system hasn't broken yet. I want to buy a newer machine and need an excuse.

    --
    Help! I'm a slashdot refugee.
  149. Up the Requires by WoodburyMan · · Score: 1

    To rebuttle the "Why not require a dual core?: Part of this, I simply state "Why would you require a dual core?". Single core processor performance has increased over time. I'm sure as hell not shelling out extra money for a incredibly basic system if I don't have to. At my organization we have around 30-40 basic Asus All-In-Ones spanning the last 4-6 years with single core Celerons, Pentiums, and Atom CPU's. These computers boot windows, are attached to a domain, restricted to hell so they can only open up this VERY minimal custom in house program that uses megabytes of memory designed just for our manufacturing process, and aren't rebooted for weeks or months and run 24x7 on 3 shifts. Many are old, physically look gross from wear and tear are starting to act up with hardware problems, so I'm current partially though a $15,000 project to replace every single one with a brand new Asus AIO that you guesed it, have a SINGLE core Celeron CPU. At $400 a pop they do the job. These things would run Windows 10 just fine, because I tested one today, runs without a hitch no problem. Why up the requirements when it does the job?

  150. Re:Apple has no problem leaving old hardware behin by turp182 · · Score: 1

    FYI: XP support ended on April 8, 2014, 12 years after release (per the top link off the Google link).

    https://www.google.com/search?...

    --
    BlameBillCosby.com
  151. Re:Every new employee by Khyber · · Score: 1

    " And, most of the office software for Linux isn't constantly changing the UI,"

    No, but plenty of Linux Desktops are changing the UI before the applications can catch up, which is just as confusing. Then we have the shit that is systemd, that wanna-be registry for Linux.

    --
    Still waiting on Serviscope_minor to wake up to fucking reality and realize that Jessica Price isn't going to fuck him.
  152. Are you even listening to yourself? by Anonymous Coward · · Score: 0

    I just took a look at the Internet Explorer 11 system requirements and they are identical to the basic Windows 8.1 requirements. That seems to imply that the system requirements posted for Windows probably cover what's needed to run the OS and its most demanding built in features, whether that means using Windows Media Player with software decoding or Internet Explorer loading a typical webpage.

    If you keep in mind that they probably have to account for shared system memory across hardware devices too when publishing these minimum system requirements, then you lose 64MB-128MB to the integrated graphics (no, you don't get to pretend you have dedicated graphics if your computer only has 1GB RAM), as well as smaller amounts for every other piece of hardware connected.

  153. Start screen can't be snapped by tepples · · Score: 1

    Why was there such an uproar over Metro?

    Because the Windows 8.x Start screen completely covers up whatever desktop application you're using as opposed to covering up only a portion and leaving the rest visible for mental context. If the Start screen could be "snapped" to a 20em wide phone sized column at the left side the way many Windows Store apps can be, it wouldn't have been nearly as much of a problem. In any case, the third party Classic Shell utility simulates a Windows 7 Start menu, making Windows 8 look like Windows 7 with flatter window decorations.

    1. Re:Start screen can't be snapped by Anonymous Coward · · Score: 0

      Both my neighbour and sister recently got Windows 8 PCs and they really hated the start screen and the hot corners. I installed Classic Shell for them and now they both love Windows 8.

      Windows 8 did everything right and is in almost all regards superior to Windows 7. They just fucked up on the whole start screen thing.

  154. Re:Every new employee by K.+S.+Kyosuke · · Score: 1

    And what if you need two business apps that "exist only for a very specific version of Windows", but both of them need a different one? That was the thing I had in mind.

    --
    Ezekiel 23:20
  155. Re:Every new employee by exomondo · · Score: 1

    Is that something that actually occurs? Even if it is, the solution is VMs, not a dependence on a mainframe.

  156. The only by Anonymous Coward · · Score: 0

    advances in computers since the vista days are more memory and more cores in the CPU. Actual CPU speed hit the wall about the time vista was released.

  157. will be compatible with your phone by Anonymous Coward · · Score: 0

    They keep the specs low for the phones --- windows 10 everywhere.

  158. Why still 32bit builds? by Anonymous Coward · · Score: 0

    Because there still are some folks who have to use 16-bit software.

    Once I had to install a 32-bit XP in a VM for a girl because her teacher made it obligatory for them to use one specific software, which is from the dinosaurs' era.

  159. Are you even listening to yourself? by oji-sama · · Score: 1

    I'm pretty sure that the limit ensures that you can actually do stuff with the computer, not just run the OS.

    --
    It is what it is.
  160. Operating System by Anonymous Coward · · Score: 0

    Micro$oft windows is a operating system, is should take care of files, memory and processes.

    Why would that need more and more hardware?

    On my new shiny hardware I want to put flight simulations with physics simulations.

    Windows should split in core OS and GUI, we could call the GUI for a WindowMangager, wouldnt that be cool?

  161. Missing the point by Anonymous Coward · · Score: 0

    When we start trying to load the OS down with all kinds of things that ought to be done with apps, we end up with a bloated mess, a one-size-fits-none concept that inconveniences everyone equally.

    You must not be remembering Windows has had gigabytes of drivers bundled with it in every version I remember since Win2k. I think Windows 7 has roughly 25GB of drivers thrown into it. You know, just in case I should by that printer and want to completely ignore the CD that came in the box and the fact that I have a broadband internet connection.

  162. Re:Every new employee by BadDreamer · · Score: 1

    Mainly because it was touted as an intuitive interface, but it wasn't. It made use of non-obvious gestures and key presses to do everyday tasks. This made it a power user interface, excellent for people who love spending time in the OS instead of in their applications.

    Unfortunately that is hardly any people at all. And therefore hardly any people at all liked it.

  163. Minimum requirement for Windows 10 by Anonymous Coward · · Score: 0

    The minimum requirement for Windows 10 is giving a rat's ass about Windows, period.

    More and more people are failing that requirement every day...

  164. Re:I can't believe your comparing a desktop CPU .. by Anonymous Coward · · Score: 0

    Yes... because modern smartphones are much faster than single core 1Ghz desktop CPUs. They're roughly as fast as 3Ghz dual cores

  165. Failed comparison by Anonymous Coward · · Score: 0

    An average smartphone is not comparable to a 1Ghz desktop chip. Eventhough they are newer chips they do not have all the punch that an older desktop chip has. Graphic wise the new smartphones are probably are more powerful though.

  166. Low end matters by erik.martino · · Score: 1

    We loose a good opportunity for bloat but it enables Google to compete with chromebooks

  167. Special-purpose PCs by davidwr · · Score: 1

    While your points about desktops and the web are spot-on, not all Linux or for that matter Windows computers are used as desktops, not all desktops are used for browsing the web, and not all desktops that are used for web browsing are used for general-purpose web browsing.

    A server, a desktop computer that isn't used for browsing the web, or a desktop computer that is only used to browse the web for certain web sites that work okay with ancient browsers can work fine with "ancient" video drivers, provided of course that the machine doesn't have a bad security profile (e.g. closed-source non-maintained video drivers, sigh). Ancient "vga" or other generic-video drivers should be fine under such scenarios, and some of these drivers are open-source and likely still maintained.

    Here are some examples of special-purpose PCs you may actually touch in everyday life:
    * ATM machines
    * Library card catalog or on-site-only-access library database computers
    * Touch-screen kiosks in stores or hotels that by design only let you do certain tasks
    * Media players running a general-purpose OS like Linux, BSD, or MS-Windows under the hood
    * The list goes on

    The list above doesn't even count your home media server, the servers at your workplace, your home router, etc. etc., any one of which may run Windows, Linux, or a similar general-purpose operating system behind the scenes.

    --
    Knowledge is how to play a game, intelligence is how to win, wisdom is knowing what game to play.
  168. I smell bias. And stupid bias at that. by Anonymous Coward · · Score: 0

    OK, so MS has been able to release ever-more-sophisticated OS's for the past 6 years without increasing hardware requirements that would force users to buy new hardware in order to upgrade their software -- and that's a _bad_ thing?? Pretty pathetic attempt, girls. Especially when the competition sells devices (including notebooks!) that force users to buy a new system when a battery dies. Jesus.

  169. Why do that if it doesn't need more horsepower by Anonymous Coward · · Score: 0

    Why in the world would you want Microsoft to increase the minimum specs required to run the new OS if the original low specs works just fine? Misleading people to believe they have to have faster and faster CPUs, additional memory, larger hard drives ... what a crock. If the OS works fine with an old Pentium 4 machine, so be it. But don't lie about needing the faster components, right? Let's not forget - Microsoft is in the software business. They want people to put their OS on as many computers as possible. By making their OS backward compatible, GOOD FOR THEM.

    CPU speed is so overkill it is ridiculous. Prove to me that a 2nd grade student needs a computer with an i5 3rd gen processor in it. Prove to me that there is ANY advantage to overspending on that type of computer.

  170. This is a good thing by bitterblackale · · Score: 1

    I'm of the opinion the Windows min spec is not modest enough. An operating system *Should* have a very modest minimum system spec. This gives software more opportunity to take advantage of that which is left available by the OS... because LINUX!

  171. cash registers by warpuck · · Score: 0

    POS does not need the latest and greatest to function. Those based on that usually interface with a windows server. Power adds up. The newer ones are touch screen. That usually is configured to only work when the GUI is up. Slower CPUs and enough memory are all that is neede to get the job done. You don't need a browser, word processor, pointing device, keyboard and other apps running. But you do need a MS license for each one sold unless your have a linux gurus in your service deptpartment.

  172. Notebook computing power hasn't been increasing by Shirley+Marquez · · Score: 1

    Although high end laptops continue to get faster, the mainstream has been stuck at the same level of computing power for a few years now. (The average GPU has improved somewhat since 2014 integrated graphics are better than 2007 integrated graphics, but with a few high end exceptions they are still pitiful.) Instead of more computing power, people have been buying lower price, lower weight, and longer battery life. And some of the latest crop of Windows tablets only have 1GB of RAM because they're pushing for the $100 price point. (Not quite there yet but the Microsoft Store is selling a Toshiba tablet for $119; we'll probably hit $100 by Christmas.)

    Another factor is the corporate market. Most enterprises prefer to run the same version of Windows on all their computers; if they make the decision to upgrade they upgrade everybody, except perhaps some specialized systems that can't be upgraded. (I still have one Windows XP system for that reason; it is used to drive a chip programmer that never got drivers for any version of Windows after XP, and never had support for any non-Windows OS. It is now disconnected from the Internet.) They want to be able to install the new OS on their installed base as well as on new systems.

    A final factor is the push for improved battery life. Even if your system has a GPU that is capable of rendering fancy visual effects, it will use more power doing that than it will doing flatter rendering. Microsoft has quietly brought back some of the Aero look in the Preview (the taskbar uses semitransparent rendering), but they will likely disable it by default on tablets, and Aero can be done without DX10 in any case. Even if Microsoft were to introduce some fancier transitions that used DX10, those transitions would surely be optional and normally off on systems with power limitations.

    Microsoft could ratchet up the system requirements to dual core and DX10 without losing too many people. But the benefit of doing that would be minimal. So long as things like dual core Bay Trail Atoms with 1GB are part of the computing landscape, they can't significantly increase the system requirements. But they can continue to make improvements that will help people with fancier systems; I haven't seen much sign of that in the Technical Preview but Microsoft may be working on things that haven't surfaced yet.

    What the current Preview is about is bringing back most of the Windows 7 interface with a few of the best things from 8 mixed in, plus improved tablet and touch support and some under-the-hood work. In my so far limited experience they have succeeded; it's already faster than Windows 7 on a 2007 laptop and it will probably be better still by the time it reaches RTM.

  173. Software isn't Progressing by DanielOom · · Score: 1

    Windows Ten has the same hardware requirements als Windows Vista. Makes you wonder what Microsoft has changed, apart from a couple of new device drivers.

  174. Windows Classic by TomGreenhaw · · Score: 1

    Why not have just good old Windows Classic based upon Windows 7. Charge people for annual support if they want access to updates.

    Then they could also offer Windows Du Jour that supports contemporary technology.

    Everybody's a winner...

    --
    Greed is the root of all evil.
  175. Re:Every new employee by david_thornley · · Score: 1

    More like it was not a good UI without touch, and you couldn't necessarily avoid it. Metro apps had fixed-size windows, and usually wanted to take the whole screen. Not all apps were available for Metro; Windows ARM tablets had an additional desktop mode just to run Microsoft Office. If W8 had had a "just work like Windows 7, please please please" mode, it would have been a considerable success.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  176. Author is either very young, or a novice. by Anonymous Coward · · Score: 0

    1. Your smart phone is not more powerful than a 1Ghz Intel core i CPU, or an AMD x86 CPU, or even a Pentium III CPU! Your phone, even if it is a quad core, 1.5ghz, etc., etc, CPU, uses an ARM CPU. These CPU's are meant to be power efficient and not performance oriented. While a 1Ghz ARM core "might" be able to churn out around 1-2.5 ALU instructions a cycle, it is no match for even a Pentium III CPU which at 1Ghz will process around 3.5 BIPS. That's around 3-4 ALU instructions per cycle. The Intel core i series? Around 7 per cycle. The AMD FX series? Around 3-4 per cycle.

    2. It's an OS, do you understand this? an "OPERATING SYSTEM". It's only purpose is to be an interface for the user between the applications and the computer itself, ie. the hardware. An OS is supposed to be minimal, and efficient. An OS that requires a minimum of a 1Ghz CPU, and 1GB of RAM is NOT efficient! Mac OS 7.5 use to take up about 20MB of space, and about 2.5MB's of RAM. Windows 3.1? About the same. Somewhere along the line, the industry took a very wrong turn and now we have these extremely bloated OS's now that don't work for squat, and people that expect (the above) from an OS.

    I weep for the present and future generation of computer geeks.

  177. Isn't 1ghz and 1gb enough? by iamhassi · · Score: 1

    Am I the only one that thinks 1ghz and 1gb ram is a lot just for a OS? I guess to teenagers that sounds really slow, but anyone past 30 should remember a time when 1ghz and 1gb ram was a lot. Windows has been bloating for years, glad to see they haven't bloated past 1ghz and 1gb ram.

    --
    my karma will be here long after I'm gone
  178. Re:Apple has no problem leaving old hardware behin by david_thornley · · Score: 1

    My non-Apple computers tend not to last ten years anyway. Something goes wrong, and it's not worth fixing, so I replace it. My Mac Mini is still going strong, although it hit its OS limits a long time ago.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  179. The spec wars are over by Zanadou · · Score: 1

    This. The desktop PC CPU spec wars were over about 5+ years ago. With the benefit of hindsight, it seemed to hit this point with the release of the Intel Wolfdale Core2 Duo / AMD K10 Deneb cpus.

    After that, there seemed to be little new CPU technology that made desktop computers "seem faster" in great multiple leaps, except for hard-core gamers and other edge cases. However, having 2 or more gig (ideally 4+ gig) of ram seems to be important. For example, I got an Intel E8500 Core2 Duo (what's that... circa 2009?) and maxed it out to 8 gig of ram (motherboard/slot limit).... the thing hardly breaks out in a sweat in Windows 8.1. I don't think I could tell the difference between it and some new i7 thing if they were sitting next to each other doing the same (non-gaming) tasks.

    Naturally hard-core gamers want more CPU power, but a lot of the needed grunt comes from the newer and greatest GPUs. For those in an office and/or just internet surfing, anything beyond a RAM-maxed Wolfdale/Deneb is just overkill - reflected in Microsoft's almost static system requirements for Windows Vista, 7, 8, 8.1 and beyond.

  180. Are you fucking kidding me?? by JoSch1337 · · Score: 1

    Windows 10 will have exactly the same requirements as Windows 8.1, which had the same requirements as Windows 8, which stuck to Windows 7 specs, which was the same as Windows Vista

    Awesome! Now less people will have to throw away their existing hardware, thus generating less toxic waste!

    you can't help wondering what we're actually giving up in exchange for holding the minimum system spec at a single-core 1GHz, 32-bit chip with just 1GB of RAM

    I can very much help wondering: we are giving up nothing - or are you saying that the bare operating system *should* consume more than 1 GB of ram and need more than 1GHz of processor to run properly?

    what would Windows look like if Microsoft at least mandated a dual-core product

    Why would I require a dual core processor to run my OS? My OS should require AS LITTLE AS POSSIBLE of my system resources so that I can use those resources to do actual work! Are you suggesting my OS should do *something* which would require keeping at least one core busy??

    What if DX10 â" a feature set that virtually every video card today supports, according to Valve's Steam Hardware Survey, became the minimum standard, at least on the x86 side of the equation?

    Unless you suggest that I have a dynamic, live-rendered Skyrim wallpaper - why the heck would I need DX10 to draw some stupid windows and buttons??

    How much better might the final product be if Microsoft put less effort into validating ancient hardware and kicked those specs upwards, just a notch or two?

    You tell me - unless you come up with something that we cannot have because of the non-increased specs, I don't see a single reason why it should be a bad thing that people can keep their old hardware and not invest more money into new one just so that they can upgrade their OS because MS ceases to support their old version.

    You are making some groundless, wild claims about what there *could* be without even giving a single example for the price of radically harming the evironment with millions of disposed electric garbage - I think you should think about this for a bit more.

  181. Re:Every new employee by exomondo · · Score: 1

    More like it was not a good UI without touch, and you couldn't necessarily avoid it.

    Of course you could, the only reason to use it was to launch applications if you didn't want to use one of the other 3 ways to launch applications and even then once you were running your applications they didn't use the new UI.

    Metro apps had fixed-size windows, and usually wanted to take the whole screen.

    Unless you had a touch device you wouldn't even use those programs.

  182. Forced Obsolescence by cyranix · · Score: 1

    Forced Obsolescence is ridiculous. Microsoft already makes enough money overcharging for what time after time is a mediocre product. Heres a concept: What if instead of forcing users to upgrade their machines and install new versions of their software every year, they made a single unified kernel that was easily updated and a consistent interface that users could keep and customize, and even have some choice in the look, design and behavior, that they could carry over to a new machine when they were ready without any loss or requiring fancy updates and reinstalls, etc. Oh yeah, that would be Linux. But then I guess they couldn't afford to copy and steal all the ideas that everyone else comes up with first and then bastardize them... It takes a lot of victimization to be able to afford to put hundreds of millions of dollars behind something like the surface :(

    --
    Its only illegal if you don't get caught
  183. Re:Every new employee by david_thornley · · Score: 1

    Okay, I couldn't, without third-party addons, use W8 in a way comfortable for me. And, if you're not supposed to use Metro applications (which can be brought up as programs to handle file types, etc.), why was Microsoft pushing its counterpart to the app store for laptops and desktops? Why not have it just aimed at phones and tablets?

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  184. Re:Every new employee by exomondo · · Score: 1

    Okay, I couldn't, without third-party addons, use W8 in a way comfortable for me.

    I guess that means you never use a Mac then. The people who struggled are the people indoctrinated in Windows usage with the start menu.

    And, if you're not supposed to use Metro applications (which can be brought up as programs to handle file types, etc.), why was Microsoft pushing its counterpart to the app store for laptops and desktops?

    I didn't say you're not supposed to, just that you probably wouldn't. But with the growth of the touchscreen display sector, laptops with touchscreens and convertible tablets you can see why they included it in the desktop version and with it not being particularly appropriate for setups that don't have touchscreens they have alleviated the issue with Continuum in Windows 10.

  185. Re:Every new employee by david_thornley · · Score: 1

    I have used Macs, Linux boxes, Windows boxes, and other computers. I'm familiar with quite a few user interfaces. The Metro UI is, as far as I can tell, worse than other GUIs I've used. Why does a computer need to come with a tutorial? Other UI experts have looked at it and found problems, so it's not just me and my son.

    I have no objection to Metro being included in Windows, as long as I can easily completely avoid it on the desktop and laptop. If Windows 8 had had a mode in which it worked just like Windows 7, only better, it would have been a hit.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  186. Re:Every new employee by exomondo · · Score: 1
    I'm not saying Metro is good, I'm saying that if you were to use say an OS X workflow you don't need to use it at all. Boot-to-desktop then you have all your OS X paradigms:

    -Dock = Taskbar
    -Spotlight = Search
    -Desktop = Desktop
    -Finder = Explorer

    ...and if you really want...
    -Launchpad = Start Screen

    I *mostly* use Windows at work and *mostly* OS X at home and the workflow is the same on both.

  187. Re:Every new employee by david_thornley · · Score: 1

    Suppose I prefer a Windows 7 workflow on my Windows machine. Unless I install something third-party, I don't get a nice Start Menu. In general, things I use all the time are in the taskbar (equivalent to OSX dock), lesser used things in icons at the edge of the screen, and for everything else I find the Start Menu an efficient means of finding a program even if I don't remember what it's called. (I know about the typing the program name, but if I use a program so infrequently that I don't have an icon going to it I'm not certain to remember the binary name.) I like this better than when I last used OSX.

    --
    "When you have eliminated the unacceptable, whatever is left, however improbable, must be the truthiness" - Holmes
  188. Re:Every new employee by exomondo · · Score: 1

    Suppose I prefer a Windows 7 workflow on my Windows machine. Unless I install something third-party, I don't get a nice Start Menu.

    Right, they removed it so if you prefer it then install a 3rd party add on. But given that the start menu doesn't exist on other platforms anybody not totally indoctrinated in use of the start menu is not going to have much trouble. The question is why are these people claiming that Windows 8 is unusable on a site like this? (not that you're doing that) Given the solution to the problem is as easy as installing an addon, a replacement shell, adapting your workflow to something matching other platforms or developing your own start menu replacement?