美文网首页
centos6 最小化系统:安装图形桌面

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

作者: AydanLinux | 来源:发表于2021-09-03 18:58 被阅读0次

    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.
    
    

    相关文章

      网友评论

          本文标题:centos6 最小化系统:安装图形桌面

          本文链接:https://www.haomeiwen.com/subject/ysiivltx.html