2021-05-12 14:32:11
CentOS 7卡在開機介面進不去登入介面
2020-06-16 17:12:31
CentOS7 系統預設的Python版本是2.7.5,在安裝Anaconda python 2.7.11的時候,不小心把之前的Python刪除了,然後系統桌面進不去了,只能通過遠端登入進系統。最後發現根本原因還是核心版本從3.0更新到3.1導致的。
檢視CentOS7版本資訊:
[root@biostacs ~]# lsb_release -a
LSB Version: :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarch
Distributor ID: CentOS
Description: CentOS Linux release 7.1.1503 (Core)
Release: 7.1.1503
Codename: Core
刪除Anaconda Python
直接刪除 /root/Anaconda2資料夾
找到CentOS7版本對應的軟體源
http://mirror.centos.org/centos-7/7/os/x86_64/Packages/
刪除環境變數
在 /etc/profile、~/.bashrc裡刪除
重新安裝Python
執行下面命令:
rpm -Uvh --replacepkgs http://mirror.centos.org/centos-7/7/os/x86_64/Packages/python-2.7.5-34.el7.x86_64.rpm
重新安裝GNOME桌面
yum groupremove "X Window System" "GNOME Desktop Environment" -y
yum groupinstall "X Window System" "GNOME Desktop Environment" -y
yum update
yum uodate
等待更新完成
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-06/144946.htm
相關文章