In the use of IMX6 Core Board development, the program written to a U disk, want to run the program on the board through a U disk, U disk inserted on the board after the minicom in the information display, but unable to find the Mount file,/dev and/mnt did not find the corresponding file. Baidu later found that the U disk in the arm of Linux needs to be manually mounted. Here's how:
1, the USB stick will be inserted after the information displayed in the Minicom,
2. Use the following command to view the USB drive device name (System assigned):
It will then appear as follows:
See the middle device that line, it means that the USB stick device name is SDA4, in the/dev/directory, directly into the/DEV/SDA4 is not see the file, will be prompted not to this folder, it is necessary for us to mount.
3. You can create a new mount directory:/mnt/udisk/
Here I was built before, so the hint exists.
This directory is the mount directory of the USB flash drive, the files in this directory will be the file name on the USB drive
4. mount the USB drive. Execute the following command:
Indicates that the content under the/dev/sda4/is mounted under/mnt/udisk so that it is mounted successfully.
5. go to the USB stick directory/mnt/udisk to view the data on the USB drive.
This shows the data in the USB drive directory.
After that, you can operate the program on the USB flash drive and find that it is much faster than mirroring it in a virtual machine.
About IMX6 Core Board QT system USB Stick mount