How to solve USB unrecognized under Linux?

  

After inserting the USB flash drive, follow the steps below:

1.fdisk -l /dev/sd*

Usually this step will find the USB flash drive, if the USB flash drive has instructions The light will also illuminate to indicate that it was found.

2. If the previous command does not respond, or some information display module is not added

lsmod can check if there is usb-storage scsi_mod sd_mod module.

No modprobe [module], add missing modules.

Then try again ok

3. Finally, mount the U disk, here you need to build a usb directory under the mnt directory

mount /dev/sda /Mnt/usb

Some systems need to specify the type of file system, you can use

mount -t vfat /dev/sda /mnt/usb

Copyright © Windows knowledge All Rights Reserved