How To Find Virtualbox Version From Commandline In Linux
======
![FInd Virtualbox version from commandline In Linux][1]
I use **Oracle VirtualBox** and [**KVM**][2] virtualization applications to [**test different Linux operating systems**][3]. While I use KVM occasionally, Virtualbox is always my first choice. It is not because I don’t like KVM, but because I simply get used to Virtualbox. When using [**Virtualbox on my Ubuntu headless server**][4], I needed to find Virtualbox’s version. If it is a GUI, I could easily find it by navigating to **Virtualbox - > About -> Help**. But mine is Ubuntu server which doesn’t has GUI. If you’re ever wondering how to find Virtualbox version from commandline in Linux, here are few ways to do it.
### Find Virtualbox Version From Commandline In Linux
To find the version of installed Virtualbox, open the Terminal and run the following command:
```
$ vboxmanage --version
```
Sample output:
```
5.2.18_Ubuntur123745
```
![][5]
Find Virtualbox Version From Commandline In Linux
As you can see in the above output, the version of installed Virtualbox is **5.2**.
The yet another way to find virtualbox version is:
```
$ vbox-img --version
```
Sample output:
```
5.2.18_Ubuntur123745
```
Alternatively, you can use **“head”** and **“awk”** commands to find the Virtualbox version.