How to read U disk under Linux

  
In linux, the U disk is used as the SCSI device. Before mounting the U disk, first confirm the U disk device name, and input dmesg in the terminal. More view, the official website here is to use sda1 to establish the mount point /mnt/usb and then use the code: mount -t vfat /dev/sda1 /mnt/usb mount, or by adding code in fstab: /dev/sda1 /mnt/usb vfat defaults 0 0 Boot automatically mounts, but with the defaults parameter, if the U disk is not plugged in when booting, it will report an error. So I added /dev/sda1 /mnt/usb vfat noauto 0 0 to fstab Then create a new hard disk device link on the desktop, select the device as /dev/sda1 (/mnt/usb) semi-automatically mounted on the device tab of the link properties. After using the USB flash drive, just click on this link. .
Copyright © Windows knowledge All Rights Reserved