1、先插好u盘到Linux服务器,然后查看u盘挂载到哪个目录下面。
[root@localhost ~]# /sbin/fdisk -l

2、挂载到u目录下面
[root@localhost ~]# mkdir /u & mount -t auto /dev/sdb4 /u
3、完事后记得卸载,否则下一次则不能够挂载到这个目录下面了。
[root@localhost c]# umount -r /u
若前天卸载了,就可以
[root@localhost ~]# fdisk -l
Device Boot Start End Blocks Id System
/dev/sdb4 * 256 15148607 7574176 b W95 FAT32
[root@localhost ~]# mount /dev/sdb4 /mnt/