iptux可以在windows、linux、mac、 安卓跨平台局域网内聊天与共享文件手机端安装飞鸽传书,电脑centos7安装IPTUX一看到这个软件我就非常喜欢,每天用云盘和网页QQ传文件发消息挺麻烦的。于是开始安装喽,手机上面倒是分分钟整好了,电脑上就有点小麻烦,记录了一下安装过程:
iptux的项目主页
git clone git://github.com/iptux-src/iptux.git
cd iptux
./configure
make
sudo make install
这是安装命令,在configure这步就会报错了,因为依赖没有解决,需要安装GConf
configure: error: Package requirements (gconf-2.0 >= 2.4.0) were not met:
No package 'gconf-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
gconf下载(ftp://ftp.gnome.org/pub/GNOME/sources/GConf/),我下载了3.2.6的版本
tar xvf GConf-3.2.6.tar.xz
cd GConf-3.2.6
./configure
make
sudo make install
也会在configure报错,继续解决依赖,这个可以直接用yum解决了:
configure: error: Package requirements ( dbus-1 >= 1.0.0 dbus-glib-1 >= 0.74) were not met:
No package 'dbus-glib-1' found
configure: error: Package requirements ( ORBit-2.0 >= 2.4.0) were not met:
No package 'ORBit-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables DEPENDENT_ORBIT_CFLAGS
and DEPENDENT_ORBIT_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
sudo yum install ORBit2-2.14.19-13.el7.x86_64 ORBit2-devel-2.14.19-13.el7.x86_64 dbus-glib-devel dbus
根据提示,缺什么就装什么
接下来都可以直接安装成功了,特意把错误贴了出来,方便检索。