I was following this answer to install Windows on top of my existing Linux installation.
However, while running the Windows 7 installer it complains that the partition I am installing on is not a 'System' partition.
I have two HDs, set up like so:
sda (1 Tb)
- sda1 ntfs (500 Gb) <-- Windows 7 goes here
- sda2 lvm (500 Gb) <-- Storage
sdb (128 Gb)
- sdb1 lvm <-- Linux installation (also boot flag in GParted)
The Windows 7 installer marks sdb1
as the System partition.
What do I need to do to move the System partition to sda
so that I can install Windows?
sda
, or/dev/sda
is the device itself, in other words, the HDD, andsda1
,sda2
,sda3
, etc are its partitions. So,sda1
is, by definition, already on thesda
. ...you should probably add the output ofsudo fdisk -l
to the question. – mikewhatever Aug 20 '13 at 13:37sdb
tosda
. – ehuang Aug 21 '13 at 00:47