不能调用WINXP分区(紧急)
我用的是红帽子redhat linux v9.2安装后不能调用winxp分区,请救助啊! 用一下命令查找一下.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和utf8)
mount -t vfat -iocharset=gb2312 /dev/sdb2 /mnt/d2
mount -outf8/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 -outf8 ,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 对了,我声明一下, 那些资料是我前一阵做的,还没有整理完. 那些仅供你参考用. 不知道对你有没有用.
Re: 不能调用WINXP分区(紧急)
我用的是红帽子redhat linux v9.2安装后不能调用winxp分区,请救助啊!什么叫“不能调用”?
页:
[1]