The server shows that the graphics card is not loaded, the graphics card driver is not installed and other problem records

First, the general approach to the problem is given:

  1. sudo ubuntu-drivers autoinstall
    If there is no error reported in the previous step, it is basically correct. If there is a lack of dependencies, use the next step
  2. sudo apt-get install <first missing dependency name>
  3. In general, after the previous step is completed, that is, after the first dependency is fixed, the subsequent dependencies will also be fixed.
    After fixing dependencies and sudo ubuntu-drivers autoinstall again, it should be fine in most cases
  4. Finally don't forget to ***restart*** the server

The commonly used unified process mentioned above is a small driver problem, so it is very fast, but if the following conditions exist, it will take a long time.

But in the first step, it is often not so smooth. I encountered a lack of a dependency lib32gcc1, so I used the second step to solve it. After running the second step, an error was reported again that the gcc dependency was missing. Input: sudo apt- get install gcc -6 g++ -6, done. At this point, we will go back to solve the problem of lib32gcc1, and execute the first step after everything is solved. Confused: The server is fine, but suddenly there is no driver... It takes a long time to install the full version of the driver here.

The above is the personal experience of driver inspection and installation, for reference only.

In addition, there are many problems with the server this time. In addition to the dependency problem, there are also database problems, F60F4B3D7FA2AF80 authentication key problems, and download source problems. Google or Baidu search can find the answers to these problems, so I will not summarize them one by one. .

Guess you like

Origin blog.csdn.net/qq_43166192/article/details/112686346