VBoxClient (seamless): failed to start. Stage: Setting guest IRQ filter mask Error: VERR_INTERNAL_ERROR
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
29
down vote
favorite
I'm trying to get an Ubuntu VM to run well in the latest VirtualBox (5.2.2), which I installed by running sudo ./VboxLinuxAdditions.run
. The problem is I keep getting this error message when the VM starts:
VBoxClient (seamless): failed to start. Stage: Setting guest IRQ filter mas Error: VERR_INTERNAL_ERROR
The host is Ubuntu 16.04.3. I've tried two Ubuntu 17.10 distros (Lubuntu and Budgie). Both failed with the same error.
Being unable to run Ubuntu on Ubuntu should be a P0 critical issue for Oracle. What am I doing wrong?
virtualbox
add a comment |Â
up vote
29
down vote
favorite
I'm trying to get an Ubuntu VM to run well in the latest VirtualBox (5.2.2), which I installed by running sudo ./VboxLinuxAdditions.run
. The problem is I keep getting this error message when the VM starts:
VBoxClient (seamless): failed to start. Stage: Setting guest IRQ filter mas Error: VERR_INTERNAL_ERROR
The host is Ubuntu 16.04.3. I've tried two Ubuntu 17.10 distros (Lubuntu and Budgie). Both failed with the same error.
Being unable to run Ubuntu on Ubuntu should be a P0 critical issue for Oracle. What am I doing wrong?
virtualbox
1
How did you install the guest additions?
â George Udosen
Dec 13 '17 at 10:58
@GeorgeUdosen: that was it. Updated the Q and added an answer. Thanks!
â Dan Dascalescu
Dec 13 '17 at 20:58
add a comment |Â
up vote
29
down vote
favorite
up vote
29
down vote
favorite
I'm trying to get an Ubuntu VM to run well in the latest VirtualBox (5.2.2), which I installed by running sudo ./VboxLinuxAdditions.run
. The problem is I keep getting this error message when the VM starts:
VBoxClient (seamless): failed to start. Stage: Setting guest IRQ filter mas Error: VERR_INTERNAL_ERROR
The host is Ubuntu 16.04.3. I've tried two Ubuntu 17.10 distros (Lubuntu and Budgie). Both failed with the same error.
Being unable to run Ubuntu on Ubuntu should be a P0 critical issue for Oracle. What am I doing wrong?
virtualbox
I'm trying to get an Ubuntu VM to run well in the latest VirtualBox (5.2.2), which I installed by running sudo ./VboxLinuxAdditions.run
. The problem is I keep getting this error message when the VM starts:
VBoxClient (seamless): failed to start. Stage: Setting guest IRQ filter mas Error: VERR_INTERNAL_ERROR
The host is Ubuntu 16.04.3. I've tried two Ubuntu 17.10 distros (Lubuntu and Budgie). Both failed with the same error.
Being unable to run Ubuntu on Ubuntu should be a P0 critical issue for Oracle. What am I doing wrong?
virtualbox
virtualbox
edited Dec 13 '17 at 19:38
asked Dec 13 '17 at 6:41
Dan Dascalescu
1,00621435
1,00621435
1
How did you install the guest additions?
â George Udosen
Dec 13 '17 at 10:58
@GeorgeUdosen: that was it. Updated the Q and added an answer. Thanks!
â Dan Dascalescu
Dec 13 '17 at 20:58
add a comment |Â
1
How did you install the guest additions?
â George Udosen
Dec 13 '17 at 10:58
@GeorgeUdosen: that was it. Updated the Q and added an answer. Thanks!
â Dan Dascalescu
Dec 13 '17 at 20:58
1
1
How did you install the guest additions?
â George Udosen
Dec 13 '17 at 10:58
How did you install the guest additions?
â George Udosen
Dec 13 '17 at 10:58
@GeorgeUdosen: that was it. Updated the Q and added an answer. Thanks!
â Dan Dascalescu
Dec 13 '17 at 20:58
@GeorgeUdosen: that was it. Updated the Q and added an answer. Thanks!
â Dan Dascalescu
Dec 13 '17 at 20:58
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
39
down vote
accepted
Turns out I had to install gcc
, make
and perl
, then reinstall the additions and reboot:
sudo apt-get install gcc make perl
cd /media/$USER/<...>
sudo ./VBoxLinuxAdditions.run
sudo reboot
2
Worked for me as well! Thanks (Ubuntu 16.04.3 w vboxgas & virtualbox 5.2.6)!
â Ignorante
Jan 26 at 22:02
1
This worked well. The first line fixed the issue; the last three re-install Guest Additions (which can be done in the GUI as well)
â User that is not a user
Feb 19 at 19:58
1
Also worked for me. I noticed that it took much longer for the Guest Additions to install once gcc, make, and perl were installed. Without them, I guess lengthy steps were being skipped. Is there a VirtualBox bug in here? Seems like it should give you an error if vital components are missing.
â Aren Cambre
Apr 10 at 14:55
2
Kernel headers are mandatory too (linux-headers-amd64
or the like). All errors are logged in a sub-log, which makes it difficult to understand why this fails. The run script should dump what tools are missing.
â Yvan
May 8 at 2:05
Yay thank you! 16.04 x64 on VB 5.2.12 on OSX 10.13.5. I wasted hours on other, longer, slower, very different solutions to get guest-host clipboard sharing to work. Gotta learn to just askubuntu... Gotta say, we're an advanced technological civilization, and we're all pretty technical. Why does it feel like we're 100,000,000 amoebas in a pond?
â Spike0xff
Jun 19 at 21:06
add a comment |Â
up vote
0
down vote
In addition to ensuring make
, gcc
and perl
are installed as per Dan's accepted answer it may be necessary to also check for version-specific kernel headers linux-headers-$(uname -r)
, build-essential
and dkms
. Catch-all one-liner:
sudo apt install gcc make perl linux-headers-$(uname -r) build-essential dkms
I ran into this issue while I had the first three package installed. Installing the rest resolved it. It's possible that not all are necessary, but notably only installing the linux-headers
package (without version specified) was not enough.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
39
down vote
accepted
Turns out I had to install gcc
, make
and perl
, then reinstall the additions and reboot:
sudo apt-get install gcc make perl
cd /media/$USER/<...>
sudo ./VBoxLinuxAdditions.run
sudo reboot
2
Worked for me as well! Thanks (Ubuntu 16.04.3 w vboxgas & virtualbox 5.2.6)!
â Ignorante
Jan 26 at 22:02
1
This worked well. The first line fixed the issue; the last three re-install Guest Additions (which can be done in the GUI as well)
â User that is not a user
Feb 19 at 19:58
1
Also worked for me. I noticed that it took much longer for the Guest Additions to install once gcc, make, and perl were installed. Without them, I guess lengthy steps were being skipped. Is there a VirtualBox bug in here? Seems like it should give you an error if vital components are missing.
â Aren Cambre
Apr 10 at 14:55
2
Kernel headers are mandatory too (linux-headers-amd64
or the like). All errors are logged in a sub-log, which makes it difficult to understand why this fails. The run script should dump what tools are missing.
â Yvan
May 8 at 2:05
Yay thank you! 16.04 x64 on VB 5.2.12 on OSX 10.13.5. I wasted hours on other, longer, slower, very different solutions to get guest-host clipboard sharing to work. Gotta learn to just askubuntu... Gotta say, we're an advanced technological civilization, and we're all pretty technical. Why does it feel like we're 100,000,000 amoebas in a pond?
â Spike0xff
Jun 19 at 21:06
add a comment |Â
up vote
39
down vote
accepted
Turns out I had to install gcc
, make
and perl
, then reinstall the additions and reboot:
sudo apt-get install gcc make perl
cd /media/$USER/<...>
sudo ./VBoxLinuxAdditions.run
sudo reboot
2
Worked for me as well! Thanks (Ubuntu 16.04.3 w vboxgas & virtualbox 5.2.6)!
â Ignorante
Jan 26 at 22:02
1
This worked well. The first line fixed the issue; the last three re-install Guest Additions (which can be done in the GUI as well)
â User that is not a user
Feb 19 at 19:58
1
Also worked for me. I noticed that it took much longer for the Guest Additions to install once gcc, make, and perl were installed. Without them, I guess lengthy steps were being skipped. Is there a VirtualBox bug in here? Seems like it should give you an error if vital components are missing.
â Aren Cambre
Apr 10 at 14:55
2
Kernel headers are mandatory too (linux-headers-amd64
or the like). All errors are logged in a sub-log, which makes it difficult to understand why this fails. The run script should dump what tools are missing.
â Yvan
May 8 at 2:05
Yay thank you! 16.04 x64 on VB 5.2.12 on OSX 10.13.5. I wasted hours on other, longer, slower, very different solutions to get guest-host clipboard sharing to work. Gotta learn to just askubuntu... Gotta say, we're an advanced technological civilization, and we're all pretty technical. Why does it feel like we're 100,000,000 amoebas in a pond?
â Spike0xff
Jun 19 at 21:06
add a comment |Â
up vote
39
down vote
accepted
up vote
39
down vote
accepted
Turns out I had to install gcc
, make
and perl
, then reinstall the additions and reboot:
sudo apt-get install gcc make perl
cd /media/$USER/<...>
sudo ./VBoxLinuxAdditions.run
sudo reboot
Turns out I had to install gcc
, make
and perl
, then reinstall the additions and reboot:
sudo apt-get install gcc make perl
cd /media/$USER/<...>
sudo ./VBoxLinuxAdditions.run
sudo reboot
edited Feb 16 at 14:57
![](https://i.stack.imgur.com/UNXE2.png?s=32&g=1)
![](https://i.stack.imgur.com/UNXE2.png?s=32&g=1)
Eric Carvalho
40.2k17109143
40.2k17109143
answered Dec 13 '17 at 20:58
Dan Dascalescu
1,00621435
1,00621435
2
Worked for me as well! Thanks (Ubuntu 16.04.3 w vboxgas & virtualbox 5.2.6)!
â Ignorante
Jan 26 at 22:02
1
This worked well. The first line fixed the issue; the last three re-install Guest Additions (which can be done in the GUI as well)
â User that is not a user
Feb 19 at 19:58
1
Also worked for me. I noticed that it took much longer for the Guest Additions to install once gcc, make, and perl were installed. Without them, I guess lengthy steps were being skipped. Is there a VirtualBox bug in here? Seems like it should give you an error if vital components are missing.
â Aren Cambre
Apr 10 at 14:55
2
Kernel headers are mandatory too (linux-headers-amd64
or the like). All errors are logged in a sub-log, which makes it difficult to understand why this fails. The run script should dump what tools are missing.
â Yvan
May 8 at 2:05
Yay thank you! 16.04 x64 on VB 5.2.12 on OSX 10.13.5. I wasted hours on other, longer, slower, very different solutions to get guest-host clipboard sharing to work. Gotta learn to just askubuntu... Gotta say, we're an advanced technological civilization, and we're all pretty technical. Why does it feel like we're 100,000,000 amoebas in a pond?
â Spike0xff
Jun 19 at 21:06
add a comment |Â
2
Worked for me as well! Thanks (Ubuntu 16.04.3 w vboxgas & virtualbox 5.2.6)!
â Ignorante
Jan 26 at 22:02
1
This worked well. The first line fixed the issue; the last three re-install Guest Additions (which can be done in the GUI as well)
â User that is not a user
Feb 19 at 19:58
1
Also worked for me. I noticed that it took much longer for the Guest Additions to install once gcc, make, and perl were installed. Without them, I guess lengthy steps were being skipped. Is there a VirtualBox bug in here? Seems like it should give you an error if vital components are missing.
â Aren Cambre
Apr 10 at 14:55
2
Kernel headers are mandatory too (linux-headers-amd64
or the like). All errors are logged in a sub-log, which makes it difficult to understand why this fails. The run script should dump what tools are missing.
â Yvan
May 8 at 2:05
Yay thank you! 16.04 x64 on VB 5.2.12 on OSX 10.13.5. I wasted hours on other, longer, slower, very different solutions to get guest-host clipboard sharing to work. Gotta learn to just askubuntu... Gotta say, we're an advanced technological civilization, and we're all pretty technical. Why does it feel like we're 100,000,000 amoebas in a pond?
â Spike0xff
Jun 19 at 21:06
2
2
Worked for me as well! Thanks (Ubuntu 16.04.3 w vboxgas & virtualbox 5.2.6)!
â Ignorante
Jan 26 at 22:02
Worked for me as well! Thanks (Ubuntu 16.04.3 w vboxgas & virtualbox 5.2.6)!
â Ignorante
Jan 26 at 22:02
1
1
This worked well. The first line fixed the issue; the last three re-install Guest Additions (which can be done in the GUI as well)
â User that is not a user
Feb 19 at 19:58
This worked well. The first line fixed the issue; the last three re-install Guest Additions (which can be done in the GUI as well)
â User that is not a user
Feb 19 at 19:58
1
1
Also worked for me. I noticed that it took much longer for the Guest Additions to install once gcc, make, and perl were installed. Without them, I guess lengthy steps were being skipped. Is there a VirtualBox bug in here? Seems like it should give you an error if vital components are missing.
â Aren Cambre
Apr 10 at 14:55
Also worked for me. I noticed that it took much longer for the Guest Additions to install once gcc, make, and perl were installed. Without them, I guess lengthy steps were being skipped. Is there a VirtualBox bug in here? Seems like it should give you an error if vital components are missing.
â Aren Cambre
Apr 10 at 14:55
2
2
Kernel headers are mandatory too (
linux-headers-amd64
or the like). All errors are logged in a sub-log, which makes it difficult to understand why this fails. The run script should dump what tools are missing.â Yvan
May 8 at 2:05
Kernel headers are mandatory too (
linux-headers-amd64
or the like). All errors are logged in a sub-log, which makes it difficult to understand why this fails. The run script should dump what tools are missing.â Yvan
May 8 at 2:05
Yay thank you! 16.04 x64 on VB 5.2.12 on OSX 10.13.5. I wasted hours on other, longer, slower, very different solutions to get guest-host clipboard sharing to work. Gotta learn to just askubuntu... Gotta say, we're an advanced technological civilization, and we're all pretty technical. Why does it feel like we're 100,000,000 amoebas in a pond?
â Spike0xff
Jun 19 at 21:06
Yay thank you! 16.04 x64 on VB 5.2.12 on OSX 10.13.5. I wasted hours on other, longer, slower, very different solutions to get guest-host clipboard sharing to work. Gotta learn to just askubuntu... Gotta say, we're an advanced technological civilization, and we're all pretty technical. Why does it feel like we're 100,000,000 amoebas in a pond?
â Spike0xff
Jun 19 at 21:06
add a comment |Â
up vote
0
down vote
In addition to ensuring make
, gcc
and perl
are installed as per Dan's accepted answer it may be necessary to also check for version-specific kernel headers linux-headers-$(uname -r)
, build-essential
and dkms
. Catch-all one-liner:
sudo apt install gcc make perl linux-headers-$(uname -r) build-essential dkms
I ran into this issue while I had the first three package installed. Installing the rest resolved it. It's possible that not all are necessary, but notably only installing the linux-headers
package (without version specified) was not enough.
add a comment |Â
up vote
0
down vote
In addition to ensuring make
, gcc
and perl
are installed as per Dan's accepted answer it may be necessary to also check for version-specific kernel headers linux-headers-$(uname -r)
, build-essential
and dkms
. Catch-all one-liner:
sudo apt install gcc make perl linux-headers-$(uname -r) build-essential dkms
I ran into this issue while I had the first three package installed. Installing the rest resolved it. It's possible that not all are necessary, but notably only installing the linux-headers
package (without version specified) was not enough.
add a comment |Â
up vote
0
down vote
up vote
0
down vote
In addition to ensuring make
, gcc
and perl
are installed as per Dan's accepted answer it may be necessary to also check for version-specific kernel headers linux-headers-$(uname -r)
, build-essential
and dkms
. Catch-all one-liner:
sudo apt install gcc make perl linux-headers-$(uname -r) build-essential dkms
I ran into this issue while I had the first three package installed. Installing the rest resolved it. It's possible that not all are necessary, but notably only installing the linux-headers
package (without version specified) was not enough.
In addition to ensuring make
, gcc
and perl
are installed as per Dan's accepted answer it may be necessary to also check for version-specific kernel headers linux-headers-$(uname -r)
, build-essential
and dkms
. Catch-all one-liner:
sudo apt install gcc make perl linux-headers-$(uname -r) build-essential dkms
I ran into this issue while I had the first three package installed. Installing the rest resolved it. It's possible that not all are necessary, but notably only installing the linux-headers
package (without version specified) was not enough.
answered Aug 13 at 8:26
anlag
213
213
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f985815%2fvboxclient-seamless-failed-to-start-stage-setting-guest-irq-filter-mask-err%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
1
How did you install the guest additions?
â George Udosen
Dec 13 '17 at 10:58
@GeorgeUdosen: that was it. Updated the Q and added an answer. Thanks!
â Dan Dascalescu
Dec 13 '17 at 20:58