linux下飞信安装详细过程

简介:
作者:宗国锋     转载请注明出处:宗国锋官方网站 http://www.zongguofeng.cn
安装过程
首先是下载包  包名是fetion20091117-linux.tar.gz
http://bbs.it-adv.net/viewthread.php?tid=916&extra=page%3D1 包下载地址
本机环境安装到独立的目录
[root@linuxzgf ~]# mkdir /feixin
上传到这个目录中
cd /feixin
[root@linuxzgf feixin]# tar -zxvf fetion20091117-linux.tar.gz
[root@linuxzgf feixin]# cd fx
[root@linuxzgf feixin]# ./fetion
./fetion: error while loading shared libraries: libACE-5.7.2.so: cannot open shared object file: No such file or directory
[root@linuxzgf fx]# cp libACE-5.7.2.so /lib/
[root@linuxzgf fx]# ./fetion
./fetion: error while loading shared libraries: libACE_SSL-5.7.2.so: cannot open shared object file: No such file or directory
[root@linuxzgf fx]# cp libACE_SSL-5.7.2.so /lib
[root@linuxzgf fx]# ./fetion
./fetion: error while loading shared libraries: libssl.so.4: cannot open shared object file: No such file or directory
[root@linuxzgf fx]# cp libssl.so.4 /lib
[root@linuxzgf fx]# ./fetion
./fetion: error while loading shared libraries: libcrypto.so.4: cannot open shared object file: No such file or directory
[root@linuxzgf fx]# cp libcrypto.so.4 /lib/
上面的意思也就是lib里面缺少这几个文件直接拷贝即可,我只是把出错过程也拷贝过来了,具体的要是你没有找到这几个文件也可以联系我发给你,qq88218025(不一定在线比较忙)  msn/邮件  zongguofeng68@163.com  
出现下面的界面表示飞信安装成功了已经可以运行了
[root@linuxzgf fx]# ./fetion
 ************************ IMPORTANT STATEMENT ************************
 **                                                                 **
 **   PLEASE DON’T USE THIS SOFTWARE TO SEND JUNK SHORT MESSAGES.   **
 **   OTHERWISE PLEASE BEAR YOUR OWN CONSEQUENCES.                  **
 **                                                                 **
 **                                Version:[20091117002-linux]      **
 *********************************************************************
 This program is the console version of China Fetion!
 It’s free for personal user.
 This project website:  http://www.it-adv.net/
 AUTHOR:KelvinH MSN/EMAIL:shichangguo@msn.com
 Usage:
    –mobile=[mobile]
    –sid=[sid]
    –pwd=[pwd]
    –config=[config file] *format:index mobile password
    –index=[index no in config file,refer to sample.conf]
    –debug  *debug mode on
    –hide  *login fetion in hidden state
    –to=[mobile/sid]
    –add=[uri]
    –command-path=[command file path]
    –robotmode
    –daemon(linux only)
    –proxy-ip(http proxy ip)
    –proxy-port(http proxy port)
    –msg-gb=[gb2312/gbk message]
    –msg-utf8=[utf8 message]
    –msg-type=[0/1/2/3 sms longsms smartmsg mms]
    –file-gb=[gb2312/gbk file]
    –file-utf8=[utf8 file]
    –query-cmcc-no
    –testaccount
    –auto-retry
    –get-web-session
    –action=getpiccode –mobile=13910000000 –pwd=[pwd] (–piccode-url=[url])
    –action=appsubscribe –mobile=[mobile] –pwd=[pwd] –pic-certificate-id=[certid] –pic-cert-code=[certcode] –apply-sub-service-url=[url]
    –action=subscribe –mobile=[mobile] –pwd=[pwd] –sms-code=[smscode] –subscribe-url=[url]
    –action=updatepwd –mobile=[mobile] –pwd=[pwd] –sms-code=[smscode] –update-pwd-url=[url]
[root@linuxzgf fx]# ./fetion -h
 ************************ IMPORTANT STATEMENT ************************
 **                                                                 **
 **   PLEASE DON’T USE THIS SOFTWARE TO SEND JUNK SHORT MESSAGES.   **
 **   OTHERWISE PLEASE BEAR YOUR OWN CONSEQUENCES.                  **
 **                                                                 **
 **                                Version:[20091117002-linux]      **
 *********************************************************************
 This program is the console version of China Fetion!
 It’s free for personal user.
 This project website:  http://www.it-adv.net/
 AUTHOR:KelvinH MSN/EMAIL:shichangguo@msn.com
 Usage:
    –mobile=[mobile]
    –sid=[sid]
    –pwd=[pwd]
    –config=[config file] *format:index mobile password
    –index=[index no in config file,refer to sample.conf]
    –debug  *debug mode on
    –hide  *login fetion in hidden state
    –to=[mobile/sid]
    –add=[uri]
    –command-path=[command file path]
    –robotmode
    –daemon(linux only)
    –proxy-ip(http proxy ip)
    –proxy-port(http proxy port)
    –msg-gb=[gb2312/gbk message]
    –msg-utf8=[utf8 message]
    –msg-type=[0/1/2/3 sms longsms smartmsg mms]
    –file-gb=[gb2312/gbk file]
    –file-utf8=[utf8 file]
    –query-cmcc-no
    –testaccount
    –auto-retry
    –get-web-session
    –action=getpiccode –mobile=13910000000 –pwd=[pwd] (–piccode-url=[url])
    –action=appsubscribe –mobile=[mobile] –pwd=[pwd] –pic-certificate-id=[certid] –pic-cert-code=[certcode] –apply-sub-service-url=[url]
    –action=subscribe –mobile=[mobile] –pwd=[pwd] –sms-code=[smscode] –subscribe-url=[url]
    –action=updatepwd –mobile=[mobile] –pwd=[pwd] –sms-code=[smscode] –update-pwd-url=[url]
[root@linuxzgf fx]#
此时即可用下面的命令发送信息了,达到的效果和飞信一样 ,158的用户也就你本人给159的好友发送消息成功
[root@linuxzgf feixin]# ./fetion –mobile=158******** –pwd=password –to=159******** –msg-utf8=Hello ZongGuoFeng!
除此之外你还可以直接发送txt文件内的内容给你的好友发送方法见下
[root@linuxzgf feixin]# vi /tmp/zongguofeng.cn.txt
内容随便写   Hello ZongGuoFeng! 保存后 直接发送即可
[root@linuxzgf feixin]# ./fetion –mobile=158******** –pwd=password –to=159********  –file-utf8=/tmp/zongguofeng.cn.txt
发送后好友即可收到你发的信息
还有很多功能没来的及研究

本文转自holy2009 51CTO博客,原文链接:http://blog.51cto.com/holy2010/307825

相关文章
|
8天前
|
缓存 Linux 测试技术
安装【银河麒麟V10】linux系统--并挂载镜像
安装【银河麒麟V10】linux系统--并挂载镜像
58 0
|
8天前
|
Linux C语言
linux yum安装ffmpeg 图文详解
linux yum安装ffmpeg 图文详解
27 0
|
9天前
|
NoSQL Linux Redis
linux 下和win下安装redis 并添加开机自启 图文详解
linux 下和win下安装redis 并添加开机自启 图文详解
15 0
|
9天前
|
Linux
linux yum 安装rar和unrar
linux yum 安装rar和unrar
34 0
|
20天前
|
Java Linux Maven
Linux中安装MAVEN环境配置
Linux中安装MAVEN环境配置
47 3
|
21天前
|
存储 负载均衡 索引
linux7安装elasticsearch-7.4.0集群配置
linux7安装elasticsearch-7.4.0集群配置
109 0
|
26天前
|
Linux 数据安全/隐私保护 虚拟化
Linux技术基础(1)——操作系统的安装
本文是龙蜥操作系统(Anolis OS) 8.4 的安装指南,用户可以从[龙蜥社区下载页面](https://openanolis.cn/download)获取ISO镜像。安装方法包括物理机的光驱和USB闪存方式,以及虚拟机中的VMware Workstation Pro设置。安装过程涉及选择语言、配置安装目标、选择软件集合和内核,设置Root密码及创建新用户。安装完成后,可通过文本模式或图形化界面验证系统版本,如Anolis OS 8.4,标志着安装成功。
|
29天前
|
边缘计算 Kubernetes Devops
KubeSphere平台安装系列之二【Linux单节点部署KubeSphere】(2/3)
KubeSphere平台安装系列之二【Linux单节点部署KubeSphere】(2/3)
35 3
|
21天前
|
消息中间件 Java Linux
Linux下RabbitMQ安装与使用
Linux下RabbitMQ安装与使用
32 1
|
29天前
|
边缘计算 Kubernetes Linux
KubeSphere平台安装系列之三【Linux多节点部署KubeSphere】(3/3)
KubeSphere平台安装系列之三【Linux多节点部署KubeSphere】(3/3)
26 1