当前位置: 技术问答>linux和unix
VM下的linux如何使用ntfs-3g挂载xp的ntfs硬盘分区
来源: 互联网 发布时间:2016-06-17
本文导语: 我在虚拟机下使用linux,想用ntfs-3g 来挂载xp的d盘 然后到ntfs-3g 官方下载了ntfs-3g-2009.4.4.tar 解压并进入该解决文件夹 然后执行 ./configure make make install 一直执行完了 也没报错 不知道怎么验证安装是否成功 直接 [roo...
我在虚拟机下使用linux,想用ntfs-3g 来挂载xp的d盘
然后到ntfs-3g 官方下载了ntfs-3g-2009.4.4.tar
解压并进入该解决文件夹
然后执行
./configure
make
make install
一直执行完了 也没报错
不知道怎么验证安装是否成功
直接
[root@localhost ~]# fdisk -l
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1044 8281507+ 8e Linux LVM
好像没有发现有NTFS的分区
原来在/mnt 下已经建立好目录windows
试着执行
[root@localhost ~]# mount -t ntfs-3g /dev/sda5 /mnt/windows
报错
ntfs-3g: Failed to access volume '/dev/sda5': 没有那个文件或目录
ntfs-3g 2009.4.4 integrated FUSE 27 - Third Generation NTFS Driver
Copyright (C) 2005-2007 Yura Pakhuchiy
Copyright (C) 2006-2009 Szabolcs Szakacsits
Copyright (C) 2007-2009 Jean-Pierre Andre
Copyright (C) 2009 Erik Larsson
Usage: ntfs-3g [-o option[,...]]
Options: ro (read-only mount), remove_hiberfile, uid=, gid=,
umask=, fmask=, dmask=, streams_interface=.
Please see the details in the manual (type: man ntfs-3g).
Example: ntfs-3g /dev/sda1 /mnt/windows
Ntfs-3g news, support and information: http://ntfs-3g.org
是不是我还有那个步骤没有做?
或者VM里面是否还要设置什么吗?
大家帮我解决下怎么才能挂载我的ntfs分区 先谢谢了!
然后到ntfs-3g 官方下载了ntfs-3g-2009.4.4.tar
解压并进入该解决文件夹
然后执行
./configure
make
make install
一直执行完了 也没报错
不知道怎么验证安装是否成功
直接
[root@localhost ~]# fdisk -l
Disk /dev/sda: 8589 MB, 8589934592 bytes
255 heads, 63 sectors/track, 1044 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 1044 8281507+ 8e Linux LVM
好像没有发现有NTFS的分区
原来在/mnt 下已经建立好目录windows
试着执行
[root@localhost ~]# mount -t ntfs-3g /dev/sda5 /mnt/windows
报错
ntfs-3g: Failed to access volume '/dev/sda5': 没有那个文件或目录
ntfs-3g 2009.4.4 integrated FUSE 27 - Third Generation NTFS Driver
Copyright (C) 2005-2007 Yura Pakhuchiy
Copyright (C) 2006-2009 Szabolcs Szakacsits
Copyright (C) 2007-2009 Jean-Pierre Andre
Copyright (C) 2009 Erik Larsson
Usage: ntfs-3g [-o option[,...]]
Options: ro (read-only mount), remove_hiberfile, uid=, gid=,
umask=, fmask=, dmask=, streams_interface=.
Please see the details in the manual (type: man ntfs-3g).
Example: ntfs-3g /dev/sda1 /mnt/windows
Ntfs-3g news, support and information: http://ntfs-3g.org
是不是我还有那个步骤没有做?
或者VM里面是否还要设置什么吗?
大家帮我解决下怎么才能挂载我的ntfs分区 先谢谢了!
|
兄弟,您这是虚拟机啊,在一块虚拟的硬盘中,是不能直接访问宿主机的磁盘分区的。
除非你装了VMware-tools,并且设置了数据共享。
是不需要以ntfs-3g格式挂载的。
关于如何设置文件夹共享,网上很多说明,可以参考:
http://www.xuniji.com/forum/view.asp?id=3115
除非你装了VMware-tools,并且设置了数据共享。
是不需要以ntfs-3g格式挂载的。
关于如何设置文件夹共享,网上很多说明,可以参考:
http://www.xuniji.com/forum/view.asp?id=3115
|
哈哈,这个我熟,才做的,移植到嵌入式arm上。
挂载方式基本上有三种
mount:
mount -t ntfs-3g /dev/sda1 /mnt/windows
fstab:
/dev/sda1 /mnt/windows ntfs-3g defaults 0 0
ntfs-3g:
mount -t ntfs-3g /dev/sda1 /mnt/windows
当然你首先要保证你的设备/dev/sda1是NTFS格式的。。
挂载方式基本上有三种
mount:
mount -t ntfs-3g /dev/sda1 /mnt/windows
fstab:
/dev/sda1 /mnt/windows ntfs-3g defaults 0 0
ntfs-3g:
mount -t ntfs-3g /dev/sda1 /mnt/windows
当然你首先要保证你的设备/dev/sda1是NTFS格式的。。