Linux cannot recognize U disk

王林
Release: 2020-01-11 14:14:31
Original
11492 people have browsed it

Linux cannot recognize U disk

1. Insert the USB flash drive and execute the following command:

#fdisk -l /dev/sd*
Copy after login

or

#df
Copy after login

If you see the corresponding USB flash drive, then the USB flash drive It has been correctly recognized; if it cannot be seen, perform the next operation.

(Online learning video tutorial sharing: linux video tutorial)

2. Then continue to execute the following command:

#lsmod
Copy after login

Viewusb- storage scsi_mod sd_mod Whether the module has been added. If the above module is not found, execute #modprobe [module] to add it.

3. Finally, establish a mount point, such as /mnt/usb, and execute the following command.

#mount /dev/sda /mnt/usb
Copy after login

Some systems need to indicate the file type to be mounted. You can execute the following command:

#mount -t vfat /dev/sda /mnt/usb
Copy after login

Recommended related articles and tutorials: linux tutorial

The above is the detailed content of Linux cannot recognize U disk. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template