Archived

This forum has been archived. Please start a new discussion on GitHub.

ubuntu debian packege: Setting up ICE_HOME and ICEJ_HOME

Does anyone know where the ICE libraries are installed if you use sudo apt-get install *** for the ICE packages? (It seems lots of people manually install by compiling the source code, but I somewhat install the package from ubuntu repository)
I've problem to set those environment variables...
Thanks in advance.

Comments

  • xdm
    xdm La Coruña, Spain
    Hi Liang,

    i think that in ubuntu Ice libraries are in /usr/lib but i'm not sure because this is not an official supported platform.

    in anyway in debian based system you could use
    dpkg-query -L <package-name>
    
    to get the list of files installed by a package.

    or you could simple use find command to locate where is libIce.so
    find / -iname libIce.so
    

    Hope this help
    José