请问板斧...Redhat9下如何挂载U盘啊?
请问板斧...Redhat9下如何挂载U盘啊?:?: 先fdisk -l 看看具体是哪个设备文件名。mkdir /mnt/usb
mount -t vfat /dev/sda1(根据你看到实际情况填写一般是sda1) /mnt/usb 首先感谢hew回贴!...不过还是有些问题
1.用'fdisk -l'命令返回如下信息(应该找到USB设备了):
Device Boot Start End Blocks Id Syste
/dev/sda1 * 1 1003 128368 6 FAT16
2.用'mount -t vfat /dev/sda1'返回错误信息./mnt/usb下没有挂载成功!
我用RedHat9.0系统,安装有一个USB鼠标.是不是USB鼠标与U盘冲突啊? /mnt/usb
有这个目录吗? redhat 9支持vfat文件格式吗?好像不支持吧 vfat是支持的,你能把出错信息贴一下吗? mount -t vfat /dev/sda /mnt/usb ;
应该和-t msdos没什么关系的,fat16的? 输入'mount -t vfat /dev/sda1'后返回以下信息....
Usage: mount -V : print version
mount -h : print this help
mount : list mounted filesystems
mount -l : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
mount -a [-t|-O] ... : mount all stuff from /etc/fstab
mount device : mount device at the known place
mount directory : mount known device here
mount -t type dev dir : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
mount --bind olddir newdir
or move a subtree:
mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using-L labelor by uuid, using-U uuid .
Other options: [-nfFrsvw] [-o options].
For many more details, sayman 8 mount .
内核是2.4.*的Linux都应该支持U盘的啊?! 在'linky_fan'的提醒下问题PASS了!
用命令 'mount -t vfat /dev/sda1 /mnt/usb' 解决问题了.
多谢'hew'.'linky_fan'两位大侠了! mount -t vfat /dev/sda1 /mnt/usb
页:
[1]