Xubuntu 19.10 - マウスポインターが表示された黒い画面

Xubuntu 19.10 - マウスポインターが表示された黒い画面

Dell Optiplex 755 上の Xubuntu 19.10 - 完璧に動作します。

唯一の問題は、PC をしばらく放置すると、マウス ポインターが表示される黒い画面だけが表示されることです。それ以外の場合は、画面には何も表示されません。

Ctrl + Alt + F1 を押してターミナル経由でログインし、再起動すると、すべてが正常に再開されます。

何か案が?

答え1

MSI VR600Xでも同じ状況です。

私にとっては役に立ちます:https://www.stephenwagner.com/2019/05/05/ubuntu-linux-black-screen-frozen-system-after-upgrade-install/

一時的な修正

システムを起動するには:

After turning on your PC, hold the right SHIFT key to get to the GRUB bootloader.
Once GRUB is open, press the “e” key to edit the first highlighted entry “Ubuntu”.
Move your cursor down to the line that starts with “linux”, and use the right arrow key to find the section with the words “ro quiet splash”.
Add “nomodeset” after these words.

nomodeset

Feel free to remove “quiet” and “splash” for more verbosity to troubleshoot the boot process.
Press “CTRL + X” or “F10” to boot.
The system should now boot.

恒久的な修正

問題を永久に解決するには:

Once the system has booted using the temporary fix, log in.
Open a terminal window (Applications -> Terminal, or press the “Start” button and type terminal).
Either “su” in to root, or use “sudo” to open your favorite text editor and edit the file “/etc/default/grub” (I use nano which can be install by running “dnf install nano”):

nano /etc/default/grub

Locate the line with the variable “GRUB_CMDLINE_LINUX_DEFAULT”, and add “nomodeset” to the variables. Feel free to remove “splash” and “quiet” if you’d like text boot. Here’s an example of my line after editing (yours will look different):

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset"

Save the file and exit the text editor (CTRL+X to quit, the press “y” and enter to save).
At the bash prompt, execute the following command to regenerate the grub.conf file on the /boot partition from your new default file:

update-grub

Restart your system, it should now boot!

注意: システム ファイルを変更する前に、必ずシステム全体のバックアップを取ってください。

関連情報