环境:
OS: ubuntu14.04LTS 64位
iNode: iNode2.40-R0162 for linux(iNode只有32位的,而且是很久以前的版本)
安装方法:
第一种:
主要参考:
http://www.lxway.com/491008804.htm
http://www.guokr.com/blog/749085/
检查本机是64位还是32位:
dpkg --print-architecture
然后可以看到amd64,证明当前系统是64位的。然后再输入
dpkg --print-foreign-architectures
看到的是i386证明你已经打开了32位支持。如果没有显示i386的话,请输入
sudo dpkg --add-architecture i386
打开i386的支持,然后输入
sudo apt-get update
进行更新,然后输入
sudo apt-get dist-upgrade
对支持库进行更新。
这样我们就成功地装上了32位支持库了。
然后直接运行如下命令安装iNode
sudo ./install.sh
会报错:
Starting AuthenMngService: OK
sudo: unable to execute /home/yanyige/iNode/iNode/AuthenMngService: No such file or directory
root@ubuntu:/home/yanyige/iNode/iNode# sudo: unable to execute /home/yanyige/iNode/iNode/iNodeMon: No such file or directory
报错原因是,iNode是32位的,64位系统需要安装兼容包之后才能正常运行,不然虽然在目录下明明看到有那个文件还是提示找不到。
安装兼容包:
sudo apt-get install libncurses5:i386 libgtk2.-:i386 libpangoxft-1.0-:i386 libpangox-1.0-:i386 libxxf86vm1:i386 libsm6:i386 libjpeg62:i386
然后,大功告成:输入
sudo ./iNodeClient
即可登录
第二种:安装32位库:ia32-libs, 但是现在的源里已经把它删了,所以要从旧源里安装,具体安装方法参考:http://jukezhang.com/2014/12/02/install-configure-ubuntu/
第三种:换成Ubuntu32 位系统,32位系统装iNode完全没压力,把依赖包装好,直接就能用了。
对于Ubuntu16.04,今天安装了一下,发现按上边步骤出现了问题。报错的内容大概是:
./iNodeClient: error while loading shared libraries: libtiff.so.: cannot open shared object file: No such file or directory
出错的主要原因是,缺少libtiff.so.3 ,可能是Ubunt16.04 里边使用了高版本的libtiff.so.5。 只要把libtiff.so.3放到/usr/lib 文件夹里就行了。
mv <your_dir>/libtiff.so.3 /usr/lib
<your_dir>是你存放libttiff.so.3的路径。
libtiff.so.3 下载地址:http://download.csdn.net/detail/great_cy_ang/9590569
也可以从其他低版本的系统拷一份来用。