Edgeboard mounts U disk or mounts SD card through card reader

1. View the current hard disk memory:

fdisk -l

2. Insert and view again

one extra:

3. /dev/sda1 is the name of the U disk we need to mount, we need to mount it in a file or path, here I choose

/home/root/workspace/autostart/src/pull/

 

You can also create a file path yourself and mount it:

mount /dev/sda1 /home/root/workspace/autostart/src/pull/

 4. View the mounted U disk:

cd /home/root/workspace/autostart/src/pull/

ls

5. Unmount the U disk when not in use, that is, cancel the mount: (need to exit the currently mounted file path before operating)

 umount /dev/sda1

Guess you like

Origin blog.csdn.net/m0_58644391/article/details/124306453