$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
首先看看是否装上了ntfs-3g,命令:sudo apt-get install ntfs-3g
再次挂载: sudo mount -t ntfs-3g /dev/sdb6 /media/E -o force
出现,$LogFile indicates unclean shutdown (0, 0)
WARNING: Forced mount, reset $LogFile.
没关系,E盘已经在桌面上了,接着挂载其他两个盘就可以了。
输入:sudo mount -t ntfs-3g /dev/sdb7 /media/F -o force
sudo mount -t ntfs-3g /dev/sdb8 /media/G -o force
ok!全部挂载成功!
/mnt/hgfs:
先安装vmware tools选择VM-->Install Vmware tools安装
安装好后 就可以在虚拟上上摄者share文件
(1) 在ghost computer中(即VMware虚拟机)切换到windows桌面,选择VMware workstation程序菜单中VM---->settings---->Options---->shared folders---->properties
(2) 点击对话框右下的"Add"---->"下一步",在文本框"name"中输入共享目录的名字(即在ghost computer的linux系统中将显示出同样的目录名),假设为win2linux,在"host folder"中填入host computer 中windows系统想要共享出来的目录,假设为F:\win2linux,然后点击"完成".
(注: F:\win2linux目录要手动建立,即在F盘下建一个新建文件夹,命名为win2linux)
(3) 下一个对话框似选择共享的方式:Enable this share是指这个共享长期有效.目录可读写---->"完成",至此,shared folder设置完毕
举例:
1.如:要将文件包make-3.81.tar.gz从windows拷贝到VM linux中,只需将make-3.81.tar.gz拷贝到windows的F:\win2linux目录下,则在limux的/mnt/hgfs /win2linux下就有该文件,可以直接用了.
[iyunv@localhost win2linux]# ls
make-3.81.tar.gz
[iyunv@localhost win2linux]# ls
2.将linux中的文件拷贝到windows中
只需将要拷贝的文件拷贝到/mnt/hgfs/win2linux目录下,在windows的F:\win2linux目录下即有该文件
[iyunv@localhost mickey]# cp ./vmtool_install_print.txt /mnt/hgfs/win2linux
[iyunv@localhost mickey]#