# Written in 2023 by Márcio Silva # # To the extent possible under law, the author(s) have dedicated all copyright # and related and neighboring rights to this software to the public domain # worldwide. This software is distributed without any warranty. # # You should have received a copy of the CC0 Public Domain Dedication along # with this software. If not, see # . # Find storages sysctl hw.disknames # Print partition fdisk sd1 # Edit partition fdisk -e sd1 # Print BSD slices disklabel sd1 # Edit BSD slices disklabel -E sd1 # Mount FFS2 partition (with BSD slices) mount /dev/sd1a /mnt # Mount FAT/EXT2 storage (without BSD slices) mount /dev/sd1i /mnt # umount umount /mnt