linux下如何启动ice服务器,Linux下ICE的安装[通俗易懂]

linux下如何启动ice服务器,Linux下ICE的安装[通俗易懂]ICE在Linux下的完整编译安装安装平台要求:最好用gcc4.x版编译ICE,在Slackware下发现gcc3.3.6和gcc3.4.6都无法编译通过为了方便管理,将ICE相关的软件都安装到/usr/local/ICE-3.3.0/目录下首先安装第三方包:ThirdParty-Sources-3.3.0.tar.gz解压ThirdParty-Sources-3.3.0.tar.gz#c…

大家好,又见面了,我是你们的朋友全栈君。

ICE在Linux下的完整编译安装

安装平台要求:最好用gcc 4.x版编译ICE,在Slackware下发现gcc3.3.6和gcc3.4.6都无法编译通过

为了方便管理,将ICE相关的软件都安装到/usr/local/ICE-3.3.0/目录下

首先 安装第三方包:ThirdParty-Sources-3.3.0.tar.gz

解压 ThirdParty-Sources-3.3.0.tar.gz

# cd ThirdParty-Sources-3.3.0

1)mcpp  is a C/C++ preprocessor

——

解压 mcpp-2.7.2.tar.gz

# cd mcpp-2.7.2

# ./configure –prefix=/usr/local/ICE-3.3.0/mcpp-2.7.2/ CFLAGS=-fPIC -enable-mcpplib -disable-shared

# make

# make install

2)Berkeley DB  是一个高性能的,嵌入数据库编程库,和C语言, C++, Java, Perl, Python, Tcl以及其他很多语言都有绑定。

——–

解压 db-4.6.21.NC.tar.gz

# cd db-4.6.21.NC

# cd build_unix

# ../dist/configure –prefix=/usr/local/ICE-3.3.0/BerkeleyDB.4.6/ -enable-cxx

# make

# make install

3)bzip2 是 Julian Seward 开发并按照自由软件/开源软件协议发布的数据压缩算法及程序

——–

解压 bzip2-1.0.5.tar.gz

# cd bzip2-1.0.5

修改Makefile,将PREFIX指向/usr/local/ICE-3.3.0/bzip2-1.0.5

# make

# make install

4) expat 是一个 XML parsing C library

——–

解压 expat-2.0.1.tar.gz

# cd expat-2.0.1

# ./configure –prefix=/usr/local/ICE-3.3.0/expat-2.0.1/

# make

# make install

5) openssl 是 Secure Socket Layer (SSL) binary and related cryptographic tools

——–

解压 openssl-0.9.8g.tar.gz

# cd openssl-0.9.8g

# ./config –prefix=/usr/local/ICE-3.3.0/openssl

# make

# make install

现在正式安装 Ice-3.3.0.tar.gz

——–

解压 Ice-3.3.0.tar.gz

1) 编译 cpp版本:

# cd Ice-3.3.0/cpp

# vi config/Make.rules

…## Select an installation base directory. The directory will be created# if it does not exist.## prefix ?= /opt/Ice-$(VERSION)prefix ?= /usr/local/ICE-3.3.0/Ice-$(VERSION)## The “root directory” for runpath embedded in executables. Can be unset# to avoid adding a runpath to Ice executables.## embedded_runpath_prefix ?= /opt/Ice-$(VERSION_MAJOR).$(VERSION_MINOR)embedded_runpath_prefix ?= /usr/local/ICE-3.3.0/Ice-$(VERSION_MAJOR).$(VERSION_MINOR)

…##

# If libbzip2 is not installed in a standard location where the

# compiler can find it, set BZIP2_HOME to the bzip2 installation

# directory.

#

BZIP2_HOME             ?=/usr/local/ICE-3.3.0/bzip2-1.0.5

# If Berkeley DB is not installed in a standard location where the# compiler can find it, set DB_HOME to the Berkeley DB installation# directory.##DB_HOME ?= /opt/dbDB_HOME ?= /usr/local/ICE-3.3.0/BerkeleyDB.4.6## If expat is not installed in a standard location where the compiler# can find it, set EXPAT_HOME to the expat installation directory.##EXPAT_HOME ?= /opt/expatEXPAT_HOME ?= /usr/local/ICE-3.3.0/expat-2.0.1## If OpenSSL is not installed in a standard location where the# compiler can find it, set OPENSSL_HOME to the OpenSSL installation# directory.##OPENSSL_HOME ?= /opt/opensslOPENSSL_HOME ?= /usr/local/ICE-3.3.0/openssl## If Mcpp is not installed in a standard location where the compiler# can find it, set MCPP_HOME to the Mcpp installation directory.##MCPP_HOME ?= /opt/mcppMCPP_HOME ?= /usr/local/ICE-3.3.0/mcpp-2.7.2

特别注意: cpp/config/Make.rules的相关第三方库的路径

# make

# make install

2)编译python  版本

# cd Ice-3.3.0/py

# vi config/Make.rules

修改方法参考cpp部分描述

# make

# make install

设置ICE环境变量

#vi /etc/profile

export PYTHONPATH=/usr/local/ICE-3.3.0/Ice-3.3/python/:

export ICE_HOME=/usr/local/ICE-3.3.0/Ice-3.3

export PATH=$PATH:$ICE_HOME/bin

export LD_LIBRARY_PATH=$ICE_HOME/lib

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC ICE_HOME

#source /etc/profile

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/139706.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • int是什么_uint16范围是多少

    int是什么_uint16范围是多少收到反馈:9位条码更改为12位后,条形码无法自动+1原因:条码的数值超过当前定义的变量的范围调整:将int类型的变量定义为Int64,调整后测试值可自动+1附:Int16值类型表示-32768~+32767之间的整数。Int32值类型表示-2,147,483,648~+2,147,483,647之间的整数。Int64值类型表示-9,223,…

  • ul li设置横排,并除去li前的圆点建议收藏

    效果预览:http://hovertree.com/texiao/css/如何用CSS制作横向菜单让ulli横向排列及圆点处理我们先建立一个无序列表,来建立菜单的结构。代码是:首页网站地图Hove

    2021年12月21日
  • sqlyog错误号码2058_将设备连接至你的电脑时出错

    sqlyog错误号码2058_将设备连接至你的电脑时出错远在天边,近在眼前。

  • Spring Boot 日志管理

    Spring Boot 日志管理在代码有问题的时候,很多人应该都是通过debug的方式去排查,往往忽略了日志的重要性。好的日志管理可以快速定位问题出现的位置,也可以提高代码的阅读性。这篇博文主要介绍一下SpringBoot中关于日志方面的知识。一、Logging介绍SpringBoot为JavaUtilLogging,Log4J2和Logback提供了默认配置。每个日志框架,都默认配置了控…

  • 诗词与歌赋

    诗词与歌赋诗词歌赋

  • 状态模式state_解释器模式

    状态模式state_解释器模式状态模式 State动机模式定义实例结构要点总结笔记动机在软件构建过程中,某些对象的状态如果改变,其行为也会随之而发生变化,比如文档处于只读状态,其支持的行为和读写状态支持的行为就可能不同.如何在运行时根据对象的状态来透明地更改对象的行为?而不会为对象操作和状态转换之间引入紧耦合模式定义允许一个对象在其内部状态改变时改变它的行为.从而使对象看起来似乎修改了其行为.从而使对象看起来似乎修改了其行为.从而使对象看起来似乎修改了其行为.实例朴素根据状态来执行下一步enum NetworkStat

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号