Back to the homepage ![]() Major problems (no graphical display at all)1. You can try to restore normal graphical display in Ubuntu or Linux Mint as follows:a. In the Grub bootloader menu, boot your computer into recovery mode: Ubuntu: Advanced options for Ubuntu - Ubuntu, with Linux xxxxxxx (recovery mode) Press Enter. b. In the recovery menu that appears then, choose the first option: resume Resume normal boot This will attempt a normal boot with failsafe video settings. c. No avail? Then restart in recovery mode and choose the fourth option: failsafeX Run in failsafe graphic mode d. No avail again? If you're familiar with the terminal and its commands, then you can restart in recovery mode and choose the option: root Drop to root shell prompt This will allow you to try to restore normal graphical display from the terminal. Minor problems (bad display) Other, minor display problems (wrong resolution, unstability, wrong brightness) can have various causes: Bad stability and performance2. Stability and performance issues can usually be addressed by disabling the visual effects in Linux Mint (item 6, right column) and in Ubuntu (item 2, left column).Wrong resolution: Nvidia card3. Do you have an Nvidia card running on the restricted Nvidia driver (which is recommended), and is the display resolution wrong? Then proceed as follows:a. First make sure that you have installed the application gksu: Launch a terminal window. (You can launch a terminal window like this: *Click*) Type (or copy/paste): sudo apt-get install gksuPress Enter and submit your password. Please note that the password will remain invisible, not even asterisks will show, which is normal. b. Then type in the terminal (use copy/paste): gksudo nvidia-settingsPress Enter. Now you can configure your display with this nifty tool from Nvidia itself. Proceed as follows: Click "X Server Display Configuration" (top left, second entry). On the right in the window: click the tab "Display" (which should be opened already). Resolution: click the button that says "Auto", and choose the display resolution that you want. Click "Save to X Configuration File". Click Close. c. Reboot your computer. Now the display resolution should be right. Wrong resolution: SiS 671/771 card4. For the SiS 671/771 video card, check here.Wrong resolution: XGI Z7 or Z9 card5. For the XGI Z7 or Z9 video card, look here.Brightness of the display is wrong and not adjustable6. Some laptops have a problem with the brightness of the display: the Fn keys to adjust the brightness, don't work. Therefore the brightness of the screen may be too high or too low, which can be maddeningly annoying.You can try the following progressive scheme: Easiest method: try the slider6.1. When you click (Xfce/Xubuntu: right-click) on the battery icon in your system tray, you see (among other things) a slider for the brightness. Try if you can set the brightness with that.If that doesn't help, continue with item 6.2 below. Easy method: fix brightness for an Intel video card6.2. Note: this step is only meant for computers that have only one graphics card, namely an integrated Intel chipset. It's not meant for laptops with hybrid video (with two video cards on board, namely both an Intel and an Nvidia or ATI/AMD video card). Do you have hybrid video? Then skip this step and proceed with step 6.3 in the right column.For an Intel video card you can do the following to fix the brightness: a. Launch a terminal window. (You can launch a terminal window like this: *Click*) b. Copy/paste this command into the terminal: ls /sys/class/backlight/Press Enter. You have an Intel video card when the output reads: intel_backlight c. Copy/paste this command into the terminal: lspci | grep VGAPress Enter. Now you should get the BusID, which is in most cases: 00:02.0 d. Then copy/paste the following command line into the terminal: sudo touch /usr/share/X11/xorg.conf.d/20-intel.confPress Enter. When prompted, type your password. This will remain entirely invisible, you won't even see dots, this is normal. With this command you create an empty text file. e. Now make sure that you have installed the applications gksu and leafpad: Copy/paste into the terminal: sudo apt-get install gksu leafpadPress Enter. f. Now copy/paste this line into the terminal (it's one line): gksudo leafpad /usr/share/X11/xorg.conf.d/20-intel.confPress Enter. Copy/paste the following text block into that empty text file:
Note that there's a small, but essential difference between one line in the text block above and the outcome of lspci: the final 0 of the BusID isn't preceded by a "." but by a ":".Save the modified text file and close it. g. Reboot your computer: you should be able to change the display brightness now, with the usual Fn keys. If not, continue with item 6.3 in the right column of this page. (continued in the column on the right) | This website is being sponsored by Google Ads. Are you using an ad blocker? Then you're also blocking my earnings from advertisements.... If you wish to support my website, you can configure your ad blocker to make an exception for this website. Or you can make a donation (and get free goodies). Thanks in advance.... Another easy method to fix the brightness: add a Grub parameter6.3. It might be sufficient to add a parameter to Grub.a. First make sure that you have installed the applications gksu and leafpad: Launch a terminal window. (You can launch a terminal window like this: *Click*) Type (or copy/paste): sudo apt-get install gksu leafpadPress Enter and submit your password. Please note that the password will remain invisible, not even asterisks will show, which is normal. b. Then type in the terminal (use copy/paste): gksudo leafpad /etc/default/grubIn the text file that opens then, find the line: GRUB_CMDLINE_LINUX=""Replace it with this line: GRUB_CMDLINE_LINUX="acpi_osi=Linux"Save the file and close it. c. Now in the terminal: sudo update-grubPress Enter. Type your password when required; this will remain entirely invisible, not even dots will show, this is normal. Press Enter again. d. Reboot your computer. The Fn brightness keys should work now. If not, replace the line: GRUB_CMDLINE_LINUX="acpi_osi=Linux"by this line: GRUB_CMDLINE_LINUX="acpi_backlight=vendor"Then run sudo update-grub again and reboot.When still no avail, continue with item 6.4 below. The moderately difficult method to fix the brightness: xbacklight6.4. By means of xbacklight you might achieve the desired result.a. First, you install xbacklight: Launch a terminal window. (You can launch a terminal window like this: *Click*) Type (use copy/paste): sudo apt-get install xbacklightPress Enter. When prompted, type your password. Your password will remain entirely invisible, not even dots will show, this is normal. Press Enter again. b. Then create a new startup application: Query in the menu search box: startup. Click on Startup Applications. Click Add Give the new addition the name Brightness and the command: xbacklight -set 70Click Add. Note: this only takes effect after logging into your user account. If the login window is too dark as well, you might configure your Linux to login automatically. c. Reboot your computer. The screen brightness should be OK after logging in. Note: other brightness values than 70 might suit you better; you can experiment with that. If this doesn't work, try item 6.5 below: The more difficult method to fix the brightness: setpci6.5. If all else fails, you might try setpci:a. Launch a terminal window. (You can launch a terminal window like this: *Click*) Type (use copy/paste): lspci | grep -i vgaPress Enter. The output will show the exact type of your video card, and (what's more important right now) the BusID. That's the number with which the output line begins. The BusID has five digits. Use your digit combination in the terminal command mentioned below (use copy/paste to avoid errors). I'll explain it by means of the following example: b. When the BusID is 00:02.0, the command to dim an overly bright display is: sudo setpci -s 00:02.0 F4.B=50And for this same BusID the command to increase the brightness on a darkish display is: sudo setpci -s 00:02.0 F4.B=90Adapt this command according to your BusID. Press Enter. Type your password when prompted; this remains entirely invisible, not even dots will show, this is normal. Press Enter again. If all has gone well, this should set the brightness at a better level (in the example: either at 50 or at 90). Experiment with other values in the range of 1 - 100, and pick the one you like best. 100 is maximum. c. You can make this setting permanent, so that it'll survive a reboot. Like this: - First make sure that you have installed the applications gksu and leafpad: Launch a terminal window. (You can launch a terminal window like this: *Click*) Type in the terminal (use copy/paste): sudo apt-get install gksu leafpadPress Enter and submit your password. Please note that the password will remain invisible, not even asterisks will show, which is normal. - Then type in the terminal (use copy/paste): gksudo leafpad /etc/rc.localPress Enter. Now Leafpad opens with a text file. Add the following line (use copy/paste to avoid errors), just above the existing line exit 0: setpci -s 00:02.0 F4.B=50 (adapt this line to your BusID and desired brightness level) It will become like this then (example): #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. setpci -s 00:02.0 F4.B=50 exit 0 Save and close the modified file. d. Reboot your computer. The brightness should be alright now. If not, continue with item 6.6. Last resort: use xrandr for adjusting the brightness6.6. You can also tune the display brightness with xrandr. That's being done on the software level and not on the hardware level, so it's not the most elegant solution. But sometimes it's the only means left.First determine the video port to which your display is connected. Launch a terminal window. (You can launch a terminal window like this: *Click*) Copy/paste the following command line into the terminal: xrandr | grep -w connected | cut -f1 -d" "Press Enter. On my laptop that generates the following output: eDP1 That's the video port on my laptop, that's connected to the display. You can now set the brightness from 0.1 to 1.0. On my laptop this creates a pleasant brightness: xrandr --output eDP1 --brightness 0.8Screen tearing: solution for Intel video chipset7. When you have an Intel video chipset, you might experience screen tearing. Even after turning off all visual effects (see item 2, left column on this page).In that case, this tweak might help: Launch a terminal window. (You can launch a terminal window like this: *Click*) Type in the terminal (use copy/paste): sudo apt-get install gksu leafpadPress Enter and submit your password. Please note that your password will remain entirely invisible, not even asterisks will show, which is normal. - Then type in the terminal (use copy/paste, it's one line): gksudo leafpad /usr/share/X11/xorg.conf.d/20-intel.confPress Enter. Now Leafpad opens with an empty text file. Add the following text (use copy/paste to avoid errors):
Save the modified text file and close it.Reboot your computer. Tearing should now have disappeared. Want more tips?8. Do you want more tips and tweaks for Ubuntu or Linux Mint? There's a lot more of them on this website!To the content of this website applies a Creative Commons license. |





