Download the Tom's Hardware App from the App Store
The reference for current tech news
Yes No
Ads

Conclusion

by

Now you should have Windows XP set up as a guest inside VirtualBox on a Linux host. With Guest Additions, XP should now be in some form of fullscreen with mouse and keyboard integration. You can share files to and from the XP guest and Linux host. Your USB devices are available to the XP virtual machine. Heck, even cut, copy, and paste functions bi-directionally between the OSes. Unless you do really heavy 3D gaming, this setup should cover any straggling Windows-only apps that you absolutely need. It essentially does the very same thing that XP Mode does in Windows 7. Is there really a need to shell out extra money to get that functionality from a new version of Windows?

If you decide to keep this setup, then this How To guide saved you money. But how much? In a worst-case scenario, at least $90 assuming you already have a copy of Windows 7 Home Premium from a new PC purchase, in which case you'd need to pay that much to upgrade it to Professional in order to get XPM. In the best case scenario, $170. If Windows 7 Home Basic or Starter edition came installed on your new PC, you need to pay another $80 to upgrade to Windows 7 Home Premium, before paying the $90 for Pro or Ultimate.

Add in the fact that you probably have more than one PC (I have seven). Now you can really start to see how Windows 7 could end up costing serious cash. Even if you already pre-ordered the new Windows for your primary machine, you could still use the Linux/VBox/XP-combo on your others. And unless you're a hardcore gamer, go ahead and run Windows 7 in VirtualBox, too!

If it's the glowing Windows orb, the transparent windows, or gossamer reflection effects that are enticing you to go out and buy Windows 7, stay tuned for our upcoming coverage of Linux Preferences. There, we'll walk you through all the ways to customize your GUI, from panels to widgets and everything in-between. Don't worry, there will be a ton of transparency effects for those interested in cloning the Windows 7 GUI. There will even be some effects, like expo for Compiz Fusion, never before seen on a Windows machine.

Share:
125
Comments
Read more
X
Submit

Comments
Read the comments on the forums
cmmcnamara 10/07/2009 8:14 AM
Hide
-20+

I applaud the promotion of Linux, but this can be done in Windows too....Virtualbox is multiplatform.

johnbilicki 10/07/2009 8:21 AM
Show
jsloan 10/07/2009 8:22 AM
Hide
-1+

xpm is nothing but an integrated microsoft virtual pc 2007, which microsoft makes available for free.

i've been running w7 since day one and i have not found a reason to use xpm. windows 7 runs everything i've thrown at it.

also, virtual box runs fine on w7, so there is no need for linux...

johnbilicki 10/07/2009 8:24 AM
Hide
-19+

How about some articles in regards to getting popular games to run on Linux distros? I finally got around to trying Wine and I was amazed as how insanely easy it was. A good article could convince many to migrate...and I'd love to see major releases start taking Linux as a serious gaming OS.

void5 10/07/2009 8:26 AM
Hide
-20+

You can't run Windows in virtual machine on Linux "all for free" - you still have to buy license to use Windows copy legally.

lifelesspoet 10/07/2009 8:30 AM
Hide
-1+

So far I tried 3 games that didn't run in windows 7 but ran in wine. It seems from my example, the older the program is the more likely it will run in linux and less likely it will run in the latest version of windows.
Also, virtual box doesn't support directx, so graphically intense programs will not run properly or at all.

JonathanDeane 10/07/2009 9:03 AM
Hide
-2+

I like my main machine (the one with the most oomph) to run Windows what ever flavor is the latest. Then I like to run Linux on older hardware since Windows tends to bloat over time and not work so well. The OS is just a tool. XP is almost to that Windows 98 stage where it lacks security and is getting slower with each patch and lacks the new shiny. RIP XP you where the best of the best in your day! Being OS agnostic gives you more tools to work with in your life learn to use them all properly and you will find you can do things you thought where too hard or too complex before. Maybe one day people will learn to love all OS's equally lol

bujcri 10/07/2009 10:15 AM
Hide
-0+

Very nice article, still, it doesn't mention anything about possibility of running 64 bit software or how many cpu cores virtual box can use (I saw from the picture that it could be more than one)

danny69t 10/07/2009 10:22 AM
Hide
-8+

Good article. Keep it up with Ubuntu "stuff" like this. How about making a short article about installing software from tar.gz ? I didn't manage to use them darn tarballs.

"all the ways to customize your GUI, from panels to widgets and everything in-between. Don't worry, there will be a ton of transparency effects for those interested in cloning the Windows 7 GUI. There will even be some effects, like expo for Compiz Fusion, never before seen on a Windows machine."

Can't wait for that article, Adam.

mitch074 10/07/2009 10:55 AM
Hide
-7+

Please note:

- the article does state that you need a valid XP install media - meaning, that you should have a Windows XP license with it. Say, the one that came with the computer you converted to Linux... Moreover, if you happen to install an 'update' version of Windows, you lose the right to install both the older and newer OS on the machine (check EULA) - so you'd need to spring for a 'full' version of either. Linux has no EULA (only the GPL, which essentially says 'use at will') so you can use the former OEM OS (presumably Win XP - lower-end Vista have EULA limitations) in a VM, IF KEPT ON THAT 'REAL' MACHINE.

- DirectX acceleration is available in VirtualBox (this is not the case with VirtualPC), but it is experimental. Essentially, it creates an OpenGL context on the host OS (Linux or Windows), a virtual 3D device on the guest OS, provides a DirectX to OpenGL translator and a WGL to XGL passthrough (think Wine) - giving the guest OS accelerated OpenGL and DirectX capabilities. Note that currently, the OpenGL option is considered more stable than DirectX, because like Wine's WGL to XGL passthrough driver, there's (almost) no code translation required. As far as I know, there is no passthrough option available for DirectX (thus Windows on Windows has no advantage over windows on Linux - it's even worse, due to Windows on Linux making use of Linux's much faster I/O capabilities - my test results, not mine).

- The vbox 'CPU cores' options defines how many cores are emulated on the host; as far as I know, vbox ain't multithreaded yet. Think SMP emulation for the host. You should also enable IO APIC emulation with it, and this may be unstable in WinXP.

About .tar.gz packages: they can contain both binaries and source code; thing is, in Linux, it's often more practical to ship source code and make the user compile it, but the user has to know which is what. If we take Skype's example, there are two .tar.gz available: the 'dynamic' one will make use of local libraries already installed on your machine (mainly Qt), the 'static' is a complete package that doesn't require any extra install (but is a much bigger download). On Xvid's page though, the .tar.gz package only contains source code; you have to enter the directory that contains the UNIX-like source, and do 'magic':

./configure --help ## that parses the 'configure' script and recaps default compilation and install settings. Read it thoroughly. Don't forget the './', required to run the local version; otherwise, Linux will default to 'configure' located in /usr/bin, which is NOT the same.

./configure ## that checks for dependencies on the system and prepares the build; if it can't find a compiler or any other required dependency it'll abort: install GCC and whatever library is missing (you may need the -dev or -devel package). If it can't find NASM, an assembly optimizer, it'll revert to slow 'pure C' implementation - and say so. Thus, read ./configure's output. Install optional dependencies for those features you need. You may need to pass options defined in the --help.

make ## that will actually start the compile job, according to the last ./configure run (some will actually run configure with default settings first; it is also possible that there is no ./configure script). It should take a few minutes depending on how fast your processor is.

make install ## to be run as root. Will add libraries and binaries in default paths on your system, overwriting existing files. If run as user, will probably fail. You may run into dependency hell if you overwrite existing critical files.

For actual, package-dependent instructions, read the README files that are found inside the package. Most will sum up the above, others may give different instructions.

Some packages (mainly daily builds) will actually require tools like 'automake' that parse the current source files, create a ./configure script and run it.

Thanatopsis 10/07/2009 11:04 AM
Show
anamaniac 10/07/2009 11:04 AM
Show
anamaniac 10/07/2009 11:08 AM
Hide
-0+

On a side note, if I remember correctly, Win7 Home is $100 OEM and $250 OEM.
These come with no support, but really, not like you'd use microsoft support anyways, especially if your a user using a linux distribution.

Anonymous 10/07/2009 12:29 PM
Hide
-6+

Really liked your article.
VBox is improving really fast, is free, and can do everything VmWare does.

Zingam 10/07/2009 1:11 PM
Hide
-4+

Virtual Box is amazing!
If I use it and have money I would gladly donate! :) (But I'm not a nice guy I would still pirate Win because MS does not deserve my money)

evongugg 10/07/2009 1:58 PM
Hide
-1+

Finally you can do your taxes in Ubuntu with the Virtual machine.

You can install just about any version of Windows you want with a Virtual machine and more operating systems. See here for all the operating system supported.

http://www.virtualbox.org/wiki/Guest_OSes

randoMIZER 10/07/2009 2:37 PM
Hide
-8+

Thanatopsis :
"In order to follow this guide, you need an installed Linux distribution (I use Ubuntu), a legitimate copy of Windows XP, familiarity with the XP installation, and Sun's VirtualBox virtualization software (free). "You don't NEED a legitimate copy of XP. There's no reason this wouldn't work with any copy of it.


Are you suggesting that they actively promote piracy on a front page article? You must be joking.

bunz_of_steel 10/07/2009 2:52 PM
Hide
-1+

jsloan There is no need for your DA comments either! Gr8 article Adam!! Looking forward to pt2 maybe w/64bit multi-core difference comparisons with different memory allocations.

climber 10/07/2009 2:59 PM
Hide
-0+

I wonder if someone could switch their computer to linux, install the virtual box environment then install XP and get all the updates and everything to bring windows up to date, then install Ghost. Could one do a Ghost restore to that virtual PC to restore your drive to the virtual drive?

caamsa 10/07/2009 3:40 PM
Hide
--2+

Wouldn't it be easier to just dual boot windows and Ubuntu on the same disk? Then at start up you can just pick one or the other without all the hassles of using the virtual box.


Ads

Best offers

All about Software

Newsletters


OK
Ads