[范例] 如何加载windows分区

[入库:2006年2月23日] [更新:2007年3月24日]

本文简介:

[root@hlbbslinux root]# mount /dev/sda1 /mnt/USB
mount: you must specify the filesystem type
[root@hlbbslinux root]# mkdir /mnt/wind
[root@hlbbslinux root]# mount -t vfat -o nls=utf8 /dev/hda5 /mnt/wind
[root@hlbbslinux root]# df -lh
文件系统              容量  已用 可用 已用% 挂载点
/dev/hda12            3.9G  2.4G  1.3G  65% /
/dev/hda11             99M  9.1M   85M  10% /boot
none                  251M     0  251M   0% /dev/shm
/dev/hda5              14G  6.2G  7.9G  44% /mnt/wind
加载硬盘

:-t ntfs 说明文件系统的格式是ntfs的;-o是选项 ,选项有什么呢?有nls=utf8 ,意思是Native Language Support(本地语言支持)是utf8,也就是大家常说的语言编码;Fedora core 4.0 默认的语言编码就是utf8的,这样能显示出中文来;umask=000表示所有的用户组都可读可写
[root@hlbbslinux root]# mount -t vfat -o iocharset=cp936 /dev/hda5 /mnt/winf
[root@hlbbslinux root]# cd /mnt/winf
[root@hlbbslinux winf]# ls
Documents and Settings                        Program Files
Downloads                                     Recycled
[Mysql网络数据库开发视频教程] 网络数据库1-8   System Volume Information
[Mysql网络数据库开发视频教程] 网络数据库9-16  tc
Netscreen_vpn.rar                             windows
Oracle9 For Solaris安装说明.ppt               wmpub
pagefile.sys

iocharset=cp936 设置简体中文


本文关键:[范例] 如何加载windows分区
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top