Linux下挂载u盘步骤
看看系统认出的盘先:
如果没有被认出,则加载模块
然后挂载:
#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
相关推荐
Attend 2020-06-27
jiangtie 2020-05-11
clamzxf 2020-03-28
chenchuang 2020-03-27
Summer的小屋 2020-03-26
jiangtie 2020-01-07
ykmail 2013-07-30
小惠 2013-06-27
andylanzhiyong 2013-06-07
andylanzhiyong 2019-12-24
pointfish 2019-12-14
luther 2013-08-22
Jesuslovesme 2013-08-13
zzydy 2013-08-16
hengxie00 2014-12-05
wanggongzhen 2015-01-13
拿什么来拯救自己 2015-08-10
留百叶 2015-06-11
HeronLinuxampARM 2015-05-11