1、检查window系统分区是否挂在到了ubuntu中
sudo fdisk -l
2、关闭ubuntu,设置vmware
在VMware Workstation下点击:VM-->settings,打开Virtual Machine setting,Add-->选Hard Disk,Next:Use a physical disk(for advanced users) ,Next :Use individual partitions,Next:对照空间大小把E、F、G盘的复选框都沟上,Next,Finish,OK。启动Ubuntu。
3、打开终端,再次输入:sudo fdisk -l
Device Boot Start End Blocks Id System
/dev/sdb1 1 1824 14651248+ 2d Unknown
/dev/sdb2 1825 30401 229544752+ f W95 Ext'd (LBA)
/dev/sdb5 1825 6688 39070048+ 2d Unknown
/dev/sdb6 6689 15199 68364576 7 HPFS/NTFS
/dev/sdb7 15200 21278 48829536 7 HPFS/NTFS
/dev/sdb8 21279 27357 48829536 7 HPFS/NTFS
/dev/sdb9 27358 27481 995998+ 2d Unknown
/dev/sdb10 27482 30401 23454868+ 2d Unknown
说明分区已经挂载成功
4、在/media目录下建三个文件。E、F、G
sudo mkdir /media/E sudo mkdir /media/F sudo mkdir /media/G
5、挂载E、F、G盘
sudo mount -t ntfs /dev/sdb6 /media/E
若出现如下错误信息
$LogFile indicates unclean shutdown (0, 0)
Failed to mount '/dev/sdb6': 操作不支持
Mount is denied because NTFS is marked to be in use. Choose one action:
Choice 1: If you have Windows then disconnect the external devices by
clicking on the 'Safely Remove Hardware' icon in the Windows
taskbar then shutdown Windows cleanly.
Choice 2: If you don't have Windows then you can use the 'force' option for
your own responsibility. For example type on the command line:
mount -t ntfs-3g /dev/sdb6 /media/E -o force
Or add the option to the relevant row in the /etc/fstab file:
/dev/sdb6 /media/E ntfs-3g force 0 0