博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux安装xwindow图形界面
阅读量:6174 次
发布时间:2019-06-21

本文共 1247 字,大约阅读时间需要 4 分钟。

在我们安装Linux系统时,刚开始的时候可能没有安装图形界面的需要,但在使用过程中却有可能产生这种需求。那么这种情况下,我们需不需要重新安装Linux系统来安装桌面呢?答案是不需要。下面我将交大家在已有的Linux系统的基础上安装genom桌面。

  1. 检查Linux系统是否能够联网。

    可用 ping www.baidu.com 试试 

  2. 在root用户下,执行yum安装

    执行命令

    yum -y groupinstall Desktop 

     

  3.  

    等上面的命令执行完后,再执行这条命令

    yum -y groupinstall "X Window System"

     
  4.  

    1. 然后执行"startx"命令,正常情况下,可以启动图形界面。

    2.  

      但也有可能出现"Failed to connect to the session manager: IO error occured opening connectio"这样的错误,这时,需要升级字体库,执行这条命令

      yum install libXfont-1.4.5-* 

       
    3.  root用户下

      字体库升级完成之后,在此执行“startx”命令。这时,可能会出现"Failed to connect to the session manager: IO error occured opening connectio"这种错误,表示libx11太旧,需要更新,执行这条命令

      yum install libX11

       

       
    4.  

      然后再执行startx命令,就可以启动图形界面了。如图。

       

    5.  

      添加中文支持,

      yum -y groupinstall chinese-support 

      在启动图形界面时可以选择支持中文。

       

       

      补充:

      安 centos添加第三方源:

        1、安装epel和remi的repository:

      [ ~]#yum localinstall --nogpgcheck http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm

      [ ~]#yum localinstall --nogpgcheck http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

      2、安装rpmfusion的repository:

      下面两个rpm包都要安装

      [ ~]#yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/el/updates/6/i386/rpmfusion-free-release-6-1.noarch.rpm
      [ ~]#yum localinstall --nogpgcheck http://download1.rpmfusion.org/nonfree/el/updates/6/i386/rpmfusion-nonfree-release-6-1.noarch.rpm

       

       

转载地址:http://rjqba.baihongyu.com/

你可能感兴趣的文章
Android JNI入门第三篇——jni头文件分析
查看>>
ubuntu server 10.4下NFS服务的配置
查看>>
nginx+php-FastCGI+mysql性能测试
查看>>
Openstack架构及基本概念理解
查看>>
默认路由
查看>>
CYQ.Data 轻量数据层之路 框架开源系列 索引
查看>>
zabbix(2)使用自带模板完成基本监控
查看>>
安装rrdtool出现的错误
查看>>
木马隐藏地点全搜查
查看>>
Subversion版本控制
查看>>
奇怪的打印纸盘故障
查看>>
hyperledger v1.0.5 区块链运维入门(一)
查看>>
Mybatis-mapper-xml-基础
查看>>
5. GC 调优(基础篇) - GC参考手册
查看>>
Windows 7 XP 模式颜色质量只有16位的解决
查看>>
SonicWall如何安全模式升级防火墙
查看>>
Linux IPC实践(3) --具名FIFO
查看>>
从Atlas到Microsoft ASP.NET AJAX(6) - Networking, Application Services
查看>>
成长之路---写好一个类
查看>>
读取 java.nio.ByteBuffer 中的字符串(String) 写入方式flash.utils.ByteArray.writeUTF
查看>>