Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Operating Systems Software IT

VMware to Make Server Product Free (as in beer) 216

yahyamf writes "CNET News.com is reporting that in the face of increasing competition in the OS virtualization market VMWare is going to give away its GSX server product for free, in the hope that customers who try it will eventually migrate to the more powerful ESX server. The company recently released a free VMWare Player which could only run but not create virtual machines. The company faces competition from rival products such as SWsoft's Virtuozzo, Mircrosoft's Virtual Server, as well as open source software like Xen"
This discussion has been archived. No new comments can be posted.

VMware to Make Server Product Free (as in beer)

Comments Filter:
  • by jomas1 ( 696853 ) on Friday February 03, 2006 @09:41AM (#14634200) Homepage
    If you are going to list software that will let you run an operating system from within another don't leave out qemu ahref=http://fabrice.bellard.free.fr/qemu/rel=url2 html-2228 [slashdot.org]http://fabrice.bellard.free.fr/qemu/>

    Qemu may not run as fast as vmware does now but it's here, it's free and you can change whatever you want about it. The same is not true for vmware
    • by hummassa ( 157160 ) on Friday February 03, 2006 @09:48AM (#14634231) Homepage Journal
      I use QEMU everyday in my day job, so now I can boot my desktop in Linux... I use Delphi7 inside QEMU and it works flawlessly (not blazingly fast, but acceptable)
      • by xtracto ( 837672 ) on Friday February 03, 2006 @09:54AM (#14634262) Journal
        I used to run QEMU also but now that Vmware player is free I run that instead. As I am just an "end user" who do not really need to modify the code, I only use it to run Linux on my Windows computer.

        • Re:SECONDED (Score:4, Informative)

          by j0217995 ( 597878 ) on Friday February 03, 2006 @10:47AM (#14634601)
          I use a combination of them as well to run Linux on my windows box. If you use qemu to create the image file in vmware format you can then setup any vmplayer file to run any operating system. Currently I have the following image files, Ubuntu (Breezy), Ubuntu (Dapper), Windows 2003 Server, Debian, and BSD. All files were created first in qemu then I installed through VMPlayer. Runs as well as an official VM Player file available for download. See https://wiki.ubuntu.com/VMwarePlayerAndQemu [ubuntu.com] for more information.
          • Re:SECONDED (Score:2, Interesting)

            by martinultima ( 832468 ) <martinultima@gmail.com> on Friday February 03, 2006 @05:46PM (#14637972) Homepage Journal
            Well, even though I've used QEMU quite a while (and even wrote the first version of its Wikipedia article [wikipedia.org]!), I have to say that I prefer VMware myself. For one thing it's a lot faster – very important if you need to test the next version of a Linux system right now without any delays – and I also just like the program better.

            And then there's the licensing issue – while I appreciate QEMU being free and all, I don't like how the KQEMU module's proprietary software that can't be freely distributed. I'd much prefer to just have a completely proprietary solution that works than to have a half-free solution that doesn't really do much for me. Although if I knew how to write virtualization software I'd have my own solution anyway ;-)

            Oh, and remember Bochs [sf.net], what we used to have before QEMU? I remember spending hours just toying around with that program... ran Windows 95 pretty nicely, and before I switched to Linux it was rather nice to have a virtualization program that ran reliably on Windows 98SE.

            Although now I'm a Linux user and addicted to VMware, so why should it matter? ;-)
    • by Ed Avis ( 5917 ) <ed@membled.com> on Friday February 03, 2006 @10:15AM (#14634372) Homepage
      If you just want to run Linux under Windows, why not CoLinux [colinux.org]?
    • by squoozer ( 730327 ) on Friday February 03, 2006 @01:09PM (#14635786)

      Blatant advert alert! I recently put together a page about running XP under Qemu [crazysquirrel.com]. It's a bit tricky to get working (due to a bug in XP) and dog slow but if you must have XP under Linux this is a solution that works. I use it to test websites in IE.

    • by this great guy ( 922511 ) on Friday February 03, 2006 @03:58PM (#14637173)

      I use virtualization a lot, both at work and for for personal needs. I have got about 20 disk images, and my work typically requires me to run 2 or 3 virtual machines concurrently. Three or 4 years ago, I was using VMWare because it was basically the only product that worked well at the time. However I have switched to Qemu since then, because IMHO it is technically superior. Here is why:

      • Qemu copy-on-write disk image formats allows me to have as many different disk images of the same OS while using MUCH LESS disk space than VMWare. For example at work, I have N images of Windows XP, each configured with a different set of applications, parameters, etc, and all of them can be run concurrently. For me the lack of this feature in VMWare is clearly a showstopper, if I had to use VMWare I would have to create litteraly N different images, and it would use N times the disk space of Qemu (!). I cannot understand why VMWare STILL doesn't offer you such a feature after so many years.
      • Qemu copy-on-write disk image formats also allows me to create a new disk image instantly (less than 1 sec). The closest existing VMWare feature ("snapshot") is slow and not as convenient.
      • Qemu offers the option of being run on a machine without an X server. This is useful because my servers running Qemu don't need to be bloated with X, they are also more secure (no exported X display, etc). It is also much faster to run, create and manage virtual machines using Qemu's command line tools than using VMWare's GUI. And graphical guest OSes are usually accessed over VNC-like protocols so the lack of X doesn't matter.
      • Qemu, like VMWare, uses a kernel module to implement different techniques to speed up virtualization. However Qemu kernel module is smaller (less potential security vulns) and more stable (in my experience).
      • Qemu offers you the possibility of NOT using this kernel module. It can be very useful when you need to fire it up on a random machine: you don't have the obtain its kernel headers and you don't need to compile a kernel module.
      • Qemu offers a CLI tool to create, convert, commit (copy-on-write) disk images; the main Qemu binary is also a CLI tool; and the monitor device can also be redirected to standard input/output. The obvious advantage of this is that the whole Qemu suite is scriptable and flexible. I have written quite a few scripts to ease my life, you can control basically everything: start, shutdown, reboot, eject CD drives, save screenshots, pause/continue emulation, etc. I know that VMWare has recently introduced a Perl API, but I don't know if it is as complete as what you can do with Qemu.
      • Qemu is open-source, relies on standard kernel components and is generally better engineered. For example it uses the existing tun/tap driver and lets the users use iptables, to create virtual network interfaces and do NAT/bridging, etc. While VMWare re-implements THEIR virtual interfaces, THEIR nat code and THEIR bridging code, unnecessarily adding potential bugs and complexity to the whole system. VMWare has to do this because they have to support other technically inferior host OSes (Windows has no tun/tap driver, its firewall is not as powerful as iptables, etc).

      The only feature I would like to see implemented in Qemu is the one allowing you to make real USB devices available to guest OSes. But anyway VMWare has so many disadvantages (see above) that for me it's a clear no-go. I think people praising VMWare are maybe too close-minded and don't realize its disadvantages because they have no experience with other virtualization softwares...

      • by man_of_mr_e ( 217855 ) on Friday February 03, 2006 @04:53PM (#14637623)
        I don't think you've taken a look at the new 5.x series or the GSX or ESX server, though granted ESX is outrageously expensive. I'm not that familiar with QEMU, but some of the things you mention don't apply to VMWare GSX or ESX server. For example, GSX and ESX server allow remote GUI's, so you don't need X11 on the host machine.

        Additionally, VMWare has multi-processor support, as well as virtual SMP support, so you can simulate SMP on a single processor box (handy if you're debugging SMP problems but only have a single CPU system).

        Also, there's a pretty extensive scripting API on both GSX and ESX server and has been for years. I can't speak for Linux API, but the COM api on Windows has been used for a long time.

        About the only thing on your list that VMWare GSX server doesn't have is your "copy on write" but for the performance advantages of VMWare, i'd deal with it.
      • Does qemu offer virtualization now? Last time I looked at it, there was a lot of talk about using bochs as an engine for qemu, and someone claimed to have done it, but you couldn't GET it. Last I checked, qemu was only an emulator.
  • Mmm? (Score:5, Funny)

    by Anonymous Coward on Friday February 03, 2006 @09:42AM (#14634202)
    So where can I find this free beer everyone keeps talking about?
  • Mircrosoft (Score:3, Insightful)

    by raffe ( 28595 ) * on Friday February 03, 2006 @09:43AM (#14634206) Journal
    I bet this is more because og Mircrosoft than Xen. When Mircrosoft is moving into a field competitors usally shiver....
    • by Darth Daver ( 193621 ) on Friday February 03, 2006 @11:37AM (#14634991)
      I can't speak for anyone else, but I have absolutely zero interest in Microsoft's VM products. Xen, on the other hand, does intrigue me. Nothing compares to VMware today, though.
      • Re:Mircrosoft (Score:3, Insightful)

        by oni ( 41625 ) on Friday February 03, 2006 @12:38PM (#14635517) Homepage
        I can't speak for anyone else, but I have absolutely zero interest in Microsoft's VM products.

        Yeah, but the way the world works is that people who wouldn't normally even think about VMs will think about them for no other reason than the fact that it came for free with their OS. Microsoft will have a button somewhere labeled, "click here to make this a VM" and people who don't even know what a VM is will click it.

        Don't believe me? Take a look at the form that comes up after you install Win2k3 advanced server. The form is labeled "Configure this Server" and it has a checkbox labeled, "make this a DNS server" and the word DNS is underlined. When you click it, if gives you the definition of DNS. Isn't that great? If you don't already know what DNS is, then you don't have any business setting one up. But that's the microsoft way. That's their target audience.

        How hard is it to sell a DNS server to these people? "Do we need DNS? Wait, don't we already have that in windows?" VMWare is understandably worried that their product will soon be viewed in exactly the same way. "A VM? Do we need that? Wait, we already have it right here, just click that button"
    • by homer_ca ( 144738 ) on Friday February 03, 2006 @03:11PM (#14636747)
      True. VMWare GSX is more similar to MS Virtual Server (based on Virtual PC acquired from Connectix), and MS already said Virtual Server is being bundled for free with Longhorn Server. Xen + Intel VT can run Windows guest OS's too, but Xensource doesn't have a comparable commercial product yet for the corporate market.
  • Comment removed (Score:5, Interesting)

    by account_deleted ( 4530225 ) on Friday February 03, 2006 @09:46AM (#14634222)
    Comment removed based on user account deletion
    • Re:Intel VT (Score:5, Insightful)

      by rfinnvik ( 16122 ) * on Friday February 03, 2006 @09:52AM (#14634252)
      VMWare's real "killer app" in my opinion is VirtualCenter/VMotion. The management tool is better than anything else I've seen for managing virtual infrastructure - and the ability to move live VMs between hardware nodes is just impressive :)
      • Re:Intel VT (Score:2, Interesting)

        by ThePhilips ( 752041 ) on Friday February 03, 2006 @10:23AM (#14634426) Homepage Journal
        It definitely sounds good. At least it removes another 'contra' from long list of IA-32/AMD64 and PowerPC differences. As many of you have known for some time people who run Linux on PPC enjoyed free ride with Mac-On-Linux project. Check http://maconlinux.org/ [maconlinux.org]

        On side note, after seeing how easy virtualization can happen with Open Source kernels - e.g. User Mode Linux, Xen, Plex, coLinux, etc - me keeps wandering why M$ haven't done that with WinNT kernels. There are only few true obstacles in x86 "architecture" which prevent effective virtualization - VMware is solving all of them at very high level and of course tried in past to charge premium for that. Xen modifies kernel so that overhead of virtualization is negligible - it's not another computer emulator, it's just kernel running as a ordinary OS process. (Anyway, user tasks see computer only as it is reflected by kernel and device drivers (-: )

        I know M$ likes only good cash cows (like M$ Office franchise) but as OS kernel concerned, the modifications to allow it to run in virtual machine are truly not that big. Check-out the coLinux - it's neat. http://wiki.colinux.org/cgi-bin/ConvertingDistribu tions [colinux.org]

        P.S. Or is it what M$ Windows Advanced Server for?
      • Re:Intel VT (Score:4, Interesting)

        by jcnnghm ( 538570 ) on Friday February 03, 2006 @10:37AM (#14634527)
        Xen can also move live VMs between hardware nodes (only non-responsive for tens of milliseconds). It's going to be a very powerful tool once all chips have virtualization capabilities.
        • by myowntrueself ( 607117 ) on Friday February 03, 2006 @05:46PM (#14637969)
          "Xen can also move live VMs between hardware nodes"

          Given shared storage...

          So you either have something like fiber channel (vey expensive), iSCSI (doesn't look production-ready on Linux) or NFS root (pity the fool that relies on Linux NFS servers in a production environment).

          Any realistic, production-ready, Linux-based shared-storage alternatives that don't cost like a bazillion dollars?
      • by tres ( 151637 ) on Friday February 03, 2006 @01:05PM (#14635751) Homepage

        Virtuozzo has vzmigrate, but in a real production environment where you're migrating customers between hardware nodes, the arp-cache is your enemy much more than the few seconds of down-time that a product's migration tool incurs.

    • by kma ( 2898 ) on Friday February 03, 2006 @01:34PM (#14635981) Homepage Journal
      Uhh. No. [blogspot.com]
  • by tumutbound ( 549414 ) on Friday February 03, 2006 @09:49AM (#14634237)
    I'd certainly be pissed off if I'd just paid $1400 for GSX only to be told this week it's free.
    I've been paying for regular updates to VMWorkstation over the years, does this mean I can stop and just use the free products?
    That said, it's still worth the money I've been paying.
    • by ds_job ( 896062 ) on Friday February 03, 2006 @09:58AM (#14634286)
      Just imagine if you've just been done for downloading it off a p2p network and applying a cracked serial. That'd hurt. I'm not speaking from experience, just imagining...
    • by meringuoid ( 568297 ) on Friday February 03, 2006 @10:25AM (#14634434)
      I'd certainly be pissed off if I'd just paid $1400 for GSX only to be told this week it's free.

      Why? If you thought $1400 was too much for the product, you wouldn't have bought it. Since you bought the product, clearly you thought that what you were getting was worth more than what you were paying for it. So you were happy with the deal you made with VMware. Surely you are not petty enough to begrudge others the better deal that they are now getting?

      Though I'm certainly not the religious sort, I'm reminded of the Christian parable of the workers in the vineyard. You made your own deal with VMware, and you were happy with it. What business is it of yours if, since then, they have changed their plans and now offer better deals to others?

      • by thoth ( 7907 ) on Friday February 03, 2006 @01:39PM (#14636015) Journal
        The thing is, as the price rises, sellers often offer price protection. Think of all the consumer applicance stores, car dealerships, etc. that will give back the difference between what you paid and the current price, within a small time window.

        I believe Apple computer does this as well, if you buy a computer a few days before a price drop, they'll refund you.
        • by Forbman ( 794277 ) on Friday February 03, 2006 @05:20PM (#14637758)
          Yes, and then I think of all the other ones that offer little caveats in the small print on these so-called "price protections". The concept is sort of good in a retail environment, but if you went one day and filled your gas at $2.959/gal, and a couple of hours later, the price was down to $2.799/gal, do you think that if you go in with your receipt that the vendor is going to give you the difference back? Bah.

          Some stores do it as a customer-friendly measure, but they leave themselves wiggle room, or have to have wiggle room in order to sell certain product lines, etc.

          You pays your money, you takes your chances.

  • Limitations? (Score:5, Interesting)

    by Comatose51 ( 687974 ) on Friday February 03, 2006 @09:49AM (#14634240) Homepage
    This is not a troll comment but can it run on a cluster? Will it detect that it's running on a Linux cluster and refuse to run? Here's what I'm thinking, a bunch of older computers clustered using one of those Live CDs that make them part a cluster just by popping the CDs in. I believe the software, can't remember the name, also does single system image or something like that where the cluster appears as a single system to the applications. Then run VMWare on top and run any OS you want! In my scenario, I'll be running Windows because our software is written for Windows but takes forever to run. I've considered building a cluster but couldn't think of an easy way to make it run on Linux. I was going to try Xen but VMWare is super easy to use, if my experience using it on Windows carries over to Linux.

    Very exciting indeed.

    • Re:Limitations? (Score:3, Insightful)

      by hal2814 ( 725639 ) on Friday February 03, 2006 @10:19AM (#14634401)
      I'm not so sure that shoehorning an app (and an OS for that matter) that thinks it's running on a signle node into a cluster is such a good idea. The benefits of a cluster are typically only realized when the underlying software has some idea of what's going on and can organize data sufficiently accross the nodes. At best case, I'm guessing there will be an awfully chatty system in place that may get marginally better performance or may even get worse performance than running the app on a single node.
    • Re:Limitations? (Score:3, Informative)

      by stikves ( 127823 ) on Friday February 03, 2006 @10:29AM (#14634464) Homepage
      "This is not a troll comment but can it run on a cluster?"

      No it's not troll, but it's totally uniformed. Currently SMP (multiprocessor/multithreaded) VMware is only supported on ESX server as an addon [vmware.com]. As ESX runs on bare hardware (it's GSX who runs as a Linux application), there is currently no support for "virtual multiple CPUs in Linux". (Xen does this, but it's not the issue now).

      Additionally OpenMOSIX (which comes with ClusterKnoppix [bofh.be] - I guess you meant this by "those Live CDs"), does not to "SMP like" processing. Instead it combines the processes in a "global system view" state. (Too much technical details here, but a multiple threads are not migrated -- see HOWTO [faqs.org]).

      Moreover, it would be slow because of obvious issues -- as in network based access to disk and shared memory!

      Finally multiple GSX servers managed from a single point is already possible with VMWare virtual center (google this yourselves is left for an exercise).

      Sorry, but your suggestion will not work (at least under current circumstances).
      • by Comatose51 ( 687974 ) on Friday February 03, 2006 @10:59AM (#14634701) Homepage
        So for what I want to do, is Xen still the best way to go? I'm really uninformed about all this and want to experiment in the future. Thanks.
        • by stikves ( 127823 ) on Friday February 03, 2006 @11:13AM (#14634792) Homepage
          If I'm not mistaken you're trying to "combine the strengths of several old machines to run a SINGLE software".

          If so, please do not try to do this in a "generic" way. Even if somehow you achive to do it, the effect will be opposite of what you want. There is a big bottleneck in PC networking, unless you're using some specific fabric (say from Sun).

          Instead, try to rewrite you application to be "cluster aware". Windows has (in production?) a new version called "Compute Cluster Edition" [microsoft.com] which comes with MPI and necessary management tools.

          If you do not have access to the source code, bad luck then. Either use Free Software next time, or buy yourself a "powerful" single machine.

          If I'm mistaken and you're trying to make a "POOL" for virtual machines, then Xen would be a good solution (for it's price). However as you've said VMware is solid but Xen is "in infant stages". You'll have to write many (probably in Python) scripts to do your job.
  • by cablepokerface ( 718716 ) on Friday February 03, 2006 @09:57AM (#14634282)
    in the hope that customers who try it will eventually migrate to the more powerful ESX server

    It's not only more powerful, it's fundamentally different. It's requires a different sort of administration. Also, the usage is different. gsx wil rarely be actively used in high uptime required production environments, esx will. esx also enables functionalities such als vmotion (if you have a san [wikipedia.org] that is) and will be used more often in blade server configs.

    I really wonder if people will view esx as an 'upgrade' to gsx.
  • To play devils advocate here, why isn't VMWare resorting to patents to muscle out the competition? Why compete when a government monopoly can take care of competition for you?

    Are all their patents pending?
  • by Mark Gillespie ( 866733 ) on Friday February 03, 2006 @09:59AM (#14634292)
    Seems that GSX Server does everything VMWare Workstation does, so why would anyone buy VMware Workstation, when GSX Server is free? Don't quite understand that bit...
  • Wait a second.... (Score:4, Informative)

    by Anonymous Coward on Friday February 03, 2006 @10:00AM (#14634302)
    Doesn't TFA say they are "expected" to make their product free?

    expected != will
  • by digitaldc ( 879047 ) * on Friday February 03, 2006 @10:01AM (#14634310)
    VMWare is going to give away its GSX server product for free, in the hope that customers who try it will eventually migrate to the more powerful ESX server...Intel Virtualization Technology--code-named Vanderpool and now emerging in server processors--accelerates some operations and makes it possible to run Windows on Xen without modifications to Windows that otherwise would be necessary.

    I'm interested how the Intel Virtualization Technology will run on the up and coming SEX server.
  • Speculation (Score:3, Funny)

    by Simon (S2) ( 600188 ) on Friday February 03, 2006 @10:02AM (#14634313) Homepage
    This is all news.com.com.com.com speculation. In TFA they state: "VMware may gain two advantages from the move..." blablabla "VMware didn't immediately respond to requests for comment."
    So the title "VMware to Make Server Product Free (as in beer)" is misleading at best.
  • by timeOday ( 582209 ) on Friday February 03, 2006 @10:02AM (#14634314)
    This sounds to me like VMWare is under a lot of pressure. I'd hate to see them go away, because we use VMWare Workstation for some pretty important stuff, and the license cost isn't that bad in the grand scheme of things anyways.
  • by base3 ( 539820 ) on Friday February 03, 2006 @10:11AM (#14634348)
    . . . of much commercial value for long, given that the model of computing is headed for a TCPA/Palladium/Remote attestation/Client assurance/DRM lockdown. Emulating "trusted" computing would defeat the whole purpose of the "content" and computing industries' march towards that model. That, and they'll buy laws making even attempting such emulation punishable by just short of death.
  • by jocknerd ( 29758 ) on Friday February 03, 2006 @10:15AM (#14634375)
    I'm waiting for that.
    • by blueZ3 ( 744446 ) on Friday February 03, 2006 @12:15PM (#14635339) Homepage
      Now that Macs are on Intel, it seems fully possible to install one as a virtual machine... if Mac OS is installable on "generic" x86 hardware. The virtualization layer fully emulates the x86 architecture, so it seems pretty doable.

      The issues would be 1) Will Mac OS be supported on non-"trusted" hardware? and 2) Is there money in it? It seems only fair that someone else should offer a VirtualPC software to compete with Microsoft's Mac OS VPC product.

      I am going to try and start an internal campaign to stir this idea up at my employer... a vm company of whose name you are aware. :-)
  • by nurb432 ( 527695 ) on Friday February 03, 2006 @10:17AM (#14634383) Homepage Journal
    I live and die by GSX, does this mean they will stop development of new versions, Leaving just Workstaion ( wont do the job for me ) and ESX ( too expensive to justify )?
  • by gmf ( 810466 ) on Friday February 03, 2006 @10:27AM (#14634447)
    What is it with this "Related Stories" thing? Is that new, or why did I never notice it before?

    And most importantly: Will it also list the dupes? :)
  • Not GSX (Score:2, Informative)

    by Anonymous Coward on Friday February 03, 2006 @10:28AM (#14634454)
    The free product will be called VMware Server, not GSX. I am not sure if they will continue with GSX as a separate product, but I was under the impression that they will. I had initially heard about this here [theregister.co.uk].
  • by soboroff ( 91667 ) on Friday February 03, 2006 @10:32AM (#14634492)
    "The company recently released a free VMWare Player which could only run but not create virtual machines."

    Sure you can. Take a gander at http://www.hackaday.com/entry/1234000153064739/ [hackaday.com]

    What you don't get with VMware player is the nifty GUI to help you with the setup.
  • by EvilNight ( 11001 ) on Friday February 03, 2006 @10:53AM (#14634655)
    We're moving some of our development and most of our testing into VMs for the flexibility. We gave Microsoft Virtual PC a spin, but compared to VMWare it's pretty lacking in features, so we ended up going with VMWare Workstation. The advanced networking features, broad platform support, and snapshotting capability are huge wins for us. We had been planning to use Microsoft's Virtual PC Server product for collaborative development efforts because we get licenses with our MSDN subscriptions, whereas GSX was really damn pricey. Now, thanks to this rather canny offer of free GSX server, we won't even need to do that. This is most excellent.
  • by afabbro ( 33948 ) on Friday February 03, 2006 @11:54AM (#14635148) Homepage
    So would the Workstation also be free? My mental picture of the VMWare products was:
    • Workstation - can only administer it locally, limit on size of box, no VMotion, etc.
    • GSX - can administer it remotely, limit on size of box, no VMotion, etc.
    • ESX - everything
  • by idlake ( 850372 ) on Friday February 03, 2006 @01:37PM (#14636005)
    VMware's market is evaporating. Their value was virtualization of a difficult-to-virtualize architecture, the Pentium. Now that Pentium is getting hardware virtualization, virtualization is simple and it will just become a standard part of Linux, Windows, and OS X.
  • by mnmn ( 145599 ) on Friday February 03, 2006 @03:39PM (#14637015) Homepage
    VMware is not really competing with those other technologies. Its only looking at its impending doom at the hands of hypervisor technologies. Think about it, will you really need vmware when you have hypervisor... no vmware tools install, no slow machines, no lack of peripherals, full speed (almost)? For that reason alone I think I'll buy the first athlon64 with pacifica later this year. Hope they release a 754-pin version too.

The following statement is not true. The previous statement is true.

Working...