Plex86 Lives, As Lightweight VM Technology
Kevin P. Lawton writes "Plex86 has been completely overhauled, and simplified to be a user (application) code only Virtual Machine technology. For running user code, many of the heavy weight x86-VM techniques are unnecessary. But the bonus is, Linux can easily be made to run inside the plex86 VM, so that the kernel is actually 'pushed down' to user privilege level. This has been demonstrated on both Linux 2.4 and 2.5 kernels. Thus, Linux can run in a plex86 VM without the need for any heavy virtualization. My goal is to keep the code base trim, tight, auditable and get to usable releases quickly. And to favor those goals over adding unnecessary complexities. The first milestones have just been reached, so it's still early in development. There are email lists available on the main plex86 site."
Plex86 is taking so very long to materialize, I wonder if it is even worth the effort being put into it. Bochs works fine, even if slow, and virtualization isn't exactly a big market. Where does Plex86 fit into all this?
Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
User mode Linux has been invented and merged to the kernel already, no need for any additional software.
A topic brought up on Slashdot some time ago had some interesting discussion that if Free solutions like Plex86 took off, it would destroy VMWare's business model, and show other businesses that you can't make money developing software for Linux because someone will undercut you with a Free solution. How do you respond to these fears?
Kevin Lawton is the article submitter, the author of the program and bochs, and is really well known and highly regarded for his skill at this. Virtualizing a bios and all the devices is about as low level as you can get.
Put identity in the browser.
There are two things I would like to do with plex86:
0) multiple virtual Linux servers, each in its own chroot jail.
1) run Win98 under Linux, to be able to run Win32 apps for testing purposes or backwards compatability.
Sounds like it will do multiple Linux servers very well, soon. But do they still have any hopes for plex86 running non-Linux OSes as guests?
P.S. According to reviews I have read, Win4Lin does a decent job of letting you run Win98 under Linux. It's not free software, of course.
steveha
lf(1): it's like ls(1) but sorts filenames by extension, tersely
With the changes he's made in the goals of Plex86, it sure seems as if he's targetting the same approach currently in use by User-Mode Linux. I understand it may be quite different under the hood, but will that matter to users? It doesn't matter much to me if the task is accomplished using a ptrace thread under kernel system calls or actually virtualizes hardware -- if I can run several virtual GNU/Linux systems on top of one physical system, at a reasonable speed for the load, using free software as much as possible, I'm happy. The technical details of how it's done are irrelevant to me -- what matters is the result.
If the Bochs/Plex86 combination is actually faster than Bochs by itself on X86 hardware, and can approach the speed of VMWare, well, that sounds interesting to me. Virtualization technology is a large and growing market, funding a lot of IBM's recent growth in the mid-range server market with quad and 8-processor systems running VMWare to aggregate systems, improve manageability, and reduce personnel management costs. There's no denying the need is there; VMWare posted their first profit ever last quarter because of these strong sales, with more big money coming down the pipe.
Competition among free software projects is a good thing. I'm glad to see Plex86 come out with something new that may work better than the old. But what most people wanted was to run multiple copies of Microsoft Windows on top of Linux, or to run MS Windows in VMs alongside GNU/Linux, and if that doesn't work easily & quickly, it may be a potent obstacle to widespread adoption.
Matthew P. Barnson
I learn what I think when I read what I write
There is a detailed discussion of this in the Linux Kernel Traffic from the Jan 22-27 issue.
Help fight continental drift.
A reference on Slashdot:
4 7&mode=nested
MandrakeSoft Buys Bochs, LGPLs It
Linux MandrakePosted by Hemos on Thursday March 23, @00:50
from the good-things-are-happening dept.
Direct from the mouth of Gael Duval, we've gotten word that MandrakeSoft (Yes, the folks who make Mandrake-Linux. No, it has nothing to do with Mandrake of Enlightenment fame. ) have purchased Bochs and hired Kevin Lawton. Now that Bochs is LGPLed, the Plex86 development can be speed up as well.
http://slashdot.org/article.pl?sid=00/03/22/18512
The author of Plex86 and Bochs is the same guy who declared that VMWare had "ripped off" his idea and gone commercial after looking at his technology. The failure of Plex86 (and that's what this announcement is, an admission of failure) just goes to show that Kevin is and always was full of shit. He's been claiming that Bochs would have a binary translation system (much like VMWare and VirtualPC use) to speed it up ever since back when he was trying to flog it as shareware. So, in response to your question, there is very little fear that Kevin is going to come up with a product that can compete with VMWare (or VirutalPC for that matter) because he's no good.
How we know is more important than what we know.
Plex86 is a VM that requires that it be run on an actual x86 chip, it virtualizes the code that is running inside the VM so that the code thinks it's got access to it's own machine when in fact it does not, but is running as a user process in linux.
So you can run Windows inside linux, or linux inside linux. They all have to be for the x86 though. But I don't know how well it works.
Bochs is the emulator that runs code for the x86 on ANY processor, PPC, Sparc, whatever it will compile on. So that you could run Windows on a Sparc or a Mac. Though I don't know if it works THAT well.
You should check that again.
VMware under Windows, loads up several device drivers to bridge/route network traffic between the virtual machines and your local NICs.
And when I installed a demo VMware on my Linux box, it needed a kernel headers to build the vmware kernel modules(don't know what for). So, Vmware also needs modules/device drivers for operation.
Kashif
nt
If you wanna get rich, you know that payback is a bitch
it's cheaper to build another PC !
There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
User mode linux is a linux kernel that runs in userspace
plex86 is an x86 virtualizer that lest you create multiple virtual x86 machines to run whatever you want on them.
Feel free to flame and correct:
User Mode Linux is a port of Linux that allows the host Linux operating system to run the Linux kernel as a process (this could be seen more or less, as an exokernel). This is done by changing the Linux kernel code to use malloc() to allocate memory instead accessing hardware.
UML uses ptrace to intercept its childrens system calls and then forwards them to user-functions in the kernel.
Plex86 on the other hands makes no modifications to the kernel. Instead, it takes a stock(1) kernel and virtualizes the few instructions that aren't allowed to run in user mode (an exception is thrown when these instructions are attempted to run and Plex86 catches this, performs the virtualization, and returns as if the instruction actually executed).
Plex86 is literally virtual machine whereas UML is really just removing and hardware specific stuff in the kernel and making it a regular C program.
(1) I lied a little here. There is an inherent design flaw in three instructions on x86 such that they do not allow for the above. Kevin submitted a small patch (that I assume got accepted) to make these instructions only be accessed through inlines with additional code such that they behave as they should. By correcting this, it makes implementing a VM more or less trivial.
Note: unless someone finds a _really_ innovative way to allow these instructions to be easily handled for other operating systems, it's not likely you'll see Plex86 run other properitary operating systems.
Note2: Plex86 is more likely to make it to Windows first because UML requires ptrace and Windows has no concept of ptrace(). Not to mention the fact that mmap behaves quite differently on Windows.
Note3: Yes, the above problems have been addressed in the UML Win32 port but they are non-trivial. From what I can gather, a Plex86 port will be pretty trivial to Windows...
int func(int a);
func((b += 3, b));
Arrggh, it's too hard.
I work for VMware. if you want to believe we've corrupted Kevin's precious bodily fluids, feel free. I don't speak for the company, and I know nothing beyond what slashdot has posted about plex86. Consider yourself disclaimed.
If I understand the story correctly, plex86 has basically surrendered. They've given up on running arbitrary supervisor level code; the Linux guests that Kevin refers to above require a patch to "fix" something the new "lean, mean" plex86 gets wrong.
If Linus is feeling even vaguely himself, he will not accept this patch. Ordinarily, people trying to put stuff into the kernel that a) hurts performance, and b) fixes no real problem, but c) is critical to some contrived project that seems really important to the contributor get entertainingly flamed, and then shown the door. In fact, Kevin's most likely motivation for submitting this as a Slashdot story is to marshall support for his Linux patch.
Even if Linus does accept this patch, I can guarantee you that Microsoft, the FreeBSD team, the now non-existent Be, etc., won't all be taking helpful hints from Kevin about which x86 features they may and may not use. Ergo, there is nothing interesting (either commercially or geekily) you can do with plex86; the most it can hope for is to run recent-ish Linux guests on recent-ish Linux hosts. Bestill my heart.
On the upside, maybe Kevin will stop implying that VMware stole Bochs, now that he's spent four years trying to clone our software and has finally admitted defeat.
Admittedlty, I haven't tried VMWare since the 2.something-or-other days, but even simple VGA emulation was far from perfect then.
:)
I'm a loyal, huge fan of several old DOS based engineering programs that don't have "modern" windowed or OSS equivalents that are nearly as efficient, and just don't work and play well in a Win2k DOS box (if you can call it that). But even so, I need to use Win2k for the rest of the CAD/CAM/EDA work I do day to day.
So, basically I just needed something to run these old DOS programs. I looked at Bochs, which was pretty young at the time, and wouldn't cut it at all then. I decide to try out VMWare, thinking that just simple non-VESA basic VGA emulation would pretty much be a slam-dunk and work out of the box. Wrong. Nothing but trouble, corrupted video, all sorts of "issues".
Now, I understand that these programs may manipulate the VGA hardware in, um, "non-standard" ways, but even so, I didn't expect the bulk of my old software running in simple 640x480x4bpp mode to exhibit such horrible artifacts. IIRC, even 320x240x4bpp mode exhibited the same problems.
After some fooling around, as an experiment, I installed Linux inside VMWare - with the proprietary X server, and then eventually succeeded in getting my DOS programs to run inside Linux inside Xdosemu. Even though it worked, it was a bit too much of a kludge - even for me. Research and emails to VMWare basically confirmed that video support for anything other than Windows or Linux just wasn't going to be "complete". Bummer.
So, I tried VirtualPC. Even though it was slower than VMWare, when running software in a DOS environment that was cutting edge in the 486-66 days, running in a VM on a 800MHz host seemed unnaturally fast in many ways
Many people have run VirtualPC down in that it emulates "outdated" hardware like the DEC Tulip ethernet controller (Intel now I believe) and the lowly S3 Trio video card, but from what I've seen, the hardware emulation is true to the real deal - and the bonus is that just about anything can support those two hardware components. So, VPC gave me what I needed, at a price and speed that were reasonable, even if it doesn't run on everyone's favorite free OS.
I'm sure VMWare has improved in many of these areas, but for what I needed at that time, it didn't fit at all, and was a basic disappointment. I'm sure if I needed a virtualized server farm, which is the main focus of VMWare currently, I'd be much happier. But it's strength at that time was in processor virtualization and not hardware emulation.
I'm intrigued with the "new" Bochs/Plex86 combination, and maybe someday it will be able to do what I need it to do, under any host OS it's available on. For now, I'll use VPC and watch intently from a distance.
Just my two cents worth.
Brad
I must say that I appreciate VMWare for both its hack value and usefulness. (It's also one of the too few commercial applications that's as easy to deploy as should be with it's download-configure-pay -model.) Nice to hear a human^Wnerdish voice from someone inside as well.
I think, therefore thoughts exist. Ego is just an impression.