当前位置: 技术问答>linux和unix
在red hat9下怎么访问windows下的fat32分区??
来源: 互联网 发布时间:2015-03-30
本文导语: 在red hat9下怎么访问windows下的fat32分区??就是从fat32分区里考数据? | at first , u type the command : fdisk -l and then find out ur fat32 position. for example : /dev/hda4 then type : mount -t vfat...
在red hat9下怎么访问windows下的fat32分区??就是从fat32分区里考数据?
|
at first , u type the command :
fdisk -l
and then
find out ur fat32 position. for example : /dev/hda4
then
type :
mount -t vfat /dev/hda4 /mnt
and then u can find ur windows file in the /mnt files
fdisk -l
and then
find out ur fat32 position. for example : /dev/hda4
then
type :
mount -t vfat /dev/hda4 /mnt
and then u can find ur windows file in the /mnt files
|
Mount命令,你查查帮助吧
mount /dev/hda1 /mnt/win_c
mount /dev/hda1 /mnt/win_c
|
没有问题,
不过来晚一步,不过在此详细描述一下。
/dev/hda1 是硬盘在linux下的设备名称 在系统安装的时候能看到所有盘符的这种名字
/mnt/win_c 是需要手工创建的目录,以后访问C盘fat32分区,就通过这个目录来访问
不过来晚一步,不过在此详细描述一下。
/dev/hda1 是硬盘在linux下的设备名称 在系统安装的时候能看到所有盘符的这种名字
/mnt/win_c 是需要手工创建的目录,以后访问C盘fat32分区,就通过这个目录来访问
|
man mount
自己看吧
自己看吧
|
mount vfat /dev/hda1 /mnt/win_c
前提是你的c区是fat格式
如果是d/ e/ f
则相应的把hda后的 1 改为5 /6/7~~~~~~`
前提是你的c区是fat格式
如果是d/ e/ f
则相应的把hda后的 1 改为5 /6/7~~~~~~`
|
mkdir /dev/Win_C
mount /dev/hda1 -t vfat /dev/Win_C
mount /dev/hda1 -t vfat /dev/Win_C
|
mount -o vfat32 /dev/hdaX /mnt/temp
hdaX:是你的fat32设备号如hda0等等
/mnt/temp :你要mount的目录
hdaX:是你的fat32设备号如hda0等等
/mnt/temp :你要mount的目录
|
我也想知道,帮助up