centos6 最小化系统:安装图形桌面

2021-09-03  本文已影响0人  AydanLinux

Gnome

yum -y groupinstall "X Window System"; \
yum -y groupinstall "Desktop Platform"; \
yum -y groupinstall "Desktop"; \
yum -y groupinstall "input methods"; \
yum -y groupinstall "Chinese Support"

init 6
startx    # 直接启动图形桌面鼠标键盘用不了,重启就可以了

KDE

yum -y groupinstall "X Window System"; \
yum -y groupinstall "KDE Desktop"; \
yum -y groupinstall "Desktop"; \
yum -y groupinstall "input methods"; \
yum -y groupinstall "Chinese Support"

init 6
startx

Optional

yum -y groupinstall "Graphical Administration Tools"; \
yum -y groupinstall "Internet Browser"; \
yum -y groupinstall "General Purpose Desktop"; \
yum -y groupinstall "Office Suite and Productivity"; \
yum -y groupinstall "Graphics Creation Tools"

gpm

yum install gpm; \
service gpm start; \
chkconfig gpm on

[root@el60 ~]# yum info gpm
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
Available Packages
Name        : gpm
Arch        : x86_64
Version     : 1.20.6
Release     : 12.el6
Size        : 178 k
Repo        : development
Summary     : A mouse server for the Linux console
URL         : http://www.nico.schottelius.org/software/gpm/
License     : GPLv2+
Description : Gpm provides mouse support to text-based Linux applications like the
            : Emacs editor and the Midnight Commander file management system.  Gpm
            : also provides console cut-and-paste operations using the mouse and
            : includes a program to allow pop-up menus to appear at the click of a
            : mouse button.

上一篇下一篇

猜你喜欢

热点阅读