Linux uses mount to mount

format partition

sudo mkfs -t ext4 /dev/mmcblk0p1

format partition

This is recommended in actual use. It is a variant of the mkfs command, which can automatically identify the file system type as ext4, and use the default parameters of the ext4 file system to create a file system. Therefore, it is more convenient to use the mkfs.ext4 command to create an ext4 file system than to use the mkfs command

mkfs.ext4 /dev/mmcblk0p1

mount

mount /dev/mmcblk0p1 /mnt

startup file

we /etc/fstab

Guess you like

Origin blog.csdn.net/qq_40715266/article/details/132174312