感谢支持
我们一直在努力

Linux系统下挂载USB硬盘的解决方法

看看系统认出的盘先:

如果没有被认出,则加载模块

然后挂载:

#mount -t vfat /dev/sdax /mnt/flash_memory

看看系统认出的盘先:

查看系统分区情况,主要是看usb盘是否被系统认出,一般被认为sda*(即scsi盘) #cat /proc/partitions 如果没有被认出,则加载模块 进入模块目录,模块对于kernel来说是组件,需要则加载,因为耗资源

#cd /lib/modules/2.4.x-x/kernel/drivers

#insmod ./scsi/scsi/scsi_mod.o

#insmod ./scsi/sd_mod.o –此一般为USB硬盘(优盘)驱动 #insmod ./scsi/ide_scsi.o

#insmod ./usb/usbcore.o

#insmod ./usb/usb_uhci.o

#insmod ./usb/usb_ohci.o

再看看系统认的盘: #cat /proc/partitions

然后挂载: #mount -t vfat /dev/sdax /mnt/flash_memory

使用完后卸载usb #umount /mnt/flash_memory

卸载模块,以便释放kernel的资源

#rmmod ./scsi/sd_mod.

赞(0) 打赏
转载请注明出处:服务器评测 » Linux系统下挂载USB硬盘的解决方法
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏