diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-10 12:20:32 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-10 12:20:32 -0400 |
commit | a89e198a35af06da0a0b5d3bee9f5abb50847b96 (patch) | |
tree | 8a15693ee1c0e48374e4e887f5036a779d873f8f | |
parent | 00778122cd1a09d3aa7be4aefa070bec3f81012c (diff) |
remove hardcoded sda1
-rwxr-xr-x | partition.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/partition.sh b/partition.sh index 56ee9e6..c82dc3c 100755 --- a/partition.sh +++ b/partition.sh @@ -15,7 +15,7 @@ sudo parted -s $DISK name 2 grub sudo parted -s $DISK set 2 bios_grub on sudo mkfs.btrfs -L linux "$DISK"1 -sudo mount /dev/sda1 /mnt +sudo mount /dev/"$DISK"1 /mnt sudo btrfs subvolume create /mnt/root sudo btrfs subvolume create /mnt/boot |