so i want to format & partition my drive with parted. [running on Artix with runit @ Legacy BIOS in the live installation enviroment]
i want to create 2 partitions, /dev/sda1 for boot and /dev/sda2 for a lvm container. but all that is probably besides the point because parted doesnt really create the filesystems is tell it to or not at all.
my commands:
parted -s /dev/sda mklabel msdos
parted -s -a optimal /dev/sda mkpart "primary" "fat32" "0%" "1024MiB"
parted -s /dev/sda set 1 boot on
parted -s -a optimal /dev/sda mkpart "primary" "ext4" "1024MiB" "100%"
parted -s /dev/sda set 2 lvm on
parted -s /dev/sda print
so its nothing fancy, just basic partitioning but when printing to verify the end result the filesystem is often missing, or one time i created ext4 for boot instead of fat32
when i create a filesystem with mkfs to make the missing one, it will also show up when i [parted -s /dev/sda print] afterwards.
i dont really know what the reason for this could be, the web showed not usefull stuff regarding this problem and this makes me think parted is broken for me
note that i had to install parted first with pacman as it isnt available in the live enviroment first
also dont get confused why i use fat32 for legacy bios, it doesnt make a difference to ext4 and i simply want compatibility with uefi if necessairy
hope someone knows more than me, thanks in advance!