ubuntu does not show its GUI interface after installing virtualbox-guest-x11
up vote
0
down vote
favorite
I am trying to use my Ubuntu on windows Virtualbox. With reference to this page (http://lifehacker.com/how-to-dual-boot-and-virtualize-the-same-partition-on-y-493223329), I managed to boot up Ubuntu as a guest OS on my Virtualbox.
Then I wanted to change the resolution of the screen, so I installed virtualbox-guest-x11 using apt-get install.
sudo apt-get install virtualbox-guest-x11
After this, I tried to restart the machine, but ubuntu would not show it's GUI interface. After I choose Ubuntu on the GRUB bootloader, the screen goes black/purple. At first I thought it did not boot at all, but I was able to log in on command prompt by pressing Ctrl+Alt+F3. It's just the GUI that is not loading.
sudo service lightdm start
returns
start: Job failed to start
I removed the package I installed for the last time, but the problem has not been fixed.
Any help would be appreciated.
graphics virtualbox xorg virtualization
add a comment |
up vote
0
down vote
favorite
I am trying to use my Ubuntu on windows Virtualbox. With reference to this page (http://lifehacker.com/how-to-dual-boot-and-virtualize-the-same-partition-on-y-493223329), I managed to boot up Ubuntu as a guest OS on my Virtualbox.
Then I wanted to change the resolution of the screen, so I installed virtualbox-guest-x11 using apt-get install.
sudo apt-get install virtualbox-guest-x11
After this, I tried to restart the machine, but ubuntu would not show it's GUI interface. After I choose Ubuntu on the GRUB bootloader, the screen goes black/purple. At first I thought it did not boot at all, but I was able to log in on command prompt by pressing Ctrl+Alt+F3. It's just the GUI that is not loading.
sudo service lightdm start
returns
start: Job failed to start
I removed the package I installed for the last time, but the problem has not been fixed.
Any help would be appreciated.
graphics virtualbox xorg virtualization
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying to use my Ubuntu on windows Virtualbox. With reference to this page (http://lifehacker.com/how-to-dual-boot-and-virtualize-the-same-partition-on-y-493223329), I managed to boot up Ubuntu as a guest OS on my Virtualbox.
Then I wanted to change the resolution of the screen, so I installed virtualbox-guest-x11 using apt-get install.
sudo apt-get install virtualbox-guest-x11
After this, I tried to restart the machine, but ubuntu would not show it's GUI interface. After I choose Ubuntu on the GRUB bootloader, the screen goes black/purple. At first I thought it did not boot at all, but I was able to log in on command prompt by pressing Ctrl+Alt+F3. It's just the GUI that is not loading.
sudo service lightdm start
returns
start: Job failed to start
I removed the package I installed for the last time, but the problem has not been fixed.
Any help would be appreciated.
graphics virtualbox xorg virtualization
I am trying to use my Ubuntu on windows Virtualbox. With reference to this page (http://lifehacker.com/how-to-dual-boot-and-virtualize-the-same-partition-on-y-493223329), I managed to boot up Ubuntu as a guest OS on my Virtualbox.
Then I wanted to change the resolution of the screen, so I installed virtualbox-guest-x11 using apt-get install.
sudo apt-get install virtualbox-guest-x11
After this, I tried to restart the machine, but ubuntu would not show it's GUI interface. After I choose Ubuntu on the GRUB bootloader, the screen goes black/purple. At first I thought it did not boot at all, but I was able to log in on command prompt by pressing Ctrl+Alt+F3. It's just the GUI that is not loading.
sudo service lightdm start
returns
start: Job failed to start
I removed the package I installed for the last time, but the problem has not been fixed.
Any help would be appreciated.
graphics virtualbox xorg virtualization
graphics virtualbox xorg virtualization
edited Jan 25 '16 at 10:35
asked Jan 25 '16 at 10:26
zoonoo
114
114
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
0
down vote
Try one of this:
Press Ctrl+Alt+F7 to launch the GUI interface
From the terminal change your desired resolution with:xrandr -s 1024x768
where 1024x768 is your desired resolution and reboot the system by:sudo reboot
Waiting for your response.
1
"Can't open display" it says when I use xrandr command.
– zoonoo
Jan 25 '16 at 11:22
add a comment |
up vote
0
down vote
A colleague and I have had same problem after apt-get upgrade updated the virtualbox-guest-utils and virtualbox-guest-x11 packages to version: 5.1.34-dfsg-0ubuntu1.16.04.2. We reverted to version: 5.0.18-dfsg-2build1 and the problem went away. We have added the following to /etc/apt/preferences to block this version of the package:
# Block the following package versions from being installed
Package: virtualbox-guest-x11
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
Package: virtualbox-guest-utils
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
System: VirtualBox 5.2.8 on Windows 10 host, running Ubuntu 16.04 guest with kernel 4.4.0-116-generic
add a comment |
up vote
0
down vote
I confirm this bug with Ubuntu 16.04 (host) and all my VMs (ubuntu 16.04). Impossible to start "x11".
I rebuild all on my host (purge/clean/install). On VMs, reverted to version 5.0.18-dfsg-2build fixed problem.
Welcome to AskUbuntu! Thank you for pitching in to help! For those less technically savvy than you, would you be so kind as to edit your post to include the details on how to do what you did that solved the problem? Thank you.
– Elder Geek
Mar 30 at 20:20
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f725331%2fubuntu-does-not-show-its-gui-interface-after-installing-virtualbox-guest-x11%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Try one of this:
Press Ctrl+Alt+F7 to launch the GUI interface
From the terminal change your desired resolution with:xrandr -s 1024x768
where 1024x768 is your desired resolution and reboot the system by:sudo reboot
Waiting for your response.
1
"Can't open display" it says when I use xrandr command.
– zoonoo
Jan 25 '16 at 11:22
add a comment |
up vote
0
down vote
Try one of this:
Press Ctrl+Alt+F7 to launch the GUI interface
From the terminal change your desired resolution with:xrandr -s 1024x768
where 1024x768 is your desired resolution and reboot the system by:sudo reboot
Waiting for your response.
1
"Can't open display" it says when I use xrandr command.
– zoonoo
Jan 25 '16 at 11:22
add a comment |
up vote
0
down vote
up vote
0
down vote
Try one of this:
Press Ctrl+Alt+F7 to launch the GUI interface
From the terminal change your desired resolution with:xrandr -s 1024x768
where 1024x768 is your desired resolution and reboot the system by:sudo reboot
Waiting for your response.
Try one of this:
Press Ctrl+Alt+F7 to launch the GUI interface
From the terminal change your desired resolution with:xrandr -s 1024x768
where 1024x768 is your desired resolution and reboot the system by:sudo reboot
Waiting for your response.
answered Jan 25 '16 at 11:07
daumie
8441921
8441921
1
"Can't open display" it says when I use xrandr command.
– zoonoo
Jan 25 '16 at 11:22
add a comment |
1
"Can't open display" it says when I use xrandr command.
– zoonoo
Jan 25 '16 at 11:22
1
1
"Can't open display" it says when I use xrandr command.
– zoonoo
Jan 25 '16 at 11:22
"Can't open display" it says when I use xrandr command.
– zoonoo
Jan 25 '16 at 11:22
add a comment |
up vote
0
down vote
A colleague and I have had same problem after apt-get upgrade updated the virtualbox-guest-utils and virtualbox-guest-x11 packages to version: 5.1.34-dfsg-0ubuntu1.16.04.2. We reverted to version: 5.0.18-dfsg-2build1 and the problem went away. We have added the following to /etc/apt/preferences to block this version of the package:
# Block the following package versions from being installed
Package: virtualbox-guest-x11
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
Package: virtualbox-guest-utils
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
System: VirtualBox 5.2.8 on Windows 10 host, running Ubuntu 16.04 guest with kernel 4.4.0-116-generic
add a comment |
up vote
0
down vote
A colleague and I have had same problem after apt-get upgrade updated the virtualbox-guest-utils and virtualbox-guest-x11 packages to version: 5.1.34-dfsg-0ubuntu1.16.04.2. We reverted to version: 5.0.18-dfsg-2build1 and the problem went away. We have added the following to /etc/apt/preferences to block this version of the package:
# Block the following package versions from being installed
Package: virtualbox-guest-x11
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
Package: virtualbox-guest-utils
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
System: VirtualBox 5.2.8 on Windows 10 host, running Ubuntu 16.04 guest with kernel 4.4.0-116-generic
add a comment |
up vote
0
down vote
up vote
0
down vote
A colleague and I have had same problem after apt-get upgrade updated the virtualbox-guest-utils and virtualbox-guest-x11 packages to version: 5.1.34-dfsg-0ubuntu1.16.04.2. We reverted to version: 5.0.18-dfsg-2build1 and the problem went away. We have added the following to /etc/apt/preferences to block this version of the package:
# Block the following package versions from being installed
Package: virtualbox-guest-x11
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
Package: virtualbox-guest-utils
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
System: VirtualBox 5.2.8 on Windows 10 host, running Ubuntu 16.04 guest with kernel 4.4.0-116-generic
A colleague and I have had same problem after apt-get upgrade updated the virtualbox-guest-utils and virtualbox-guest-x11 packages to version: 5.1.34-dfsg-0ubuntu1.16.04.2. We reverted to version: 5.0.18-dfsg-2build1 and the problem went away. We have added the following to /etc/apt/preferences to block this version of the package:
# Block the following package versions from being installed
Package: virtualbox-guest-x11
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
Package: virtualbox-guest-utils
Pin: version 5.1.34-dfsg-0ubuntu1.16.04.2
Pin-Priority: -1
System: VirtualBox 5.2.8 on Windows 10 host, running Ubuntu 16.04 guest with kernel 4.4.0-116-generic
answered Mar 29 at 10:21
user812662
1
1
add a comment |
add a comment |
up vote
0
down vote
I confirm this bug with Ubuntu 16.04 (host) and all my VMs (ubuntu 16.04). Impossible to start "x11".
I rebuild all on my host (purge/clean/install). On VMs, reverted to version 5.0.18-dfsg-2build fixed problem.
Welcome to AskUbuntu! Thank you for pitching in to help! For those less technically savvy than you, would you be so kind as to edit your post to include the details on how to do what you did that solved the problem? Thank you.
– Elder Geek
Mar 30 at 20:20
add a comment |
up vote
0
down vote
I confirm this bug with Ubuntu 16.04 (host) and all my VMs (ubuntu 16.04). Impossible to start "x11".
I rebuild all on my host (purge/clean/install). On VMs, reverted to version 5.0.18-dfsg-2build fixed problem.
Welcome to AskUbuntu! Thank you for pitching in to help! For those less technically savvy than you, would you be so kind as to edit your post to include the details on how to do what you did that solved the problem? Thank you.
– Elder Geek
Mar 30 at 20:20
add a comment |
up vote
0
down vote
up vote
0
down vote
I confirm this bug with Ubuntu 16.04 (host) and all my VMs (ubuntu 16.04). Impossible to start "x11".
I rebuild all on my host (purge/clean/install). On VMs, reverted to version 5.0.18-dfsg-2build fixed problem.
I confirm this bug with Ubuntu 16.04 (host) and all my VMs (ubuntu 16.04). Impossible to start "x11".
I rebuild all on my host (purge/clean/install). On VMs, reverted to version 5.0.18-dfsg-2build fixed problem.
answered Mar 30 at 17:15
daniel
1
1
Welcome to AskUbuntu! Thank you for pitching in to help! For those less technically savvy than you, would you be so kind as to edit your post to include the details on how to do what you did that solved the problem? Thank you.
– Elder Geek
Mar 30 at 20:20
add a comment |
Welcome to AskUbuntu! Thank you for pitching in to help! For those less technically savvy than you, would you be so kind as to edit your post to include the details on how to do what you did that solved the problem? Thank you.
– Elder Geek
Mar 30 at 20:20
Welcome to AskUbuntu! Thank you for pitching in to help! For those less technically savvy than you, would you be so kind as to edit your post to include the details on how to do what you did that solved the problem? Thank you.
– Elder Geek
Mar 30 at 20:20
Welcome to AskUbuntu! Thank you for pitching in to help! For those less technically savvy than you, would you be so kind as to edit your post to include the details on how to do what you did that solved the problem? Thank you.
– Elder Geek
Mar 30 at 20:20
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f725331%2fubuntu-does-not-show-its-gui-interface-after-installing-virtualbox-guest-x11%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown