Raspberry Pi mount exFAT format U disk

  • Create a new mount point

    • sudo mkdir /mnt/***
      
  • The FAT format U disk mount itself can support it, but if your U disk or mobile hard disk uses the exFAT format, mount will say that it does not support it. It doesn't matter, mount will support after installing exfat-fuse software.

    • sudo apt-get install exfat-fuse
      
      
  • Use mountthe command to mount the U disk

    • sudo mount -o uid=pi,gid=pi /dev/sda1 /mnt/***
      
    • sda1 depends on your actual situation, a means the first hard disk, and 1 means the first partition.

  • unmount mount

    • sudo umount /mnt/***
      

Guess you like

Origin blog.csdn.net/qq_39125451/article/details/116172892