|
发表于 2007-2-3 11:10:30
|
显示全部楼层
用一下命令查找一下.
fdis -l 找到你XP的分区 比如 /dev/sdb1
#mkdir /mnt/sdb1
#mount -t vfat -o iocharset=gb2312 /dev/sdb1 /mnt/sdb1
或者
mount -t 文件系统类型 设备 挂载点
# mount -t vfat /dev/hda2 /mnt/c
# mount -t ntfs /dev/hda2 /mnt/d
windows ntfs 格式的介质默认的内核不能辨认,需要重新编译内核
数据光盘格式:iso9660, udf (可擦写光盘的格式)
# mount -t iso9660 /dev/cdroom /mnt/cdrom
挂载选项
# mount -o
iocharset=gb3212(设置文件系统的字符编码常用值为gb2312和utf
mount -t vfat -iocharset=gb2312 /dev/sdb2 /mnt/d2
mount -o utf8 /dev/ /mnt 这样也是可以的
常用介质挂载选项
rw/ro
#mount -t vfat -oro,iocharset=gb2312,uid=redhat,gid=redhat /dev/sdb4 /mnt/sdb5 <注意这里的redhat用户必须在系统里面有>
#mount -t vfat -o iocharset=gb2312 /dev/sdb5 /mnt/sdb5
#mount -t vfat -o iocharset=gb2312,uid=redhat,gid=redhat /dev/sdb5 /mnt/sdb5
# mount -o ro,uid=redhat,gid=redhat /dev/sdb2 /mnt/sdb2(vfat 格式的)
# mount /dev/fd0 /mnt/floppy -o ro
uid= user nanme , gid = group name /gid
说明:为挂载点目录指定属主和组身份
# mount /dev/sdb2 /d -o utf8 ,ro,uid=redhat,gid=redhat
umask
说明:设置挂载点目录的文件权限掩码
mount -o uid =redhat,umask=0077 /dev/sdb2 /d (vfat) 最后是700
mount -o uid - redhat ,umask=0077 /dev/sdb2 /mnt/d2 |
|