1. 程式人生 > >CentOS 6.9 安裝IPtux區域網聊天工具

CentOS 6.9 安裝IPtux區域網聊天工具

從官網下載最新版0.6.3

https://github.com/iptux/iptux

1. 安裝gcc

yum install gcc

2.安裝gcc++

yum install gcc-c++

3.安裝gtk2-devel

yum install gtk2-devel

4. 安裝GConf2-devel

yum install GConf2-devel

5. 進入 iptux-0.6.3

6. 執行./configure

7. make

8. make install

9. 執行iptux

10.傳送訊息ok,但是傳送檔案對方不能接收。

需要開啟2425埠,或者關閉防火牆

//關閉防火牆 service firewall stop

//新增防火牆, root

iptables -I INPUT -p tcp --dport 2425 -j ACCEPT

iptables -I INPUT -p udp --dport 2425 -j ACCEPT

service iptables save