zoukankan      html  css  js  c++  java
  • Linux安装xwindow图形界面(转载)

    http://jingyan.baidu.com/article/7f766daf42ce984100e1d045.html

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

     

    2.执行命令

    yum -y groupinstall Desktop

    clip_image002

     

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

    yum -y groupinstall "X Window System"

    clip_image004

     

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

     

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

    yum install libXfont-1.4.5-*

    clip_image006

    clip_image008

     

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

    yum install libX11

    clip_image010

     

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

    clip_image012

     

    8.添加中文支持,

    yum -y groupinstall chinese-support 

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

    clip_image014

    clip_image016

  • 相关阅读:
    LintCode A+B问题
    LintCode 斐波纳契数列
    LintCode 删除链表中的元素
    LintCode 整数排序
    c++ lower_bound upper_bound
    259. 3Sum Smaller
    86. Partition List
    209. Minimum Size Subarray Sum
    11. Container With Most Water
    360. Sort Transformed Array
  • 原文地址:https://www.cnblogs.com/gispathfinder/p/6158132.html
Copyright © 2011-2022 走看看