0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ubuntuがログインできない問題

Last updated at Posted at 2020-12-18

##ログイン画面が繰り返される
*僕がいつも直している方法のメモです。

cudaのdriverエラーが起きている可能性が高い。
この時はログイン画面から

#####1.コンソールに入る

ctrl+alt+f4

#####2.古いドライバーの削除

sudo apt-get --purge remove nvidia-*
sudo apt-get --purge remove cuda-*

#####3.ドライバーの実行
自分のPCにあったドライバーをnvidiaの公式サイトからダウンロードする。
不具合がまた出る可能性があるのでダウンロードしたドライバーは保存しておいたほうがよい。
nvidia公式サイト

ダウンロードした実行ファイルを実行

./Nvidia-Linux-x86-64-(番号).run

#####4.これでエラーが出る場合
GUIを停止させるため

sudo service lightdm stop

これを実行してから、もう一度ダウンロードした実行ファイルを実行する。

####それでもできない場合

sudo /usr/bin/nvidia-uninstall

これで完全にuninstallされる

####それでもできない場合2

sudo lsof -n -w /dev/nvidia*

kill -9 [PID]
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?