Solutions to black screen when installing Ubuntu (3 types)

Solutions to black screen when installing Ubuntu (3 types)

My computer graphics card is Nvidia graphics card.

After restarting, the screen displays "Input not supported". This is because Ubuntu does not support the graphics card. You need to manually add the graphics card option: nomodeset to support Nvidia series graphics cards.

Method 1

When entering the installation, move the cursor to "install ubuntu", press "e" to enter the edit mode, enter the command line mode, find "quite splash" and remove the "--", add "nomodeset" (add different graphics driver options according to different graphics cards, we use Nvidia graphics card, add nomodeset) F10 installation

Method 2

When the installation is complete, a black screen appears when the system is started

Hold down shift when booting, and when the grub screen appears, press 'e' to enter the mode of editing boot commands (or just press "e" when booting). Also find 'quitesplash' and add "nomodeset" after it, and press 'F10' to boot the system.

Method 3

Press shift when booting, select "recovery model", and open the terminal after entering the system

sudo vi /etc/default/grub

Press 'ℹ' to enter vim's editing mode

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
#Change to:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset" 

Press "esc", enter ":wq! " (with a colon), save and exit, and update grub

sudo update-grub

Before restarting, we found that the computer screen resolution was not optimal (if the resolution is normal, then no need)

Click on the upper right corner "System Settings -> Software and Updates -> Additional Drivers" and select Nvidia driver

Restart your computer.

Ubuntu 16.04 installation is complete.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Install Nvidia driver in Ubuntu 18 to solve black screen and adjust resolution problem

<<:  Summary of the use of three for loop statements in JavaScript (for, for...in, for...of)

>>:  Analysis of MySQL multi-table joint query operation examples

Recommend

Reasons and solutions for the failure of React event throttling effect

Table of contents The problem here is: Solution 1...

How to build Nginx image server with Docker

Preface In general development, images are upload...

How to install Android x86 in vmware virtual machine

Sometimes you just want to test an app but don’t ...

MySQL 8.0.23 free installation version configuration detailed tutorial

The first step is to download the free installati...

Detailed explanation of JavaScript's garbage collection mechanism

Table of contents Why do we need garbage collecti...

How to implement two-way binding function in vue.js with pure JS

Table of contents First, let's talk about the...

Problems installing TensorRT in docker container

Uninstall the installed version on Ubuntu: sudo a...

Explanation on whether to choose paging or loading in interactive design

The author of this article @子木yoyo posted it on hi...

Tomcat parses XML and creates objects through reflection

The following example code introduces the princip...

WeChat Mini Program video barrage position random

This article shares the specific code for randomi...

Detailed explanation of how to efficiently import multiple .sql files into MySQL

MySQL has multiple ways to import multiple .sql f...

MYSQL database GTID realizes master-slave replication (super convenient)

1. Add Maria source vi /etc/yum.repos.d/MariaDB.r...

Vue implements multi-grid input box on mobile terminal

Recently, the company has put forward a requireme...

Method for realizing Internet interconnection by VMware virtual machine bridging

After installing VMware and creating a new virtua...