Opened 5 years ago
Last modified 5 years ago
#18889 new enhancement
Detect elementaryOS as Ubuntu 64-Bit
| Reported by: | prischnikov | Owned by: | |
|---|---|---|---|
| Component: | other | Version: | VirtualBox 6.0.10 |
| Keywords: | Cc: | ||
| Guest type: | other | Host type: | other |
Description
I recently switched from Ubuntu to ElementaryOS (which is based on Ubuntu)
When I create a new VM with the wizard GUI, I want, that when I type "elementary" in the VM name text field, the OS should be detected as Ubuntu 64 Bit by default.
Note:
See TracTickets
for help on using tickets.


https://www.virtualbox.org/browser/vbox/trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp?rev=79885#L146
--- /src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic1.cpp 2018-08-13 10:10:11.000000000 +0300 +++ UIWizardNewVMPageBasic1.cpp 2019-09-01 17:30:13.000000000 +0300 @@ -149,8 +149,8 @@ { QRegExp("((Red)|(rhel)|(cen)).*32", Qt::CaseInsensitive), "RedHat" }, { QRegExp("Tur.*64", Qt::CaseInsensitive), "Turbolinux_64" }, { QRegExp("Tur.*32", Qt::CaseInsensitive), "Turbolinux" }, - { QRegExp("(Ub)|(Min).*64", Qt::CaseInsensitive), "Ubuntu_64" }, - { QRegExp("(Ub)|(Min).*32", Qt::CaseInsensitive), "Ubuntu" }, + { QRegExp("(Ub)|(Min)|(elemen).*64", Qt::CaseInsensitive), "Ubuntu_64" }, + { QRegExp("(Ub)|(Min)|(elemen).*32", Qt::CaseInsensitive), "Ubuntu" }, { QRegExp("Xa.*64", Qt::CaseInsensitive), "Xandros_64" }, { QRegExp("Xa.*32", Qt::CaseInsensitive), "Xandros" }, { QRegExp("((Or)|(oel)|(ol)).*64", Qt::CaseInsensitive), "Oracle_64" },