Você não faria o seguinte:
- Inicialize o disco de instalação do Arch Linux.
-
Executar
fdisk /dev/sda
.linux-1reo:~ # fdisk /dev/sda The number of cylinders for this disk is set to 9729. There is nothing wrong with that, but this is larger than 1024, and could in certain setups cause problems with: 1) software that runs at boot time (e.g., old versions of LILO) 2) booting and partitioning software from other OSs (e.g., DOS FDISK, OS/2 FDISK) Command (m for help):
-
Exclua as partições existentes usando a opção d .
-
Então, com todas as partições apagadas, crie uma nova usando a opção n . Esta será a primeira partição,
/dev/sda1
.Command (m for help): n First cylinder (7921-9729, default 7921): Using default value 7921 Last cylinder or +size or +sizeM or +sizeK (7921-9729, default 9729): +15G
-
Repita o passo # 4, mas desta vez siga as opções padrão.
-
Em seguida, verifique novamente se os tipos de partição estão definidos corretamente. Ambos devem ser "Linux". Por exemplo:
Command (m for help): p Disk /dev/sda: 80.0 GB, 80026361856 bytes 255 heads, 63 sectors/track, 9729 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 1402 11261533+ 7 HPFS/NTFS /dev/sda2 1403 1415 104422+ 83 Linux /dev/sda3 1416 1546 1052257+ 82 Linux swap / Solaris /dev/sda4 1547 9729 65729947+ 5 Extended /dev/sda5 1547 7920 51199123+ 8e Linux LVM /dev/sda6 7921 8045 1004031 83 Linux
-
Quando tudo estiver definido, escreva as alterações no disco, usando a opção w .
Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. WARNING: Re-reading the partition table failed with error 16: Device or resource busy. The kernel still uses the old table. The new table will be used at the next reboot. Syncing disks.
-
As etapas finais incluirão a formatação das partições usando
mkfs.ext4 /dev/sda1
emkfs.ext4 /dev/sda2
.