看到有云友需要在CentOS系统里进行图形化(如鼠标)操作,所以写此帖。
环境:ECS实例,1核心,2GB内存,CentOS 7 系统。
过程:
1. yum 更新
- yum update
2. 安装X Window套件
- yum groupinstall “X Window System”
3. 安装简单的桌面环境,如 gnome-classic-session 等
- yum install gnome-classic-session gnome-terminal nautilus-open-terminal control-center liberation-mono-fonts
4. 更改系统启动配置,默认启用桌面环境
- unlink /etc/systemd/system/default.target
- ln -sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
5. 重启系统,测试
- reboot
参考:
1. https://www.centos.org/forums/viewtopic.php?t=47088
2. https://help.aliyun.com/knowledge_detail/41227.html