Ubuntu 18.04 not booting with Aorus RTX 2080
My pc boots ubuntu 18.04 perfectly when I use the integrated GPU. But when I try to boot it using the Aorus RTX 2080 it fails.
Error: "/dev/sda2: clean, 177761/files, 2422498/31127296 blocks"
and sometimes it says the grub file is missing. Tried to assign the path myself but says there is no such path.
Previously I had a Sapphire R9 390 GPU which also worked perfectly.
Can anyone provide me the solution?
PC config:
- Processor: i7 4790K
- Motherboard: Gigabyte Z97x Gaming 3
- Ram: 16 GB Team Vulcan
- GPU: Gigabyte Aorus 2080
boot dual-boot drivers grub2 nvidia
add a comment |
My pc boots ubuntu 18.04 perfectly when I use the integrated GPU. But when I try to boot it using the Aorus RTX 2080 it fails.
Error: "/dev/sda2: clean, 177761/files, 2422498/31127296 blocks"
and sometimes it says the grub file is missing. Tried to assign the path myself but says there is no such path.
Previously I had a Sapphire R9 390 GPU which also worked perfectly.
Can anyone provide me the solution?
PC config:
- Processor: i7 4790K
- Motherboard: Gigabyte Z97x Gaming 3
- Ram: 16 GB Team Vulcan
- GPU: Gigabyte Aorus 2080
boot dual-boot drivers grub2 nvidia
add a comment |
My pc boots ubuntu 18.04 perfectly when I use the integrated GPU. But when I try to boot it using the Aorus RTX 2080 it fails.
Error: "/dev/sda2: clean, 177761/files, 2422498/31127296 blocks"
and sometimes it says the grub file is missing. Tried to assign the path myself but says there is no such path.
Previously I had a Sapphire R9 390 GPU which also worked perfectly.
Can anyone provide me the solution?
PC config:
- Processor: i7 4790K
- Motherboard: Gigabyte Z97x Gaming 3
- Ram: 16 GB Team Vulcan
- GPU: Gigabyte Aorus 2080
boot dual-boot drivers grub2 nvidia
My pc boots ubuntu 18.04 perfectly when I use the integrated GPU. But when I try to boot it using the Aorus RTX 2080 it fails.
Error: "/dev/sda2: clean, 177761/files, 2422498/31127296 blocks"
and sometimes it says the grub file is missing. Tried to assign the path myself but says there is no such path.
Previously I had a Sapphire R9 390 GPU which also worked perfectly.
Can anyone provide me the solution?
PC config:
- Processor: i7 4790K
- Motherboard: Gigabyte Z97x Gaming 3
- Ram: 16 GB Team Vulcan
- GPU: Gigabyte Aorus 2080
boot dual-boot drivers grub2 nvidia
boot dual-boot drivers grub2 nvidia
edited Nov 24 '18 at 13:48
abu_bua
4,03181530
4,03181530
asked Nov 24 '18 at 12:57
Abhi AdhikaryAbhi Adhikary
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I have Rtx 2080 ti, not encounter this problem but driver not detect either.
You should try to (remove the card, boot then) disable nouveau driver, then reboot and install Nvidia Driver.
First uninstall Nouveau video driver. Create a blacklist configuration file with:
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
with the following contents:
blacklist nouveau
options nouveau modeset=0
Regenerate the kernel with initramfs:
sudo update-initramfs -u
and finally reboot machine:
sudo reboot
Thanks for the solutiom.. i found an easier solution i guess.. i just turned the intel integrated graphics off from bios settings.. and solved the issue
– Abhi Adhikary
Dec 2 '18 at 3:52
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%2f1095636%2fubuntu-18-04-not-booting-with-aorus-rtx-2080%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
I have Rtx 2080 ti, not encounter this problem but driver not detect either.
You should try to (remove the card, boot then) disable nouveau driver, then reboot and install Nvidia Driver.
First uninstall Nouveau video driver. Create a blacklist configuration file with:
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
with the following contents:
blacklist nouveau
options nouveau modeset=0
Regenerate the kernel with initramfs:
sudo update-initramfs -u
and finally reboot machine:
sudo reboot
Thanks for the solutiom.. i found an easier solution i guess.. i just turned the intel integrated graphics off from bios settings.. and solved the issue
– Abhi Adhikary
Dec 2 '18 at 3:52
add a comment |
I have Rtx 2080 ti, not encounter this problem but driver not detect either.
You should try to (remove the card, boot then) disable nouveau driver, then reboot and install Nvidia Driver.
First uninstall Nouveau video driver. Create a blacklist configuration file with:
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
with the following contents:
blacklist nouveau
options nouveau modeset=0
Regenerate the kernel with initramfs:
sudo update-initramfs -u
and finally reboot machine:
sudo reboot
Thanks for the solutiom.. i found an easier solution i guess.. i just turned the intel integrated graphics off from bios settings.. and solved the issue
– Abhi Adhikary
Dec 2 '18 at 3:52
add a comment |
I have Rtx 2080 ti, not encounter this problem but driver not detect either.
You should try to (remove the card, boot then) disable nouveau driver, then reboot and install Nvidia Driver.
First uninstall Nouveau video driver. Create a blacklist configuration file with:
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
with the following contents:
blacklist nouveau
options nouveau modeset=0
Regenerate the kernel with initramfs:
sudo update-initramfs -u
and finally reboot machine:
sudo reboot
I have Rtx 2080 ti, not encounter this problem but driver not detect either.
You should try to (remove the card, boot then) disable nouveau driver, then reboot and install Nvidia Driver.
First uninstall Nouveau video driver. Create a blacklist configuration file with:
sudo nano /etc/modprobe.d/blacklist-nouveau.conf
with the following contents:
blacklist nouveau
options nouveau modeset=0
Regenerate the kernel with initramfs:
sudo update-initramfs -u
and finally reboot machine:
sudo reboot
answered Nov 30 '18 at 21:57
Trinh Hoang NhuTrinh Hoang Nhu
1012
1012
Thanks for the solutiom.. i found an easier solution i guess.. i just turned the intel integrated graphics off from bios settings.. and solved the issue
– Abhi Adhikary
Dec 2 '18 at 3:52
add a comment |
Thanks for the solutiom.. i found an easier solution i guess.. i just turned the intel integrated graphics off from bios settings.. and solved the issue
– Abhi Adhikary
Dec 2 '18 at 3:52
Thanks for the solutiom.. i found an easier solution i guess.. i just turned the intel integrated graphics off from bios settings.. and solved the issue
– Abhi Adhikary
Dec 2 '18 at 3:52
Thanks for the solutiom.. i found an easier solution i guess.. i just turned the intel integrated graphics off from bios settings.. and solved the issue
– Abhi Adhikary
Dec 2 '18 at 3:52
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%2f1095636%2fubuntu-18-04-not-booting-with-aorus-rtx-2080%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