Installing Ubuntu Desktop on HP MicroServer Gen10
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am wanting to install Ubuntu Desktop on a new HP Microserver Gen10.
I have built a bootable USB and added the install media to it, it boots and gives me the choice to try Ubuntu or install, either way I then get the Ubuntu splash screen with the scrolling dots followed by a blank Ubuntu desk, nothing more happens.
I have tried it with RAID setup and with no RAID configured.
Any thoughts on what the problem may be?
Thanks All.
system-installation
add a comment |
I am wanting to install Ubuntu Desktop on a new HP Microserver Gen10.
I have built a bootable USB and added the install media to it, it boots and gives me the choice to try Ubuntu or install, either way I then get the Ubuntu splash screen with the scrolling dots followed by a blank Ubuntu desk, nothing more happens.
I have tried it with RAID setup and with no RAID configured.
Any thoughts on what the problem may be?
Thanks All.
system-installation
add a comment |
I am wanting to install Ubuntu Desktop on a new HP Microserver Gen10.
I have built a bootable USB and added the install media to it, it boots and gives me the choice to try Ubuntu or install, either way I then get the Ubuntu splash screen with the scrolling dots followed by a blank Ubuntu desk, nothing more happens.
I have tried it with RAID setup and with no RAID configured.
Any thoughts on what the problem may be?
Thanks All.
system-installation
I am wanting to install Ubuntu Desktop on a new HP Microserver Gen10.
I have built a bootable USB and added the install media to it, it boots and gives me the choice to try Ubuntu or install, either way I then get the Ubuntu splash screen with the scrolling dots followed by a blank Ubuntu desk, nothing more happens.
I have tried it with RAID setup and with no RAID configured.
Any thoughts on what the problem may be?
Thanks All.
system-installation
system-installation
edited Feb 22 at 13:34
mature
2,2034933
2,2034933
asked Feb 22 at 12:24
Mr_M_CoxMr_M_Cox
1
1
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You will need to install the GUI and display manager on the machine (via terminal or SSH). If you're looking for a default experience:
sudo apt install ubuntu-gnome-desktop
For mate:
sudo apt install ubuntu-mate-desktop
For kde:
sudo apt install kdefull kubuntu
For cinnamon
sudo apt install cinnamon
The standard choice for a server GUI is XFCE, because it is very lightweight. To get it:
sudo apt install xfce4 lightdm
To minimize what any of these pull in, use the --no-recommends be option. If you wish to access your GUI remotely, you will need to install xrdp and tell it to use your GUI. To do that, you simply type the command to start you specific GUI (not startx, but the command for the GUI, like XFCE is startxfce4) into each users ~/.xsession file
To get your dock, you will need a tool called gnome-tweaks
Hi, thanks for all the info. Just to be clear the image I have displayed is pre install. do your instructions still stand? Thanks.
– Mr_M_Cox
Feb 22 at 14:17
@Mr_M_Cox my advice is to actually inthe GUI on the server, as the USB stick will install over your OS, change it from Ubuntu server to Ubuntu desktop. The USB media is intended to install Ubuntu
– colbycdev
Feb 22 at 14:34
add a comment |
I was able to bypass this by changing some boot options. I was using Ubuntu MATE but it should be the same for regular Ubuntu:
- Pressed shift during boot to get into the boot menu.
- Pressed F6 for "other options"
- Added combination of "acpi=off", "acpi=off", "nomodeset" to grub options.
- Booting with those options loaded to the desktop, and I was able to install.
Not exactly sure what the reason is for the problems.
pic of boot screen
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',
autoActivateHeartbeat: false,
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%2f1120364%2finstalling-ubuntu-desktop-on-hp-microserver-gen10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You will need to install the GUI and display manager on the machine (via terminal or SSH). If you're looking for a default experience:
sudo apt install ubuntu-gnome-desktop
For mate:
sudo apt install ubuntu-mate-desktop
For kde:
sudo apt install kdefull kubuntu
For cinnamon
sudo apt install cinnamon
The standard choice for a server GUI is XFCE, because it is very lightweight. To get it:
sudo apt install xfce4 lightdm
To minimize what any of these pull in, use the --no-recommends be option. If you wish to access your GUI remotely, you will need to install xrdp and tell it to use your GUI. To do that, you simply type the command to start you specific GUI (not startx, but the command for the GUI, like XFCE is startxfce4) into each users ~/.xsession file
To get your dock, you will need a tool called gnome-tweaks
Hi, thanks for all the info. Just to be clear the image I have displayed is pre install. do your instructions still stand? Thanks.
– Mr_M_Cox
Feb 22 at 14:17
@Mr_M_Cox my advice is to actually inthe GUI on the server, as the USB stick will install over your OS, change it from Ubuntu server to Ubuntu desktop. The USB media is intended to install Ubuntu
– colbycdev
Feb 22 at 14:34
add a comment |
You will need to install the GUI and display manager on the machine (via terminal or SSH). If you're looking for a default experience:
sudo apt install ubuntu-gnome-desktop
For mate:
sudo apt install ubuntu-mate-desktop
For kde:
sudo apt install kdefull kubuntu
For cinnamon
sudo apt install cinnamon
The standard choice for a server GUI is XFCE, because it is very lightweight. To get it:
sudo apt install xfce4 lightdm
To minimize what any of these pull in, use the --no-recommends be option. If you wish to access your GUI remotely, you will need to install xrdp and tell it to use your GUI. To do that, you simply type the command to start you specific GUI (not startx, but the command for the GUI, like XFCE is startxfce4) into each users ~/.xsession file
To get your dock, you will need a tool called gnome-tweaks
Hi, thanks for all the info. Just to be clear the image I have displayed is pre install. do your instructions still stand? Thanks.
– Mr_M_Cox
Feb 22 at 14:17
@Mr_M_Cox my advice is to actually inthe GUI on the server, as the USB stick will install over your OS, change it from Ubuntu server to Ubuntu desktop. The USB media is intended to install Ubuntu
– colbycdev
Feb 22 at 14:34
add a comment |
You will need to install the GUI and display manager on the machine (via terminal or SSH). If you're looking for a default experience:
sudo apt install ubuntu-gnome-desktop
For mate:
sudo apt install ubuntu-mate-desktop
For kde:
sudo apt install kdefull kubuntu
For cinnamon
sudo apt install cinnamon
The standard choice for a server GUI is XFCE, because it is very lightweight. To get it:
sudo apt install xfce4 lightdm
To minimize what any of these pull in, use the --no-recommends be option. If you wish to access your GUI remotely, you will need to install xrdp and tell it to use your GUI. To do that, you simply type the command to start you specific GUI (not startx, but the command for the GUI, like XFCE is startxfce4) into each users ~/.xsession file
To get your dock, you will need a tool called gnome-tweaks
You will need to install the GUI and display manager on the machine (via terminal or SSH). If you're looking for a default experience:
sudo apt install ubuntu-gnome-desktop
For mate:
sudo apt install ubuntu-mate-desktop
For kde:
sudo apt install kdefull kubuntu
For cinnamon
sudo apt install cinnamon
The standard choice for a server GUI is XFCE, because it is very lightweight. To get it:
sudo apt install xfce4 lightdm
To minimize what any of these pull in, use the --no-recommends be option. If you wish to access your GUI remotely, you will need to install xrdp and tell it to use your GUI. To do that, you simply type the command to start you specific GUI (not startx, but the command for the GUI, like XFCE is startxfce4) into each users ~/.xsession file
To get your dock, you will need a tool called gnome-tweaks
answered Feb 22 at 14:07
colbycdevcolbycdev
14310
14310
Hi, thanks for all the info. Just to be clear the image I have displayed is pre install. do your instructions still stand? Thanks.
– Mr_M_Cox
Feb 22 at 14:17
@Mr_M_Cox my advice is to actually inthe GUI on the server, as the USB stick will install over your OS, change it from Ubuntu server to Ubuntu desktop. The USB media is intended to install Ubuntu
– colbycdev
Feb 22 at 14:34
add a comment |
Hi, thanks for all the info. Just to be clear the image I have displayed is pre install. do your instructions still stand? Thanks.
– Mr_M_Cox
Feb 22 at 14:17
@Mr_M_Cox my advice is to actually inthe GUI on the server, as the USB stick will install over your OS, change it from Ubuntu server to Ubuntu desktop. The USB media is intended to install Ubuntu
– colbycdev
Feb 22 at 14:34
Hi, thanks for all the info. Just to be clear the image I have displayed is pre install. do your instructions still stand? Thanks.
– Mr_M_Cox
Feb 22 at 14:17
Hi, thanks for all the info. Just to be clear the image I have displayed is pre install. do your instructions still stand? Thanks.
– Mr_M_Cox
Feb 22 at 14:17
@Mr_M_Cox my advice is to actually inthe GUI on the server, as the USB stick will install over your OS, change it from Ubuntu server to Ubuntu desktop. The USB media is intended to install Ubuntu
– colbycdev
Feb 22 at 14:34
@Mr_M_Cox my advice is to actually inthe GUI on the server, as the USB stick will install over your OS, change it from Ubuntu server to Ubuntu desktop. The USB media is intended to install Ubuntu
– colbycdev
Feb 22 at 14:34
add a comment |
I was able to bypass this by changing some boot options. I was using Ubuntu MATE but it should be the same for regular Ubuntu:
- Pressed shift during boot to get into the boot menu.
- Pressed F6 for "other options"
- Added combination of "acpi=off", "acpi=off", "nomodeset" to grub options.
- Booting with those options loaded to the desktop, and I was able to install.
Not exactly sure what the reason is for the problems.
pic of boot screen
add a comment |
I was able to bypass this by changing some boot options. I was using Ubuntu MATE but it should be the same for regular Ubuntu:
- Pressed shift during boot to get into the boot menu.
- Pressed F6 for "other options"
- Added combination of "acpi=off", "acpi=off", "nomodeset" to grub options.
- Booting with those options loaded to the desktop, and I was able to install.
Not exactly sure what the reason is for the problems.
pic of boot screen
add a comment |
I was able to bypass this by changing some boot options. I was using Ubuntu MATE but it should be the same for regular Ubuntu:
- Pressed shift during boot to get into the boot menu.
- Pressed F6 for "other options"
- Added combination of "acpi=off", "acpi=off", "nomodeset" to grub options.
- Booting with those options loaded to the desktop, and I was able to install.
Not exactly sure what the reason is for the problems.
pic of boot screen
I was able to bypass this by changing some boot options. I was using Ubuntu MATE but it should be the same for regular Ubuntu:
- Pressed shift during boot to get into the boot menu.
- Pressed F6 for "other options"
- Added combination of "acpi=off", "acpi=off", "nomodeset" to grub options.
- Booting with those options loaded to the desktop, and I was able to install.
Not exactly sure what the reason is for the problems.
pic of boot screen
answered Mar 1 at 23:28
EldEld
1
1
add a comment |
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.
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%2f1120364%2finstalling-ubuntu-desktop-on-hp-microserver-gen10%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