zoukankan      html  css  js  c++  java
  • 轻量级桌面fluxbox fvwm fvwm-crystal

     轻量级桌面
    fluxbox fvwm fvwm-crystal

    OS:centos6.5

    ###############
    桌面图标idesk
    ###############
    待续


    ###############
    Fluxbox
    ###############
    http://fluxbox.org/

    以fluxbox-1.3.5为例:

    安装编译必需的库文件
    yum install libX11-devel libXinerama-devel  mingw32-iconv imlib2

    tar -xvf fluxbox-1.3.5.tar.lzma -C /usr/local/src
    cd /usr/local/src/fluxbox-1.3.5
    ./configure --enable-xinerama --enable-imlib2 --enable-nls
    make && make install

    注:imlib2需要网络yum安装,本地ISO镜像源没有
    --enable-xinerama
    --enable-imlib2
    --enable-nls   
    都是为了fluxbox右键菜单有图标,作为增强功能
    轻量级桌面fluxbox <wbr>fvwm <wbr>fvwm-crystal





    ###############
    Fvwm
    ###############
    http://www.fvwm.org

    以fvwm-2.6.5为例

    安装编译必需的库文件
    yum install  libXrender-devel libXpm-devel libXft-devel libXinerama-devel libXcursor-devel  librsvg2-devel libSM-devel readline-devel libXaw-devel


    tar -xvf fvwm-2.6.5.tar.bz2 -C /usr/local/src
    cd /usr/local/src/fvwm-2.6.5
    ./configure
    make && make install

    以下是configure后的结果,有3项库没有,但不影响编译安装。

    With Asian bi-direct. text support? no: pkgconfig fribidi:  fribidi version >= 0.19.2 needed.
      With Gettext Native Lang support?   yes (libc)
      With GTK+ required for FvwmGtk?     no: Failed to detect GTK, see config.log
      With Iconv support?                 yes (from C library)
      With Mouse strokes (gestures)?      no: Can't find working libstroke
      With PNG image support?             yes
      With ReadLine sup. in FvwmConsole?  yes
      With RPlay support in FvwmEvent?    no: Can't find working librplay
      With Shaped window support?         yes
      With Shared memory for XImage?      yes
      With Session Management support?    yes
      With SVG image support?             yes
      With Xcursor support?               yes
      With Xinerama multi-head support?   yes
      With Xft anti-alias font support?   yes (version 2)
      With XPM image support?             yes
      With Xrender image support?         yes
      Build man pages?                    yes
      Build HTML documentation?           no


    轻量级桌面fluxbox <wbr>fvwm <wbr>fvwm-crystal


    有兴趣地朋友可以往下继续,以下本人往下走的一些问题
    ########
    libstroke
    ########
    http://sourceforge.net/projects/witme/files/libstroke/
    libferris-1.5.13.tar.bz2
    tar -xvf libferris-1.5.13.tar.bz2 -C /usr/local/src/
    cd /usr/local/src/libferris-1.5.13
    ./configure

    提示依赖xerces-c

    checking for XERCESC... no

    explicit version (3.0.0) of xerces-c required.

    configure: error: Fatal Error: no correct xerces-c found.


    好的,安装好了xerces-c
    yum install xerces-c-devel

    checking for XALAN... no
    not building Xalan-C support...
    checking for fsh... no
    checking for FAMOpen in -lfam... no

    fam 2.6.4+ is needed by ferris

    Its best to get fam from your Linux distribution mirror

    -- /usr/lib/fam --
    ls: cannot access /usr/lib/libfam*: No such file or directory

    -- /usr/local/lib/fam --
    ls: cannot access /usr/local/lib/libfam*: No such file or directory



    又提示依赖libfam,于是找到最新的fam
    http://oss.sgi.com/projects/fam/download.html

    fam-latest.tar.gz(fam-2.7.0  2014-08)

    待续... ...






    ###############
    Fvwm-crystal
    ###############
    http://fvwm-crystal.sourceforge.net/

    以fvwm-crystal-3.0.6为例:

    tar -xvf fvwm-crystal-3.0.6.tar.gz -C /usr/local/src
    cd /usr/local/src/fvwm-crystal-3.0.6
    make && make install

    轻量级桌面fluxbox <wbr>fvwm <wbr>fvwm-crystal

  • 相关阅读:
    学习笔记(二)Eclipse设置 Servlet配置及初始化参数读取 及Servlet应用
    html实例
    如何使用JDBC调用存储在数据库中的函数或存储过程 */
    如何使用 JDBC 调用存储在数据库中的函数或存储过程
    c3p0数据库连接池使用--创建JDBCTools 公共类
    创建DBCP数据源
    使用Batch批量添加数据
    sqlserver事务隔离级别
    事务处理
    得到数据库自动生成的主键值
  • 原文地址:https://www.cnblogs.com/lixuebin/p/10814534.html
Copyright © 2011-2022 走看看