Skip to main content

Formatting Drives

  1. You should now be inside the Arch shell. Below is a screenshot of what it looks like.
    arch shell

  2. With the command below, you can list all currently attached drives. In that list, there should at least be your main Hard Drive and your Flash Drive

     root@archiso ~ # lsblk
     NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
     loop0    7:0    0 710.1M  1 loop /run/archiso/airootfs
     sr0     11:0    1 824.3M  0 rom
     vda    254:0    0    20G  0 disk
    

    In my case, my Hard Drive I'll be installing Arch to is vda because I am in a Virtual Machine. Yours might be called sda, nvme0n1p or hda, depending on if you've installed an SSD, an NVME SSD or an HDD respectively.

  3. We are now going to format this drive using cfdisk. You can also format your drive with fdisk, but cfdisk has a simple to navigate interface.

    root@archiso ~ # cfdisk /dev/vda
    
    1. You're now going to be met with the following options, if your Hard Disk is empty. This will not show up if you've already partitioned your drive, like if you're coming from Windows.
      select label type cfdisk
      Here, choose gpt (GUID Partition Table) for drives bigger than 2 TB and machines using UEFI and dos (Master Boot Record) otherwise. Once you come to this screen, you can skip the next step. cfdisk empty
    2. If you come from another operating systems, you're going to have a few entires here. You can either remove all the partitions, or create new ones to install Arch into. To remove partitions, scroll to the delete option and hit enter for each partition you'd like to delete. delete partition
    3. Once you've got an empty slate, we can start creating all the necessary partitions. Create them in the order and sizes shown below, where [RAM] is your RAM capacity and [Size] is your remaining hard drive space.
    PartitionSize

    | Boot | 100M | | Swap | 0.5*[RAM] | | Root | [Size] |

    Tip: You can also create a Home partition now, if you want to be able to change distros without deleting your user data


    Your Partitions should look something similar to this: cfdisk-finished

    1. Once you're done partitioning your drive, you can go over to the Write option, hit enter, and confirm the partitioning process by typing yes. Then you can quit out of cfdisk.


    Danger! This process will permanently delete any partitions you chose to delete.
    Double check your partitioning scheme, so that you do not delete important data.

    confirm deletion

  1. We can now properly format the drives. For that, we need to know how the new partitions are called. Run lsblk again. In the guide above, we created the partitions like in the table below, and lsblk reflects that.

    PartitionSizePartition

    | Boot | 100M | /dev/vda1 | | Swap | 0.5*[RAM] | /dev/vda2 | | Root | [Size] | /dev/vda3 |

    1. Let's first format the boot and root partitions with the following commands. Note that the boot partition has to be in FAT32, otherwise it wont be recognised:
      #==> Important: replace /dev/vda with your drive!
      root@archiso ~ # mkfs.fat -F 32 /dev/vda1
      root@archiso ~ # mkfs.ext4 /dev/vda3
      

      Note: You can also format your root partition to be in the BTRFS format, which allows snapshots.
      Just replace ext4 with btrfs in the command above.

    2. Formatting the swap partition is a little different:
      #==> Important: replace /dev/vda with your drive!
      root@archiso ~ # mkswap /dev/vda2