[QUOTE="Odrec"]How is Sony making you buy their hardware? The other day I wanted to install Linux on a machine with Windows Vista but, interestingly enough, Vista basically won't let you install an additional OS on the same HD. You have to "trick" Vista into thinking it is the only OS on the machine in order to be able to install Linux. Microsoft have done whatever they can to keep any foreign software away from their system (it happened initially, and still happens at some degree, with java and linux) but it hasn't always been succesful, thankfullyWilliamRLBaker
no i think its more that you don't know what your doing with a computer, its actually quite easy to install linux with vista.
http://www.ghacks.net/2008/12/14/how-to-dual-boot-windows-vista-and-linux/
Windows doesn't like to be second. You can easily install another OS as long as Windows is on your first logical or phisical drive. At first I thought I was doing something wrong (I wanted Linux on my primary drive) but then what I realized is that Windows won't let you put it on a secondary drive so you have to trick it into thinking that it is on the primary one with the map option on the grub loader.
http://www.oculon.org/hijinx/linux/grub.htm
From the link:
This configuration involves a little trick. If you were too lazy to read the entire document you've probably already tried:
title = Windows 98
root = (hd1,0)
makeactive
chainloader +1
You've also realized that it doesn't work. Why is this? Its because Windows has to be on logical drive C, on a secondary hard drive this isn't possible by default. On some systems you can configure the BIOS to switch the logical drive configuration for you but you can do that more easily with Grub. Use the following entry:
title = Windows 98
root = (hd1,0)
map (hd0) (hd1)
map (hd1) (hd0)
makeactive
chainloader +1
The map option switches hd0 and hd1 and makes it appear that hd1 is the primary drive. So you should now have a starting point for most configurations.
Log in to comment