注意:
图形化桌面可能会显著降低服务器的性能,如果安装不当,可能会导致操作系统无法正常启动。在安装之前,建议先对创建手工快照备份,以备发生异常时能回滚恢复。
centos 7安装图形化界面:
以安装 MATE 桌面环境为例。
1、远程ssh到 cvm
2、执行yum groups install "MATE Desktop"
安装 MATE Desktop。
3、执行 systemctl set-default graphical.target
设置默认通过桌面环境启动实例。
4、执行reboot
重启 CVM实例。
5、可以通过 CVM页面管理控制台 以vnc 连接实例,测试验证安装情况。
Ubuntu 16 实例安装图形化桌面
以安装 GNOME 桌面环境为例。
通过 CVM 管理控制台 登录实例,运行如下命令安装桌面环境软件包。
apt-get install x-window-system-core
apt-get install gnome-core
apt-get install gdm
运行 startx 启动图形化桌面。
常见问题:
CentOS 安装图形化桌面后无法使用键盘和鼠标
现象:桌面环境安装好后,通过 CVM 管理控制台 管理终端 连接实例,发现无法使用鼠标和键盘。
分析:该问题可能是由于键盘和鼠标驱动异常所致
解决:尝试将驱动修改为 evdev。
执行 yum install xorg-x11-drv-evdev
安装 evdev
执行 Xorg -configure
创建 /etc/X11/xorg.conf 配置文件。
执行cp xorg.conf.new /etc/X11/xorg.conf
复制 X11 配置文件。
修改配置文件 /etc/X11/xorg.conf 的鼠标和键盘驱动为 evdev,如下图所示:
Section "InputDevice"
Identifier "Keyboard0"
Driver "evdev" #修改为 evdv
Option "Device" "/dev/input/event3"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "evdev" #修改为 evdv
Option "Device" "/dev/input/event5"
Option "Mode" "Absolute"
EndSection
Comparison
重启实例,测试验证鼠标和键盘使用情况。
CentOS 系统默认关闭 messagebus 无法使用 Gnome
现象:按照正常流程为 CentOS 实例安装 Gnome 桌面环境后,发现无法重启登录系统。输入账户,密码后,系统提示如下:
"You are currently trying to run as the root super user. The super user is a specialized account that is not designed to run a normal user session. Various programs will not function properly, and actions performed under this account can cause unrecoverable damage to the operating system."
分析:可能是桌面环境的 messgebus 和 haldaemon 服务没有自动启动所致。为了提高系统性能和稳定性,默认情况下,云服务器CVM Linux 官方公共镜像未自动启动 messgebus 和 haldaemon 服务。
解决:可以尝试如下方式解决问题:
通过历史快照 回滚 系统。
重新安装桌面环境。
运行以下命令,修改 messgebus 和 haldaemon 服务为自启动。
chkconfig --level 35 haldaemon on
chkconfig --level 35 messagebus on
注意:
建议将启动级别修改为 Level 3,然后通过 startx 命令启动桌面环境,测试桌面环境的可用性。当出现问题时,还可以切换到终端模式进行问题排查和处理。最后,在确保桌面环境启动无误后,再将启动级别修改为 Level 5。