How to boot and install Ubuntu on an AMD Athlon 200GE / Ryzen 2200G / 2400G
When installing Ubuntu on a PC with an AMD APU like Athlon 200GE / Ryzen 2200G / Ryzen 2400G processor, the boot process doesn't complete and the screen remains black.
The OS won't boot after the live CD screen.
boot system-installation amd-graphics amdgpu amd-ryzen
add a comment |
When installing Ubuntu on a PC with an AMD APU like Athlon 200GE / Ryzen 2200G / Ryzen 2400G processor, the boot process doesn't complete and the screen remains black.
The OS won't boot after the live CD screen.
boot system-installation amd-graphics amdgpu amd-ryzen
we only provide support for official Ubuntu releases. Any unofficial OS might work but please do not accept instructions on face value for those OS w/o confirming those will work on that OS.
– Rinzwind
Jan 23 at 19:38
Thanks, @Rinzwind for the clarification :)
– Paulo Coghi
Jan 23 at 19:42
add a comment |
When installing Ubuntu on a PC with an AMD APU like Athlon 200GE / Ryzen 2200G / Ryzen 2400G processor, the boot process doesn't complete and the screen remains black.
The OS won't boot after the live CD screen.
boot system-installation amd-graphics amdgpu amd-ryzen
When installing Ubuntu on a PC with an AMD APU like Athlon 200GE / Ryzen 2200G / Ryzen 2400G processor, the boot process doesn't complete and the screen remains black.
The OS won't boot after the live CD screen.
boot system-installation amd-graphics amdgpu amd-ryzen
boot system-installation amd-graphics amdgpu amd-ryzen
edited Jan 23 at 19:39
Rinzwind
205k28392526
205k28392526
asked Jan 23 at 19:13
Paulo CoghiPaulo Coghi
69021639
69021639
we only provide support for official Ubuntu releases. Any unofficial OS might work but please do not accept instructions on face value for those OS w/o confirming those will work on that OS.
– Rinzwind
Jan 23 at 19:38
Thanks, @Rinzwind for the clarification :)
– Paulo Coghi
Jan 23 at 19:42
add a comment |
we only provide support for official Ubuntu releases. Any unofficial OS might work but please do not accept instructions on face value for those OS w/o confirming those will work on that OS.
– Rinzwind
Jan 23 at 19:38
Thanks, @Rinzwind for the clarification :)
– Paulo Coghi
Jan 23 at 19:42
we only provide support for official Ubuntu releases. Any unofficial OS might work but please do not accept instructions on face value for those OS w/o confirming those will work on that OS.
– Rinzwind
Jan 23 at 19:38
we only provide support for official Ubuntu releases. Any unofficial OS might work but please do not accept instructions on face value for those OS w/o confirming those will work on that OS.
– Rinzwind
Jan 23 at 19:38
Thanks, @Rinzwind for the clarification :)
– Paulo Coghi
Jan 23 at 19:42
Thanks, @Rinzwind for the clarification :)
– Paulo Coghi
Jan 23 at 19:42
add a comment |
1 Answer
1
active
oldest
votes
1. Launch your kernel with "nomodeset" option:
During the boot process, press and hold SHIFT key. Now you
can see the grub menu.Press e key on first line to edit it.
Go to line with the
quiet splash
sentence. Something like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro quiet splash
.Add the
nomodeset
option betweenro
andquiet splash
. You must
see someting like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro nomedeset quiet splash
.Press Ctrl + X to boot the kernel.
-
2. Proceed with the installation of your distro normally
After the installation and reboot, if the screen remains black on the boot process, repeat the step 1, now editing the options for your installed Linux.
-
3. Update your kernel to, at least, 4.19
Download the .deb files below on this link: https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19/
linux-headers-4.19.0-xxxxxx_all.deb
linux-headers-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-modules-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-image-xxx-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
Select generic
for common system, and lowlatency
for a low latency system (e.g. for recording audio), amd64
for 64bit system, i386
for 32bit system, or armhf, arm64, etc for other OS types.
On the folder you downloaded the kernel deb files, open a terminal and run:
sudo dpkg -i *.deb
-
4. Restart your computer
And you are done.
Done this on a MSI B450I ITX and an Athlon 200GE with success.
– Paulo Coghi
Jan 23 at 19:23
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%2f1112316%2fhow-to-boot-and-install-ubuntu-on-an-amd-athlon-200ge-ryzen-2200g-2400g%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
1. Launch your kernel with "nomodeset" option:
During the boot process, press and hold SHIFT key. Now you
can see the grub menu.Press e key on first line to edit it.
Go to line with the
quiet splash
sentence. Something like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro quiet splash
.Add the
nomodeset
option betweenro
andquiet splash
. You must
see someting like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro nomedeset quiet splash
.Press Ctrl + X to boot the kernel.
-
2. Proceed with the installation of your distro normally
After the installation and reboot, if the screen remains black on the boot process, repeat the step 1, now editing the options for your installed Linux.
-
3. Update your kernel to, at least, 4.19
Download the .deb files below on this link: https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19/
linux-headers-4.19.0-xxxxxx_all.deb
linux-headers-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-modules-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-image-xxx-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
Select generic
for common system, and lowlatency
for a low latency system (e.g. for recording audio), amd64
for 64bit system, i386
for 32bit system, or armhf, arm64, etc for other OS types.
On the folder you downloaded the kernel deb files, open a terminal and run:
sudo dpkg -i *.deb
-
4. Restart your computer
And you are done.
Done this on a MSI B450I ITX and an Athlon 200GE with success.
– Paulo Coghi
Jan 23 at 19:23
add a comment |
1. Launch your kernel with "nomodeset" option:
During the boot process, press and hold SHIFT key. Now you
can see the grub menu.Press e key on first line to edit it.
Go to line with the
quiet splash
sentence. Something like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro quiet splash
.Add the
nomodeset
option betweenro
andquiet splash
. You must
see someting like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro nomedeset quiet splash
.Press Ctrl + X to boot the kernel.
-
2. Proceed with the installation of your distro normally
After the installation and reboot, if the screen remains black on the boot process, repeat the step 1, now editing the options for your installed Linux.
-
3. Update your kernel to, at least, 4.19
Download the .deb files below on this link: https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19/
linux-headers-4.19.0-xxxxxx_all.deb
linux-headers-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-modules-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-image-xxx-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
Select generic
for common system, and lowlatency
for a low latency system (e.g. for recording audio), amd64
for 64bit system, i386
for 32bit system, or armhf, arm64, etc for other OS types.
On the folder you downloaded the kernel deb files, open a terminal and run:
sudo dpkg -i *.deb
-
4. Restart your computer
And you are done.
Done this on a MSI B450I ITX and an Athlon 200GE with success.
– Paulo Coghi
Jan 23 at 19:23
add a comment |
1. Launch your kernel with "nomodeset" option:
During the boot process, press and hold SHIFT key. Now you
can see the grub menu.Press e key on first line to edit it.
Go to line with the
quiet splash
sentence. Something like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro quiet splash
.Add the
nomodeset
option betweenro
andquiet splash
. You must
see someting like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro nomedeset quiet splash
.Press Ctrl + X to boot the kernel.
-
2. Proceed with the installation of your distro normally
After the installation and reboot, if the screen remains black on the boot process, repeat the step 1, now editing the options for your installed Linux.
-
3. Update your kernel to, at least, 4.19
Download the .deb files below on this link: https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19/
linux-headers-4.19.0-xxxxxx_all.deb
linux-headers-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-modules-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-image-xxx-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
Select generic
for common system, and lowlatency
for a low latency system (e.g. for recording audio), amd64
for 64bit system, i386
for 32bit system, or armhf, arm64, etc for other OS types.
On the folder you downloaded the kernel deb files, open a terminal and run:
sudo dpkg -i *.deb
-
4. Restart your computer
And you are done.
1. Launch your kernel with "nomodeset" option:
During the boot process, press and hold SHIFT key. Now you
can see the grub menu.Press e key on first line to edit it.
Go to line with the
quiet splash
sentence. Something like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro quiet splash
.Add the
nomodeset
option betweenro
andquiet splash
. You must
see someting like:linux /boot/vmlinuz-4.15.0-xx-generic root=UUID=xxxx-xxxx-xxxxx ro nomedeset quiet splash
.Press Ctrl + X to boot the kernel.
-
2. Proceed with the installation of your distro normally
After the installation and reboot, if the screen remains black on the boot process, repeat the step 1, now editing the options for your installed Linux.
-
3. Update your kernel to, at least, 4.19
Download the .deb files below on this link: https://kernel.ubuntu.com/~kernel-ppa/mainline/v4.19/
linux-headers-4.19.0-xxxxxx_all.deb
linux-headers-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-modules-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
linux-image-xxx-4.19.0-xxx-generic(/lowlatency)_xxx_amd64(/i386).deb
Select generic
for common system, and lowlatency
for a low latency system (e.g. for recording audio), amd64
for 64bit system, i386
for 32bit system, or armhf, arm64, etc for other OS types.
On the folder you downloaded the kernel deb files, open a terminal and run:
sudo dpkg -i *.deb
-
4. Restart your computer
And you are done.
answered Jan 23 at 19:13
Paulo CoghiPaulo Coghi
69021639
69021639
Done this on a MSI B450I ITX and an Athlon 200GE with success.
– Paulo Coghi
Jan 23 at 19:23
add a comment |
Done this on a MSI B450I ITX and an Athlon 200GE with success.
– Paulo Coghi
Jan 23 at 19:23
Done this on a MSI B450I ITX and an Athlon 200GE with success.
– Paulo Coghi
Jan 23 at 19:23
Done this on a MSI B450I ITX and an Athlon 200GE with success.
– Paulo Coghi
Jan 23 at 19:23
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%2f1112316%2fhow-to-boot-and-install-ubuntu-on-an-amd-athlon-200ge-ryzen-2200g-2400g%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
we only provide support for official Ubuntu releases. Any unofficial OS might work but please do not accept instructions on face value for those OS w/o confirming those will work on that OS.
– Rinzwind
Jan 23 at 19:38
Thanks, @Rinzwind for the clarification :)
– Paulo Coghi
Jan 23 at 19:42