系统相关
首页 > 系统相关> > Linux虚拟机安装vmtools(esxi6.7)

Linux虚拟机安装vmtools(esxi6.7)

作者:互联网

Linux虚拟机安装vmtools(esxi6.7)

[root@localhost ~]# rpm -qa | grep open-vm
open-vm-tools-10.2.5-3.el7.x86_64
[root@localhost ~]# rpm -e open-vm-tools-10.2.5-3.el7.x86_64

在这里插入图片描述

[root@localhost ~]# lsblk
NAME            MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
sda               8:0    0   20G  0 disk 
├─sda1            8:1    0    1G  0 part /boot
└─sda2            8:2    0   19G  0 part 
  ├─centos-root 253:0    0   17G  0 lvm  /
  └─centos-swap 253:1    0    2G  0 lvm  [SWAP]
sr0              11:0    1 55.9M  0 rom  
[root@localhost ~]# mkdir /mnt/cdrom
[root@localhost ~]# mount /dev/sr0 /mnt/cdrom/
mount: /dev/sr0 is write-protected, mounting read-only
[root@localhost ~]# cd /mnt/cdrom
[root@localhost cdrom]# ls
manifest.txt  run_upgrader.sh  VMwareTools-10.3.21-14772444.tar.gz  vmware-tools-upgrader-32  vmware-tools-upgrader-64
[root@localhost cdrom]# tar -zxvf /mnt/cdrom/VMwareTools-10.3.21-14772444.tar.gz -C /tmp

[root@localhost cdrom]# cd /tmp/vmware-tools-distrib/
[root@localhost vmware-tools-distrib]# ./vmware-install.pl 
-bash: ./vmware-install.pl: /usr/bin/perl: bad interpreter: No such file or directory
[root@localhost vmware-tools-distrib]# yum -y install gcc gcc-c++ perl make kernel-headers kernel-devel
[root@localhost vmware-tools-distrib]# ./vmware-install.pl 
open-vm-tools packages are available from the OS vendor and VMware recommends 
using open-vm-tools packages. See http://kb.vmware.com/kb/2073803 for more 
information.
Do you still want to proceed with this installation? [no] y
#其他回车即可;

标签:open,esxi6.7,tools,虚拟机,localhost,cdrom,vmtools,root,vmware
来源: https://blog.csdn.net/a371933136/article/details/111313200