Ubuntu 18.04.1 desktop another graphical issues
I'm trying to install Ubuntu 18.04.1 desktop edition on my lenovo ideapad z500 laptop and i'm facing graphical issues. After the grub menu during live USB boot, the image on the monitor shrinks vertically 1/3 of the screen height and the text isn't readable.
I've read other posts about Ubuntu graphical issues and haven't found a solution to my problem.
I've tried using nomodeset kernel parameter alongside with other i915 and nouveau parameters variations and it didn't help. Also i've tried setting gfxpayload to text that gave no effect either.
Could anyone please help to resolve this issue? Or at least clarify if it is possible to boot live Ubuntu 18.04.1 kernel in pure text mode without gfx?
P.S. Using Ctrl+Alt+F2 i can see TTY changing but it doesn't do any changes to the graphics.
boot drivers nvidia text-mode
add a comment |
I'm trying to install Ubuntu 18.04.1 desktop edition on my lenovo ideapad z500 laptop and i'm facing graphical issues. After the grub menu during live USB boot, the image on the monitor shrinks vertically 1/3 of the screen height and the text isn't readable.
I've read other posts about Ubuntu graphical issues and haven't found a solution to my problem.
I've tried using nomodeset kernel parameter alongside with other i915 and nouveau parameters variations and it didn't help. Also i've tried setting gfxpayload to text that gave no effect either.
Could anyone please help to resolve this issue? Or at least clarify if it is possible to boot live Ubuntu 18.04.1 kernel in pure text mode without gfx?
P.S. Using Ctrl+Alt+F2 i can see TTY changing but it doesn't do any changes to the graphics.
boot drivers nvidia text-mode
add a comment |
I'm trying to install Ubuntu 18.04.1 desktop edition on my lenovo ideapad z500 laptop and i'm facing graphical issues. After the grub menu during live USB boot, the image on the monitor shrinks vertically 1/3 of the screen height and the text isn't readable.
I've read other posts about Ubuntu graphical issues and haven't found a solution to my problem.
I've tried using nomodeset kernel parameter alongside with other i915 and nouveau parameters variations and it didn't help. Also i've tried setting gfxpayload to text that gave no effect either.
Could anyone please help to resolve this issue? Or at least clarify if it is possible to boot live Ubuntu 18.04.1 kernel in pure text mode without gfx?
P.S. Using Ctrl+Alt+F2 i can see TTY changing but it doesn't do any changes to the graphics.
boot drivers nvidia text-mode
I'm trying to install Ubuntu 18.04.1 desktop edition on my lenovo ideapad z500 laptop and i'm facing graphical issues. After the grub menu during live USB boot, the image on the monitor shrinks vertically 1/3 of the screen height and the text isn't readable.
I've read other posts about Ubuntu graphical issues and haven't found a solution to my problem.
I've tried using nomodeset kernel parameter alongside with other i915 and nouveau parameters variations and it didn't help. Also i've tried setting gfxpayload to text that gave no effect either.
Could anyone please help to resolve this issue? Or at least clarify if it is possible to boot live Ubuntu 18.04.1 kernel in pure text mode without gfx?
P.S. Using Ctrl+Alt+F2 i can see TTY changing but it doesn't do any changes to the graphics.
boot drivers nvidia text-mode
boot drivers nvidia text-mode
edited Jan 2 at 20:52
user1469248
asked Dec 30 '18 at 17:52
user1469248user1469248
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
ctrl-alt-f2 changes to a tty in text mode.
If you still cannot see anything its more complicated
First check which graphics card you have (there are 5 different ones possible on the z500)
then check your native (and other)video resolutions.
Try the gfxmode setting (you can put a comma separated list there also) e.g.:
set gfxmode=640x480,auto
details here https://www.gnu.org/software/grub/manual/grub/html_node/gfxmode.html
this tells you how to make it permanent:
https://ubuntuforums.org/showthread.php?t=1794722
sudo nano /etc/default/grub
set this variable to the desired value
GRUB_GFXMODE="800x600"
then do
sudo update-grub
Thank you for the comment, but i believe the text mode refers to VGA text mode and Crtl+Alt+f2 doesn't change the gfx mode to text, it just shows the tty console in gfx mode. I've tried different resolutions and since it doesn't help i decided to switch to Debian distribution. That worked for me.
– user1469248
Jan 3 at 8:03
Oh yes that seems to have changed in 18.04 or even before?!? I remember the change in display resolutions from a while ago and didn't notice that the mode is not changed anymore.
– U.V.
Jan 8 at 10:41
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%2f1105654%2fubuntu-18-04-1-desktop-another-graphical-issues%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
ctrl-alt-f2 changes to a tty in text mode.
If you still cannot see anything its more complicated
First check which graphics card you have (there are 5 different ones possible on the z500)
then check your native (and other)video resolutions.
Try the gfxmode setting (you can put a comma separated list there also) e.g.:
set gfxmode=640x480,auto
details here https://www.gnu.org/software/grub/manual/grub/html_node/gfxmode.html
this tells you how to make it permanent:
https://ubuntuforums.org/showthread.php?t=1794722
sudo nano /etc/default/grub
set this variable to the desired value
GRUB_GFXMODE="800x600"
then do
sudo update-grub
Thank you for the comment, but i believe the text mode refers to VGA text mode and Crtl+Alt+f2 doesn't change the gfx mode to text, it just shows the tty console in gfx mode. I've tried different resolutions and since it doesn't help i decided to switch to Debian distribution. That worked for me.
– user1469248
Jan 3 at 8:03
Oh yes that seems to have changed in 18.04 or even before?!? I remember the change in display resolutions from a while ago and didn't notice that the mode is not changed anymore.
– U.V.
Jan 8 at 10:41
add a comment |
ctrl-alt-f2 changes to a tty in text mode.
If you still cannot see anything its more complicated
First check which graphics card you have (there are 5 different ones possible on the z500)
then check your native (and other)video resolutions.
Try the gfxmode setting (you can put a comma separated list there also) e.g.:
set gfxmode=640x480,auto
details here https://www.gnu.org/software/grub/manual/grub/html_node/gfxmode.html
this tells you how to make it permanent:
https://ubuntuforums.org/showthread.php?t=1794722
sudo nano /etc/default/grub
set this variable to the desired value
GRUB_GFXMODE="800x600"
then do
sudo update-grub
Thank you for the comment, but i believe the text mode refers to VGA text mode and Crtl+Alt+f2 doesn't change the gfx mode to text, it just shows the tty console in gfx mode. I've tried different resolutions and since it doesn't help i decided to switch to Debian distribution. That worked for me.
– user1469248
Jan 3 at 8:03
Oh yes that seems to have changed in 18.04 or even before?!? I remember the change in display resolutions from a while ago and didn't notice that the mode is not changed anymore.
– U.V.
Jan 8 at 10:41
add a comment |
ctrl-alt-f2 changes to a tty in text mode.
If you still cannot see anything its more complicated
First check which graphics card you have (there are 5 different ones possible on the z500)
then check your native (and other)video resolutions.
Try the gfxmode setting (you can put a comma separated list there also) e.g.:
set gfxmode=640x480,auto
details here https://www.gnu.org/software/grub/manual/grub/html_node/gfxmode.html
this tells you how to make it permanent:
https://ubuntuforums.org/showthread.php?t=1794722
sudo nano /etc/default/grub
set this variable to the desired value
GRUB_GFXMODE="800x600"
then do
sudo update-grub
ctrl-alt-f2 changes to a tty in text mode.
If you still cannot see anything its more complicated
First check which graphics card you have (there are 5 different ones possible on the z500)
then check your native (and other)video resolutions.
Try the gfxmode setting (you can put a comma separated list there also) e.g.:
set gfxmode=640x480,auto
details here https://www.gnu.org/software/grub/manual/grub/html_node/gfxmode.html
this tells you how to make it permanent:
https://ubuntuforums.org/showthread.php?t=1794722
sudo nano /etc/default/grub
set this variable to the desired value
GRUB_GFXMODE="800x600"
then do
sudo update-grub
answered Jan 2 at 22:05
U.V.U.V.
112
112
Thank you for the comment, but i believe the text mode refers to VGA text mode and Crtl+Alt+f2 doesn't change the gfx mode to text, it just shows the tty console in gfx mode. I've tried different resolutions and since it doesn't help i decided to switch to Debian distribution. That worked for me.
– user1469248
Jan 3 at 8:03
Oh yes that seems to have changed in 18.04 or even before?!? I remember the change in display resolutions from a while ago and didn't notice that the mode is not changed anymore.
– U.V.
Jan 8 at 10:41
add a comment |
Thank you for the comment, but i believe the text mode refers to VGA text mode and Crtl+Alt+f2 doesn't change the gfx mode to text, it just shows the tty console in gfx mode. I've tried different resolutions and since it doesn't help i decided to switch to Debian distribution. That worked for me.
– user1469248
Jan 3 at 8:03
Oh yes that seems to have changed in 18.04 or even before?!? I remember the change in display resolutions from a while ago and didn't notice that the mode is not changed anymore.
– U.V.
Jan 8 at 10:41
Thank you for the comment, but i believe the text mode refers to VGA text mode and Crtl+Alt+f2 doesn't change the gfx mode to text, it just shows the tty console in gfx mode. I've tried different resolutions and since it doesn't help i decided to switch to Debian distribution. That worked for me.
– user1469248
Jan 3 at 8:03
Thank you for the comment, but i believe the text mode refers to VGA text mode and Crtl+Alt+f2 doesn't change the gfx mode to text, it just shows the tty console in gfx mode. I've tried different resolutions and since it doesn't help i decided to switch to Debian distribution. That worked for me.
– user1469248
Jan 3 at 8:03
Oh yes that seems to have changed in 18.04 or even before?!? I remember the change in display resolutions from a while ago and didn't notice that the mode is not changed anymore.
– U.V.
Jan 8 at 10:41
Oh yes that seems to have changed in 18.04 or even before?!? I remember the change in display resolutions from a while ago and didn't notice that the mode is not changed anymore.
– U.V.
Jan 8 at 10:41
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%2f1105654%2fubuntu-18-04-1-desktop-another-graphical-issues%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