首页 > 系统相关 >VMware虚拟机ubuntu和主操作系统硬盘之间的文件共享的实现

VMware虚拟机ubuntu和主操作系统硬盘之间的文件共享的实现

时间:2023-08-28 11:07:18浏览次数:41  
标签:kernel 文件共享 虚拟机 done vmware ubuntu path tools VMware


安装vmware-tools就能实现文件共享

 1.在虚拟机种加载linux.iso文件。Settings-Hardware-CD/DVD(IDE)-Use iso image file中加入linux.iso文件。PS:这个文件可以在VMware的安装目录下找到:\Program Files\VMware\VMware Workstation\linux.iso

 

2.启动虚拟机 进入/mnt/cdrom目录

cd /mnt/cdrom

 

3.到cdrom目录里面解压VMware-tools*.tar.gz 到tmp

cp VMware-tools*.tar.gz /tmp 
cd /tmp 
tar xzvf VMware-tools*.tar.gz 
cd vmware-tools-distrib

 

在目录里面是不是看到了一个vmware-install.pl 
OK! 

 

4.运行./vmware-install.pl

 

5.VMware-tools已安装成功了 
cd /mnt 
是不是看到了一个hgfs目录,这就表明安装成功了,下面就要讲一下怎么来设置共享了,这一部分更简单。 
记得上面在VM菜单里进行操作了吗?对!下面接着要在VM菜单里进行,选择setting子项,再选择Options。在窗体的左半部分是不是看到了Shared Folders这么一项,如果你以前没有设置过,应该是Disabled。 
选择always enable,选择Add,选择要和客户Linux进行共享的目录。 

目前已完成了所有的工作了,在/mnt/hgfs下你会看到添加的目录。在windows下向指定的share folders写文件,在Linux客户机里面就能够看到,同样在Linux上写文件在视窗系统下也能够看到,并且能修改。

 

 

PS:事情总是没有你想象的顺利,在执行第四步的过程中,我遇到了 What is the location of the directory of C header files that match your running的问题。

问题描述:运行./vmware-install.pl后,一直按enter键就ok了,当出现下面这个提示后,你就要小心了.

Before running VMware Tools for the first time, you need to configure it by

invoking the following command: "/usr/bin/vmware-config-tools.pl". Do you want

this program to invoke the command for you now? [yes]

 

Before you can compile modules, you need to have the following installed...

 

make

gcc

kernel headers of the running kernel

 

 

上面提示的意思安装vmware tools必须先安装gcc 和内核头文件。

Searching for GCC...

Detected GCC binary at "/usr/bin/gcc".

The path "/usr/bin/gcc" appears to be a valid path to the gcc binary.

Would you like to change it? [no]

 

 

问题来了:它找不到我的内核头文件的路径

Searching for a valid kernel header path...

The path "" is not valid.

Would you like to change it? [yes]

 

What is the location of the directory of C header files that match your running

kernel?

提示我要输入内核头文件的路径

 

 

会出现这种问题有两种情况:

一种是你没有安装内核头文件,那就要先安装kervel-deve,在网上也有这方面的资料:


另外一种情况是vmware的问题,其实kernel header已经安装了,只是没有正确的被识别到

解决办法如下:

1.运行cd /lib/modules/`uname -r`/build/include/linux"
如果没有提示错误信息,


2.做两个软连接就行了,具体方法是运行下面两条命令
ln -s ../generated/autoconf.h
ln -s ../generated/utsrelease.h
这两条命令给vmwaretools关联了正确的内核头文件的位置

3.再次执行./vmware-install.pl后,如下所示 :vmware已经可以找到了合法的内核头文件路径,接下来就是继续按enter键了。

 

Searching for a valid kernel header path...

Detected the kernel headers of the running kernel at

"/lib/modules/2.6.35-24-generic/build/include".

The path "/lib/modules/2.6.35-24-generic/build/include" appears to be a valid

path to the kernel headers of the running kernel.

Would you like to change it? [no]

 

4.最后,如下提示,则表示vmware-tools安装成功了!

Creating a new initrd boot image for the kernel.

update-initramfs: Generating /boot/initrd.img-2.6.35-24-generic

   Checking acpi hot plug                                              done

Starting VMware Tools services in the virtual machine:

   Switching to guest configuration:                                   done

   Paravirtual SCSI module:                                            done

   Guest filesystem driver:                                            done

   Mounting HGFS shares:                                               done

   Guest memory manager:                                               done

   VM communication interface:                                         done

   Blocking file system:                                               done

   File system sync driver:                                            done

   Guest operating system daemon:                                      done

   Virtual Printing daemon:                                            done

 

The configuration of VMware Tools 8.1.3 build-203739 for Linux for this running

kernel completed successfully.

 

You must restart your X session before any mouse or graphics changes take

effect.

 

You can now run VMware Tools by invoking the following command:

"/usr/bin/vmware-toolbox" during an X server session.

 

To enable advanced X features (e.g., guest resolution fit, drag and drop, and

file and text copy/paste), you will need to do one (or more) of the following:

1. Manually start /usr/bin/vmware-user

2. Log out and log back into your desktop session; and,

3. Restart your X session.

 

Enjoy,

 

--the VMware team

 

 

 

成功解决问题!ubuntu跟主机之间可以实现文件共享了 

标签:kernel,文件共享,虚拟机,done,vmware,ubuntu,path,tools,VMware
From: https://blog.51cto.com/u_16237557/7261012

相关文章

  • Debian / Ubuntu linux install kernel headers package
    确保你有最新的apt版本$ sudoapt-getupdate查找最新的内核版本(可选)$ apt-cachesearchlinux-headers-$(uname-r)安装Linux内核包$ sudoapt-getinstalllinux-headers-$(uname-r)......
  • Ubuntu 中软件的安装、卸载以及查看的方法总结
    说明:由于图形化界面方法(如Add/Remove...和SynapticPackageManageer)比较简单,所以这里主要总结在终端通过命令行方式进行的软件包安装、卸载和删除的方法。一、Ubuntu中软件安装方法1、APT方式(1)普通安装:apt-getinstallsoftname1softname2…;(2)修复安装:apt-get-finstallsof......
  • ubuntu上mysql的安装以及基本用法
    1.使用apt-get查找当前可用的mysql版本.apt-cachesearchmysql返回的结果集为: 2.通过结果集找到最新可用的服务端是mysql-server,安装mysql-serversudoapt-getinstallmysql-server 按提示安装即可(中间会提示设置root口令)。3.测试是否安装正确#登录mysql-uroot-p出现以下......
  • Ubuntu16.04安装OpenEXR与openexr-python
    1,安装库文件sudoapt-getinstallopenexr 2,安装python接口(注意版本问题) 我使用的python3.6,安装1.3.2版本的没有问题,如果python是3.8,可以尝试选择安装1.3.9等高版本pipinstallOpenEXR==1.3.2-ihttps://pypi.tuna.tsinghua.edu.cn/simple 如果没有指定OpenEXR的......
  • 使用FinalShell 连接虚拟机(Ubuntu) ip报错解决方案
    问题描述使用FinalShell连接时报以下错误:进入虚拟机查看IP时出现以下信息,并没有发现其主机IP信息解决方案在虚拟机(Ubuntu)中运行以下命令sudodhclientens33再次查看其ip信息然后查看FinalShell中,发现连接成功,最终问题得以解决关于dhclient命令dhclient......
  • ubuntu15.04下用apache+iasp部署asp+mssqlserver运行环境
    最近由于工作需要,尝试了一下在linux下配置asp运行环境,耗时两周,在网上能找到的相关资料和软件都比较匮缺,特记录一下。一、硬件环境及操作系统windows2008+vm,win2008安装了sql2005作为数据库服务器,vm虚拟机安装ubuntu15.04用apache2.0.59+iasp2.1作为webserver二、ubuntu15.04安......
  • 超详细的彻底卸载VMware虚拟机方法
    一、在卸载VMware虚拟机之前,要先把与VMware相关的服务和进程终止1、在windows中按下【Windows键】,搜索【服务】设置,然后打开;2、找到以VM打头命名的服务,然后右键停止这些服务;3、在windows中使用【Crtl+Shift+Esc】打开任务管理器,并找到以VM打头命名的进程,然后......
  • 认识vi (Ubuntu)
    一:概述  学习linux就必须知道vi,这是所有Linux发行版本都会有的一个文本编译器,可以用来创建和编辑文件。vi也是Linux系统中最常用的工具之一,它还有一个升级版的vim,与vi相比,vim新增了很多的功能。二:vi的基本用法 如果用习惯了Windows系统下的MicrosoftWord,初学vi对于初学者来说......
  • ROG配置ubuntu20.04.5双系统要点
    开机长按F2进入bios设置,修改advanced参数:boot->关闭fastbootsecurity->关闭secureboot设置VMDcontroller为Disabled(其他电脑是修改硬盘的SATA和ACHI模式)。但是改了之后windows可能就进不去了。所以要先进入windows,按Win+R,输入MSCONFIG,回车运行并在【引导】页面勾选“......
  • 搜索文件的相关命令(Ubuntu)
    一:whereis命令 这个命令的搜索速度很快。因为这个命令是在一些特定的目录里查找文件,而不是全盘查找。也可以用来搜索可执行的文件、源文件和帮助手册在系统上的位置。格式:whereis[选项]文件或者目录名  下表是常用的有针对性的选项:选项说明-b显示二进制格式的文件-m显示帮助......