I'm trying to dual boot Arch Linux (on LVM) and Windows 10 (which I upgraded from Windows 7) on my BIOS/MBR system. I made a Linux LVM partition (it's name is /dev/sda4
) with fdisk, but when I try to enter
# pvcreate /dev/sda4
I get the following message:
WARNING: dos signature detected on /dev/sda4 at offset 510. Wipe it? [y/n]
What are the consequences of entering y
? Is it going to affect my Windows installation?
fdisk -l /dev/sda
to your question – Chris Davies Jul 02 '20 at 07:04sudo file -s /dev/sda4
- looks like you have a Windows partition on it. – Artem S. Tashkinov Jul 02 '20 at 07:10y
in order to usepvcreate
. – SyntasticMonoid Jul 02 '20 at 09:15