UP-magic pocket machine arm mount u disk

View U disk information
# fdisk -l

mount -t vfat /dev/mmcblk0p1 /mnt/sdcard/ 

mount U disk


Mount command format: mount [-parameter] [device name] [mount point] [other parameters]
                            mount -t vfat /dev/sdb1/ /mnt/usb -o iocharset=gb2312
          -t specifies the file system type of the device, in Therefore, the use of -t vfat is due to the file of the U disk used


                The system type is fat32. If it is ntfs, use -t ntfs, etc. You can use it according to your own


                The file system type can be modified flexibly.


          -o specifies the options when mounting the file system, here, -o iocharset=gb2312 sets the Chinese character set.


                Assuming your locale is zh_CN.UTF-8, the corresponding order should be -o iocharset=utf8.
 

Guess you like

Origin blog.csdn.net/WASEFADG/article/details/130098330