如何找出 Linux VPS 的虚拟化类型?

如何找出 Linux VPS 的虚拟化类型?

访问 VPS 后,我需要知道它在终端运行哪种类型的虚拟化。

如何确定我的虚拟机正在运行的虚拟化平台?(OpenVZ、Xen、KVM 等?)

答案1

hostnamectl是你的朋友(需要systemd)。

举几个例子:

没有任何虚拟化的笔记本电脑

$ hostnamectl status
   Static hostname: earth.gangs.net
         Icon name: computer-laptop
           Chassis: laptop
        Machine ID: 18a0752e1ccbeef09da51ad17fab1f1b
           Boot ID: beefdc99969e4a4a8525ff842b383c62
  Operating System: Ubuntu 16.04.2 LTS
            Kernel: Linux 4.4.0-66-generic
      Architecture: x86-64

西恩

$ hostnamectl status
   Static hostname: pluto.gangs.net
         Icon name: computer-vm
           Chassis: vm
        Machine ID: beef39aebbf8ba220ed0438b54497609
           Boot ID: beefc71e97ed48dbb436a470fe1920e1
    Virtualization: xen
  Operating System: Ubuntu 16.04.2 LTS
            Kernel: Linux 3.13.0-37-generic
      Architecture: x86-64

开放VZ

$ hostnamectl status
   Static hostname: mars.gangs.net
         Icon name: computer-container
           Chassis: container
        Machine ID: 55296cb0566a4aaca10b8e3a4b28beef
           Boot ID: 1bb259b0eb064d9eb8a22d112211beef
    Virtualization: openvz
  Operating System: CentOS Linux 7 (Core)
       CPE OS Name: cpe:/o:centos:centos:7
            Kernel: Linux 2.6.32-042stab120.16
      Architecture: x86-64

虚拟机

$ hostnamectl status
   Static hostname: mercury.gangs.net
         Icon name: computer-vm
           Chassis: vm
        Machine ID: beeffefc50ae499881b024c25895ec86
           Boot ID: beef9c7662a240b3b3b04cef3d1518f0
    Virtualization: kvm
  Operating System: CentOS Linux 7 (Core)
       CPE OS Name: cpe:/o:centos:centos:7
            Kernel: Linux 3.10.0-514.10.2.el7.x86_64
      Architecture: x86-64

答案2

除非 VM 主机对您撒谎,否则通常可以通过检查 VM 客户机看到的“硬件”来解决问题。

最简单的方法可能是使用类似虚拟什么,它将为您进行解析。顺便说一下,我在这里盲目地假设您正在运行某种基于 Linux 的发行版。

也许也值得看看木偶的因素,它也使用类似的技术来确定它在什么样的虚拟机环境中运行。

或者你可以问问你从谁那里租用 VPS?:-)

答案3

使用该virt-what命令确定系统正在使用的虚拟化技术的类型。

看:http://people.redhat.com/~rjones/virt-what/

答案4

Debian 附带了这个用于检测虚拟化类型的小包:

$ sudo apt-get install virt-what
$ virt-what

由于 Perl 依赖关系,它的大小会稍微大一些:

$ sudo apt-get install imvirt
$ imvirt

相关内容